acpi_cpu(4) update. It's now possible to use higher (lower power usage) C
[dragonfly.git] / sys / dev / acpica5 / acpi_cpu.c
1 /*-
2  * Copyright (c) 2003-2005 Nate Lawson (SDG)
3  * Copyright (c) 2001 Michael Smith
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  * $FreeBSD: src/sys/dev/acpica/acpi_cpu.c,v 1.72 2008/04/12 12:06:00 rpaulo Exp $
28  * $DragonFly: src/sys/dev/acpica5/acpi_cpu.c,v 1.21 2008/09/05 10:28:35 hasso Exp $
29  */
30
31 #include "opt_acpi.h"
32 #include <sys/param.h>
33 #include <sys/bus.h>
34 #include <sys/kernel.h>
35 #include <sys/malloc.h>
36 #include <sys/globaldata.h>
37 #include <sys/power.h>
38 #include <sys/proc.h>
39 #include <sys/sbuf.h>
40 #include <sys/thread2.h>
41
42 #include <bus/pci/pcivar.h>
43 #include <machine/atomic.h>
44 #include <machine/globaldata.h>
45 #include <machine/md_var.h>
46 #include <machine/smp.h>
47 #include <sys/rman.h>
48
49 #include "acpi.h"
50 #include "acpivar.h"
51
52 /*
53  * Support for ACPI Processor devices, including C[1-3] sleep states.
54  */
55
56 /* Hooks for the ACPI CA debugging infrastructure */
57 #define _COMPONENT      ACPI_PROCESSOR
58 ACPI_MODULE_NAME("PROCESSOR")
59
60 struct acpi_cx {
61     struct resource     *p_lvlx;        /* Register to read to enter state. */
62     uint32_t             type;          /* C1-3 (C4 and up treated as C3). */
63     uint32_t             trans_lat;     /* Transition latency (usec). */
64     uint32_t             power;         /* Power consumed (mW). */
65     int                  res_type;      /* Resource type for p_lvlx. */
66 };
67 #define MAX_CX_STATES    8
68
69 struct acpi_cpu_softc {
70     device_t             cpu_dev;
71     ACPI_HANDLE          cpu_handle;
72     struct mdglobaldata *md;
73     uint32_t             cpu_acpi_id;   /* ACPI processor id */
74     uint32_t             cpu_p_blk;     /* ACPI P_BLK location */
75     uint32_t             cpu_p_blk_len; /* P_BLK length (must be 6). */
76     struct acpi_cx       cpu_cx_states[MAX_CX_STATES];
77     int                  cpu_cx_count;  /* Number of valid Cx states. */
78     int                  cpu_prev_sleep;/* Last idle sleep duration. */
79     int                  cpu_features;  /* Child driver supported features. */
80     /* Runtime state. */
81     int                  cpu_non_c3;    /* Index of lowest non-C3 state. */
82     int                  cpu_short_slp; /* Count of < 1us sleeps. */
83     u_int                cpu_cx_stats[MAX_CX_STATES];/* Cx usage history. */
84     /* Values for sysctl. */
85     struct sysctl_ctx_list cpu_sysctl_ctx;
86     struct sysctl_oid   *cpu_sysctl_tree;
87     int                  cpu_cx_lowest;
88     char                 cpu_cx_supported[64];
89     int                  cpu_rid;
90 };
91
92 struct acpi_cpu_device {
93     struct resource_list        ad_rl;
94 };
95
96 #define CPU_GET_REG(reg, width)                                         \
97     (bus_space_read_ ## width(rman_get_bustag((reg)),                   \
98                       rman_get_bushandle((reg)), 0))
99 #define CPU_SET_REG(reg, width, val)                                    \
100     (bus_space_write_ ## width(rman_get_bustag((reg)),                  \
101                        rman_get_bushandle((reg)), 0, (val)))
102
103 #define PM_USEC(x)       ((x) >> 2)     /* ~4 clocks per usec (3.57955 Mhz) */
104
105 #define ACPI_NOTIFY_CX_STATES   0x81    /* _CST changed. */
106
107 #define CPU_QUIRK_NO_C3         (1<<0)  /* C3-type states are not usable. */
108 #define CPU_QUIRK_NO_BM_CTRL    (1<<2)  /* No bus mastering control. */
109
110 #define PCI_VENDOR_INTEL        0x8086
111 #define PCI_DEVICE_82371AB_3    0x7113  /* PIIX4 chipset for quirks. */
112 #define PCI_REVISION_A_STEP     0
113 #define PCI_REVISION_B_STEP     1
114 #define PCI_REVISION_4E         2
115 #define PCI_REVISION_4M         3
116 #define PIIX4_DEVACTB_REG       0x58
117 #define PIIX4_BRLD_EN_IRQ0      (1<<0)
118 #define PIIX4_BRLD_EN_IRQ       (1<<1)
119 #define PIIX4_BRLD_EN_IRQ8      (1<<5)
120 #define PIIX4_STOP_BREAK_MASK   (PIIX4_BRLD_EN_IRQ0 | PIIX4_BRLD_EN_IRQ | PIIX4_BRLD_EN_IRQ8)
121 #define PIIX4_PCNTRL_BST_EN     (1<<10)
122
123 /* Platform hardware resource information. */
124 static uint32_t          cpu_smi_cmd;   /* Value to write to SMI_CMD. */
125 static uint8_t           cpu_cst_cnt;   /* Indicate we are _CST aware. */
126 static int               cpu_quirks;    /* Indicate any hardware bugs. */
127
128 /* Runtime state. */
129 static int               cpu_disable_idle; /* Disable entry to idle function */
130 static int               cpu_cx_count;  /* Number of valid Cx states */
131
132 /* Values for sysctl. */
133 static struct sysctl_ctx_list cpu_sysctl_ctx;
134 static struct sysctl_oid *cpu_sysctl_tree;
135 static int               cpu_cx_generic;
136 static int               cpu_cx_lowest;
137
138 static device_t         *cpu_devices;
139 static int               cpu_ndevices;
140 static struct acpi_cpu_softc **cpu_softc;
141
142 static int      acpi_cpu_probe(device_t dev);
143 static int      acpi_cpu_attach(device_t dev);
144 static int      acpi_cpu_suspend(device_t dev);
145 static int      acpi_cpu_resume(device_t dev);
146 static int      acpi_pcpu_get_id(uint32_t idx, uint32_t *acpi_id,
147                     uint32_t *cpu_id);
148 static struct resource_list *acpi_cpu_get_rlist(device_t dev, device_t child);
149 static device_t acpi_cpu_add_child(device_t dev, int order, const char *name,
150                     int unit);
151 static int      acpi_cpu_read_ivar(device_t dev, device_t child, int index,
152                     uintptr_t *result);
153 static int      acpi_cpu_shutdown(device_t dev);
154 static void     acpi_cpu_cx_probe(struct acpi_cpu_softc *sc);
155 static void     acpi_cpu_generic_cx_probe(struct acpi_cpu_softc *sc);
156 static int      acpi_cpu_cx_cst(struct acpi_cpu_softc *sc);
157 static void     acpi_cpu_startup(void *arg);
158 static void     acpi_cpu_startup_cx(struct acpi_cpu_softc *sc);
159 static void     acpi_cpu_cx_list(struct acpi_cpu_softc *sc);
160 static void     acpi_cpu_idle(void);
161 static void     acpi_cpu_notify(ACPI_HANDLE h, UINT32 notify, void *context);
162 static int      acpi_cpu_quirks(void);
163 static int      acpi_cpu_usage_sysctl(SYSCTL_HANDLER_ARGS);
164 static int      acpi_cpu_set_cx_lowest(struct acpi_cpu_softc *sc, int val);
165 static int      acpi_cpu_cx_lowest_sysctl(SYSCTL_HANDLER_ARGS);
166 static int      acpi_cpu_global_cx_lowest_sysctl(SYSCTL_HANDLER_ARGS);
167
168 static void     acpi_cpu_c1(void);      /* XXX */
169
170 static device_method_t acpi_cpu_methods[] = {
171     /* Device interface */
172     DEVMETHOD(device_probe,     acpi_cpu_probe),
173     DEVMETHOD(device_attach,    acpi_cpu_attach),
174     DEVMETHOD(device_detach,    bus_generic_detach),
175     DEVMETHOD(device_shutdown,  acpi_cpu_shutdown),
176     DEVMETHOD(device_suspend,   acpi_cpu_suspend),
177     DEVMETHOD(device_resume,    acpi_cpu_resume),
178
179     /* Bus interface */
180     DEVMETHOD(bus_add_child,    acpi_cpu_add_child),
181     DEVMETHOD(bus_read_ivar,    acpi_cpu_read_ivar),
182     DEVMETHOD(bus_get_resource_list, acpi_cpu_get_rlist),
183     DEVMETHOD(bus_get_resource, bus_generic_rl_get_resource),
184     DEVMETHOD(bus_set_resource, bus_generic_rl_set_resource),
185     DEVMETHOD(bus_alloc_resource, bus_generic_rl_alloc_resource),
186     DEVMETHOD(bus_release_resource, bus_generic_rl_release_resource),
187     DEVMETHOD(bus_driver_added, bus_generic_driver_added),
188     DEVMETHOD(bus_activate_resource, bus_generic_activate_resource),
189     DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource),
190     DEVMETHOD(bus_setup_intr,   bus_generic_setup_intr),
191     DEVMETHOD(bus_teardown_intr, bus_generic_teardown_intr),
192     {0, 0}
193 };
194
195 static driver_t acpi_cpu_driver = {
196     "cpu",
197     acpi_cpu_methods,
198     sizeof(struct acpi_cpu_softc),
199 };
200
201 static devclass_t acpi_cpu_devclass;
202 DRIVER_MODULE(cpu, acpi, acpi_cpu_driver, acpi_cpu_devclass, 0, 0);
203 MODULE_DEPEND(cpu, acpi, 1, 1, 1);
204
205 static int
206 acpi_cpu_probe(device_t dev)
207 {
208     int                    acpi_id, cpu_id;
209     ACPI_BUFFER            buf;
210     ACPI_HANDLE            handle;
211     ACPI_OBJECT            *obj;
212     ACPI_STATUS            status;
213
214     if (acpi_disabled("cpu") || acpi_get_type(dev) != ACPI_TYPE_PROCESSOR)
215         return (ENXIO);
216
217     handle = acpi_get_handle(dev);
218     if (cpu_softc == NULL)
219         cpu_softc = kmalloc(sizeof(struct acpi_cpu_softc *) *
220             SMP_MAXCPU, M_TEMP /* XXX */, M_INTWAIT | M_ZERO);
221
222     /* Get our Processor object. */
223     buf.Pointer = NULL;
224     buf.Length = ACPI_ALLOCATE_BUFFER;
225     status = AcpiEvaluateObject(handle, NULL, NULL, &buf);
226     if (ACPI_FAILURE(status)) {
227         device_printf(dev, "probe failed to get Processor obj - %s\n",
228                       AcpiFormatException(status));
229         return (ENXIO);
230     }
231     obj = (ACPI_OBJECT *)buf.Pointer;
232     if (obj->Type != ACPI_TYPE_PROCESSOR) {
233         device_printf(dev, "Processor object has bad type %d\n", obj->Type);
234         AcpiOsFree(obj);
235         return (ENXIO);
236     }
237
238     /*
239      * Find the processor associated with our unit.  We could use the
240      * ProcId as a key, however, some boxes do not have the same values
241      * in their Processor object as the ProcId values in the MADT.
242      */
243     acpi_id = obj->Processor.ProcId;
244     AcpiOsFree(obj);
245     if (acpi_pcpu_get_id(device_get_unit(dev), &acpi_id, &cpu_id) != 0)
246         return (ENXIO);
247
248     /*
249      * Check if we already probed this processor.  We scan the bus twice
250      * so it's possible we've already seen this one.
251      */
252     if (cpu_softc[cpu_id] != NULL)
253         return (ENXIO);
254
255     /* Mark this processor as in-use and save our derived id for attach. */
256     cpu_softc[cpu_id] = (void *)1;
257     acpi_set_magic(dev, cpu_id);
258     device_set_desc(dev, "ACPI CPU");
259
260     return (0);
261 }
262
263 static int
264 acpi_cpu_attach(device_t dev)
265 {
266     ACPI_BUFFER            buf;
267     ACPI_OBJECT            arg[4], *obj;
268     ACPI_OBJECT_LIST       arglist;
269     struct mdglobaldata   *md;
270     struct acpi_cpu_softc *sc;
271     struct acpi_softc     *acpi_sc;
272     ACPI_STATUS            status;
273     u_int                  features;
274     int                    cpu_id, drv_count, i;
275     driver_t              **drivers;
276     uint32_t               cap_set[3];
277
278     /* UUID needed by _OSC evaluation */
279     static uint8_t cpu_oscuuid[16] = { 0x16, 0xA6, 0x77, 0x40, 0x0C, 0x29,
280                                        0xBE, 0x47, 0x9E, 0xBD, 0xD8, 0x70,
281                                        0x58, 0x71, 0x39, 0x53 };
282
283     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
284
285     sc = device_get_softc(dev);
286     sc->cpu_dev = dev;
287     sc->cpu_handle = acpi_get_handle(dev);
288     cpu_id = acpi_get_magic(dev);
289     cpu_softc[cpu_id] = sc;
290     md = (struct mdglobaldata *)globaldata_find(device_get_unit(dev));
291     sc->md = md;
292     cpu_smi_cmd = AcpiGbl_FADT.SmiCommand;
293     cpu_cst_cnt = AcpiGbl_FADT.CstControl;
294
295     buf.Pointer = NULL;
296     buf.Length = ACPI_ALLOCATE_BUFFER;
297     status = AcpiEvaluateObject(sc->cpu_handle, NULL, NULL, &buf);
298     if (ACPI_FAILURE(status)) {
299         device_printf(dev, "attach failed to get Processor obj - %s\n",
300                       AcpiFormatException(status));
301         return (ENXIO);
302     }
303     obj = (ACPI_OBJECT *)buf.Pointer;
304     sc->cpu_p_blk = obj->Processor.PblkAddress;
305     sc->cpu_p_blk_len = obj->Processor.PblkLength;
306     sc->cpu_acpi_id = obj->Processor.ProcId;
307     AcpiOsFree(obj);
308     ACPI_DEBUG_PRINT((ACPI_DB_INFO, "acpi_cpu%d: P_BLK at %#x/%d\n",
309                      device_get_unit(dev), sc->cpu_p_blk, sc->cpu_p_blk_len));
310
311     /*
312      * If this is the first cpu we attach, create and initialize the generic
313      * resources that will be used by all acpi cpu devices.
314      */
315     if (device_get_unit(dev) == 0) {
316         /* Assume we won't be using generic Cx mode by default */
317         cpu_cx_generic = FALSE;
318
319         /* Install hw.acpi.cpu sysctl tree */
320         acpi_sc = acpi_device_get_parent_softc(dev);
321         sysctl_ctx_init(&cpu_sysctl_ctx);
322         cpu_sysctl_tree = SYSCTL_ADD_NODE(&cpu_sysctl_ctx,
323             SYSCTL_CHILDREN(acpi_sc->acpi_sysctl_tree), OID_AUTO, "cpu",
324             CTLFLAG_RD, 0, "node for CPU children");
325
326         /* Queue post cpu-probing task handler */
327         AcpiOsExecute(OSL_NOTIFY_HANDLER, acpi_cpu_startup, NULL);
328     }
329
330     sysctl_ctx_init(&sc->cpu_sysctl_ctx);
331     sc->cpu_sysctl_tree = SYSCTL_ADD_NODE(&sc->cpu_sysctl_ctx,
332                                       SYSCTL_STATIC_CHILDREN(_hw), OID_AUTO,
333                                       device_get_nameunit(dev), CTLFLAG_RD,
334                                       0, "");
335
336     /*
337      * Before calling any CPU methods, collect child driver feature hints
338      * and notify ACPI of them.  We support unified SMP power control
339      * so advertise this ourselves.  Note this is not the same as independent
340      * SMP control where each CPU can have different settings.
341      */
342     sc->cpu_features = ACPI_CAP_SMP_SAME | ACPI_CAP_SMP_SAME_C3;
343     if (devclass_get_drivers(acpi_cpu_devclass, &drivers, &drv_count) == 0) {
344         for (i = 0; i < drv_count; i++) {
345             if (ACPI_GET_FEATURES(drivers[i], &features) == 0)
346                 sc->cpu_features |= features;
347         }
348         kfree(drivers, M_TEMP);
349     }
350
351     /*
352      * CPU capabilities are specified as a buffer of 32-bit integers:
353      * revision, count, and one or more capabilities.  The revision of
354      * "1" is not specified anywhere but seems to match Linux.
355      */
356     if (sc->cpu_features) {
357         arglist.Pointer = arg;
358         arglist.Count = 1;
359         arg[0].Type = ACPI_TYPE_BUFFER;
360         arg[0].Buffer.Length = sizeof(cap_set);
361         arg[0].Buffer.Pointer = (uint8_t *)cap_set;
362         cap_set[0] = 1; /* revision */
363         cap_set[1] = 1; /* number of capabilities integers */
364         cap_set[2] = sc->cpu_features;
365         AcpiEvaluateObject(sc->cpu_handle, "_PDC", &arglist, NULL);
366
367         /*
368          * On some systems we need to evaluate _OSC so that the ASL
369          * loads the _PSS and/or _PDC methods at runtime.
370          *
371          * TODO: evaluate failure of _OSC.
372          */
373         arglist.Pointer = arg;
374         arglist.Count = 4;
375         arg[0].Type = ACPI_TYPE_BUFFER;
376         arg[0].Buffer.Length = sizeof(cpu_oscuuid);
377         arg[0].Buffer.Pointer = cpu_oscuuid;    /* UUID */
378         arg[1].Type = ACPI_TYPE_INTEGER;
379         arg[1].Integer.Value = 1;               /* revision */
380         arg[2].Type = ACPI_TYPE_INTEGER;
381         arg[2].Integer.Value = 1;               /* count */
382         arg[3].Type = ACPI_TYPE_BUFFER;
383         arg[3].Buffer.Length = sizeof(cap_set); /* Capabilities buffer */
384         arg[3].Buffer.Pointer = (uint8_t *)cap_set;
385         cap_set[0] = 0;
386         AcpiEvaluateObject(sc->cpu_handle, "_OSC", &arglist, NULL);
387     }
388
389     /* Probe for Cx state support. */
390     acpi_cpu_cx_probe(sc);
391
392     /* Finally,  call identify and probe/attach for child devices. */
393     bus_generic_probe(dev);
394     bus_generic_attach(dev);
395
396     return (0);
397 }
398
399 /*
400  * Disable any entry to the idle function during suspend and re-enable it
401  * during resume.
402  */
403 static int
404 acpi_cpu_suspend(device_t dev)
405 {
406     int error;
407
408     error = bus_generic_suspend(dev);
409     if (error)
410         return (error);
411     cpu_disable_idle = TRUE;
412     return (0);
413 }
414
415 static int
416 acpi_cpu_resume(device_t dev)
417 {
418
419     cpu_disable_idle = FALSE;
420     return (bus_generic_resume(dev));
421 }
422
423 /*
424  * Find the nth present CPU and return its pc_cpuid as well as set the
425  * pc_acpi_id from the most reliable source.
426  */
427 static int
428 acpi_pcpu_get_id(uint32_t idx, uint32_t *acpi_id, uint32_t *cpu_id)
429 {
430     struct mdglobaldata *md;
431     uint32_t     i;
432
433     KASSERT(acpi_id != NULL, ("Null acpi_id"));
434     KASSERT(cpu_id != NULL, ("Null cpu_id"));
435     for (i = 0; i < ncpus; i++) {
436         if ((smp_active_mask & (1 << i)) == 0)
437             continue;
438         md = (struct mdglobaldata *)globaldata_find(i);
439         KASSERT(md != NULL, ("no pcpu data for %d", i));
440         if (idx-- == 0) {
441             /*
442              * If pc_acpi_id was not initialized (e.g., a non-APIC UP box)
443              * override it with the value from the ASL.  Otherwise, if the
444              * two don't match, prefer the MADT-derived value.  Finally,
445              * return the pc_cpuid to reference this processor.
446              */
447             if (md->gd_acpi_id == 0xffffffff)
448                 md->gd_acpi_id = *acpi_id;
449             else if (md->gd_acpi_id != *acpi_id)
450                 *acpi_id = md->gd_acpi_id;
451             *cpu_id = md->mi.gd_cpuid;
452             return (0);
453         }
454     }
455
456     return (ESRCH);
457 }
458
459 static struct resource_list *
460 acpi_cpu_get_rlist(device_t dev, device_t child)
461 {
462     struct acpi_cpu_device *ad;
463
464     ad = device_get_ivars(child);
465     if (ad == NULL)
466         return (NULL);
467     return (&ad->ad_rl);
468 }
469
470 static device_t
471 acpi_cpu_add_child(device_t dev, int order, const char *name, int unit)
472 {
473     struct acpi_cpu_device *ad;
474     device_t child;
475
476     if ((ad = kmalloc(sizeof(*ad), M_TEMP, M_NOWAIT | M_ZERO)) == NULL)
477         return (NULL);
478
479     resource_list_init(&ad->ad_rl);
480     
481     child = device_add_child_ordered(dev, order, name, unit);
482     if (child != NULL)
483         device_set_ivars(child, ad);
484     else
485         kfree(ad, M_TEMP);
486     return (child);
487 }
488
489 static int
490 acpi_cpu_read_ivar(device_t dev, device_t child, int index, uintptr_t *result)
491 {
492     struct acpi_cpu_softc *sc;
493
494     sc = device_get_softc(dev);
495     switch (index) {
496     case ACPI_IVAR_HANDLE:
497         *result = (uintptr_t)sc->cpu_handle;
498         break;
499 #if 0
500     case CPU_IVAR_PCPU:
501         *result = (uintptr_t)sc->cpu_pcpu;
502         break;
503 #endif
504     default:
505         return (ENOENT);
506     }
507     return (0);
508 }
509
510 static int
511 acpi_cpu_shutdown(device_t dev)
512 {
513     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
514
515     /* Allow children to shutdown first. */
516     bus_generic_shutdown(dev);
517
518     /*
519      * Disable any entry to the idle function.  There is a small race where
520      * an idle thread have passed this check but not gone to sleep.  This
521      * is ok since device_shutdown() does not free the softc, otherwise
522      * we'd have to be sure all threads were evicted before returning.
523      */
524     cpu_disable_idle = TRUE;
525
526     return_VALUE (0);
527 }
528
529 static void
530 acpi_cpu_cx_probe(struct acpi_cpu_softc *sc)
531 {
532     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
533
534     /* Use initial sleep value of 1 sec. to start with lowest idle state. */
535     sc->cpu_prev_sleep = 1000000;
536     sc->cpu_cx_lowest = 0;
537
538     /*
539      * Check for the ACPI 2.0 _CST sleep states object. If we can't find
540      * any, we'll revert to generic FADT/P_BLK Cx control method which will
541      * be handled by acpi_cpu_startup. We need to defer to after having
542      * probed all the cpus in the system before probing for generic Cx
543      * states as we may already have found cpus with valid _CST packages
544      */
545     if (!cpu_cx_generic && acpi_cpu_cx_cst(sc) != 0) {
546         /*
547          * We were unable to find a _CST package for this cpu or there
548          * was an error parsing it. Switch back to generic mode.
549          */
550         cpu_cx_generic = TRUE;
551         if (bootverbose)
552             device_printf(sc->cpu_dev, "switching to generic Cx mode\n");
553     }
554
555     /*
556      * TODO: _CSD Package should be checked here.
557      */
558 }
559
560 static void
561 acpi_cpu_generic_cx_probe(struct acpi_cpu_softc *sc)
562 {
563     ACPI_GENERIC_ADDRESS         gas;
564     struct acpi_cx              *cx_ptr;
565
566     sc->cpu_cx_count = 0;
567     cx_ptr = sc->cpu_cx_states;
568
569     /* Use initial sleep value of 1 sec. to start with lowest idle state. */
570     sc->cpu_prev_sleep = 1000000;
571
572     /* C1 has been required since just after ACPI 1.0 */
573     cx_ptr->type = ACPI_STATE_C1;
574     cx_ptr->trans_lat = 0;
575     cx_ptr++;
576     sc->cpu_cx_count++;
577
578     /* 
579      * The spec says P_BLK must be 6 bytes long.  However, some systems
580      * use it to indicate a fractional set of features present so we
581      * take 5 as C2.  Some may also have a value of 7 to indicate
582      * another C3 but most use _CST for this (as required) and having
583      * "only" C1-C3 is not a hardship.
584      */
585     if (sc->cpu_p_blk_len < 5)
586         return; 
587
588     /* Validate and allocate resources for C2 (P_LVL2). */
589     gas.SpaceId = ACPI_ADR_SPACE_SYSTEM_IO;
590     gas.BitWidth = 8;
591     if (AcpiGbl_FADT.C2Latency <= 100) {
592         gas.Address = sc->cpu_p_blk + 4;
593         cx_ptr->p_lvlx = acpi_bus_alloc_gas(sc->cpu_dev, &sc->cpu_rid, &gas,
594                                             RF_SHAREABLE);
595         if (cx_ptr->p_lvlx != NULL) {
596             sc->cpu_rid++;
597             cx_ptr->type = ACPI_STATE_C2;
598             cx_ptr->trans_lat = AcpiGbl_FADT.C2Latency;
599             cx_ptr++;
600             sc->cpu_cx_count++;
601         }
602     }
603     if (sc->cpu_p_blk_len < 6)
604         return;
605
606     /* Validate and allocate resources for C3 (P_LVL3). */
607     if (AcpiGbl_FADT.C3Latency <= 1000 && !(cpu_quirks & CPU_QUIRK_NO_C3)) {
608         gas.Address = sc->cpu_p_blk + 5;
609         cx_ptr->p_lvlx = acpi_bus_alloc_gas(sc->cpu_dev, &sc->cpu_rid, &gas,
610                                             RF_SHAREABLE);
611         if (cx_ptr->p_lvlx != NULL) {
612             sc->cpu_rid++;
613             cx_ptr->type = ACPI_STATE_C3;
614             cx_ptr->trans_lat = AcpiGbl_FADT.C3Latency;
615             cx_ptr++;
616             sc->cpu_cx_count++;
617         }
618     }
619
620     /* Update the largest cx_count seen so far */
621     if (sc->cpu_cx_count > cpu_cx_count)
622         cpu_cx_count = sc->cpu_cx_count;
623 }
624
625 /*
626  * Parse a _CST package and set up its Cx states.  Since the _CST object
627  * can change dynamically, our notify handler may call this function
628  * to clean up and probe the new _CST package.
629  */
630 static int
631 acpi_cpu_cx_cst(struct acpi_cpu_softc *sc)
632 {
633     struct       acpi_cx *cx_ptr;
634     ACPI_STATUS  status;
635     ACPI_BUFFER  buf;
636     ACPI_OBJECT *top;
637     ACPI_OBJECT *pkg;
638     uint32_t     count;
639     int          i;
640
641     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
642
643     buf.Pointer = NULL;
644     buf.Length = ACPI_ALLOCATE_BUFFER;
645     status = AcpiEvaluateObject(sc->cpu_handle, "_CST", NULL, &buf);
646     if (ACPI_FAILURE(status))
647         return (ENXIO);
648
649     /* _CST is a package with a count and at least one Cx package. */
650     top = (ACPI_OBJECT *)buf.Pointer;
651     if (!ACPI_PKG_VALID(top, 2) || acpi_PkgInt32(top, 0, &count) != 0) {
652         device_printf(sc->cpu_dev, "invalid _CST package\n");
653         AcpiOsFree(buf.Pointer);
654         return (ENXIO);
655     }
656     if (count != top->Package.Count - 1) {
657         device_printf(sc->cpu_dev, "invalid _CST state count (%d != %d)\n",
658                count, top->Package.Count - 1);
659         count = top->Package.Count - 1;
660     }
661     if (count > MAX_CX_STATES) {
662         device_printf(sc->cpu_dev, "_CST has too many states (%d)\n", count);
663         count = MAX_CX_STATES;
664     }
665
666     /* Set up all valid states. */
667     sc->cpu_cx_count = 0;
668     cx_ptr = sc->cpu_cx_states;
669     for (i = 0; i < count; i++) {
670         pkg = &top->Package.Elements[i + 1];
671         if (!ACPI_PKG_VALID(pkg, 4) ||
672             acpi_PkgInt32(pkg, 1, &cx_ptr->type) != 0 ||
673             acpi_PkgInt32(pkg, 2, &cx_ptr->trans_lat) != 0 ||
674             acpi_PkgInt32(pkg, 3, &cx_ptr->power) != 0) {
675
676             device_printf(sc->cpu_dev, "skipping invalid Cx state package\n");
677             continue;
678         }
679
680         /* Validate the state to see if we should use it. */
681         switch (cx_ptr->type) {
682         case ACPI_STATE_C1:
683             sc->cpu_non_c3 = i;
684             cx_ptr++;
685             sc->cpu_cx_count++;
686             continue;
687         case ACPI_STATE_C2:
688             if (cx_ptr->trans_lat > 100) {
689                 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
690                                  "acpi_cpu%d: C2[%d] not available.\n",
691                                  device_get_unit(sc->cpu_dev), i));
692                 continue;
693             }
694             sc->cpu_non_c3 = i;
695             break;
696         case ACPI_STATE_C3:
697         default:
698             if (cx_ptr->trans_lat > 1000 ||
699                 (cpu_quirks & CPU_QUIRK_NO_C3) != 0) {
700
701                 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
702                                  "acpi_cpu%d: C3[%d] not available.\n",
703                                  device_get_unit(sc->cpu_dev), i));
704                 continue;
705             }
706             break;
707         }
708
709 #ifdef notyet
710         /* Free up any previous register. */
711         if (cx_ptr->p_lvlx != NULL) {
712             bus_release_resource(sc->cpu_dev, 0, 0, cx_ptr->p_lvlx);
713             cx_ptr->p_lvlx = NULL;
714         }
715 #endif
716
717         /* Allocate the control register for C2 or C3. */
718         acpi_PkgGas(sc->cpu_dev, pkg, 0, &sc->cpu_rid, &cx_ptr->p_lvlx,
719                     RF_SHAREABLE);
720         if (cx_ptr->p_lvlx) {
721             sc->cpu_rid++;
722             ACPI_DEBUG_PRINT((ACPI_DB_INFO,
723                              "acpi_cpu%d: Got C%d - %d latency\n",
724                              device_get_unit(sc->cpu_dev), cx_ptr->type,
725                              cx_ptr->trans_lat));
726             cx_ptr++;
727             sc->cpu_cx_count++;
728         }
729     }
730     AcpiOsFree(buf.Pointer);
731
732     return (0);
733 }
734
735 /*
736  * Call this *after* all CPUs have been attached.
737  */
738 static void
739 acpi_cpu_startup(void *arg)
740 {
741     struct acpi_cpu_softc *sc;
742     int i;
743
744     /* Get set of CPU devices */
745     devclass_get_devices(acpi_cpu_devclass, &cpu_devices, &cpu_ndevices);
746
747     /*
748      * Setup any quirks that might necessary now that we have probed
749      * all the CPUs
750      */
751     acpi_cpu_quirks();
752
753     cpu_cx_count = 0;
754     if (cpu_cx_generic) {
755         /*
756          * We are using generic Cx mode, probe for available Cx states
757          * for all processors.
758          */
759         for (i = 0; i < cpu_ndevices; i++) {
760             sc = device_get_softc(cpu_devices[i]);
761             acpi_cpu_generic_cx_probe(sc);
762         }
763
764         /*
765          * Find the highest Cx state common to all CPUs
766          * in the system, taking quirks into account.
767          */
768         for (i = 0; i < cpu_ndevices; i++) {
769             sc = device_get_softc(cpu_devices[i]);
770             if (sc->cpu_cx_count < cpu_cx_count)
771                 cpu_cx_count = sc->cpu_cx_count;
772         }
773     } else {
774         /*
775          * We are using _CST mode, remove C3 state if necessary.
776          * Update the largest Cx state supported in the global cpu_cx_count.
777          * It will be used in the global Cx sysctl handler.
778          * As we now know for sure that we will be using _CST mode
779          * install our notify handler.
780          */
781         for (i = 0; i < cpu_ndevices; i++) {
782             sc = device_get_softc(cpu_devices[i]);
783             if (cpu_quirks & CPU_QUIRK_NO_C3) {
784                 sc->cpu_cx_count = sc->cpu_non_c3 + 1;
785             }
786             if (sc->cpu_cx_count > cpu_cx_count)
787                 cpu_cx_count = sc->cpu_cx_count;
788             AcpiInstallNotifyHandler(sc->cpu_handle, ACPI_DEVICE_NOTIFY,
789                 acpi_cpu_notify, sc);
790         }
791     }
792
793     /* Perform Cx final initialization. */
794     for (i = 0; i < cpu_ndevices; i++) {
795         sc = device_get_softc(cpu_devices[i]);
796         acpi_cpu_startup_cx(sc);
797     }
798
799     /* Add a sysctl handler to handle global Cx lowest setting */
800     SYSCTL_ADD_PROC(&cpu_sysctl_ctx, SYSCTL_CHILDREN(cpu_sysctl_tree),
801         OID_AUTO, "cx_lowest", CTLTYPE_STRING | CTLFLAG_RW,
802         NULL, 0, acpi_cpu_global_cx_lowest_sysctl, "A",
803         "Global lowest Cx sleep state to use");
804
805     /* Take over idling from cpu_idle_default(). */
806     cpu_cx_lowest = 0;
807     cpu_disable_idle = FALSE;
808     cpu_idle_hook = acpi_cpu_idle;
809 }
810
811 static void
812 acpi_cpu_cx_list(struct acpi_cpu_softc *sc)
813 {
814     struct sbuf sb;
815     int i;
816
817     /*
818      * Set up the list of Cx states
819      */
820     sc->cpu_non_c3 = 0;
821     sbuf_new(&sb, sc->cpu_cx_supported, sizeof(sc->cpu_cx_supported),
822         SBUF_FIXEDLEN);
823     for (i = 0; i < sc->cpu_cx_count; i++) {
824         sbuf_printf(&sb, "C%d/%d ", i + 1, sc->cpu_cx_states[i].trans_lat);
825         if (sc->cpu_cx_states[i].type < ACPI_STATE_C3)
826             sc->cpu_non_c3 = i;
827     }
828     sbuf_trim(&sb);
829     sbuf_finish(&sb);
830 }       
831
832 static void
833 acpi_cpu_startup_cx(struct acpi_cpu_softc *sc)
834 {
835     acpi_cpu_cx_list(sc);
836     
837     SYSCTL_ADD_STRING(&sc->cpu_sysctl_ctx,
838                       SYSCTL_CHILDREN(sc->cpu_sysctl_tree),
839                       OID_AUTO, "cx_supported", CTLFLAG_RD,
840                       sc->cpu_cx_supported, 0,
841                       "Cx/microsecond values for supported Cx states");
842     SYSCTL_ADD_PROC(&sc->cpu_sysctl_ctx,
843                     SYSCTL_CHILDREN(sc->cpu_sysctl_tree),
844                     OID_AUTO, "cx_lowest", CTLTYPE_STRING | CTLFLAG_RW,
845                     (void *)sc, 0, acpi_cpu_cx_lowest_sysctl, "A",
846                     "lowest Cx sleep state to use");
847     SYSCTL_ADD_PROC(&sc->cpu_sysctl_ctx,
848                     SYSCTL_CHILDREN(sc->cpu_sysctl_tree),
849                     OID_AUTO, "cx_usage", CTLTYPE_STRING | CTLFLAG_RD,
850                     (void *)sc, 0, acpi_cpu_usage_sysctl, "A",
851                     "percent usage for each Cx state");
852
853 #ifdef notyet
854     /* Signal platform that we can handle _CST notification. */
855     if (!cpu_cx_generic && cpu_cst_cnt != 0) {
856         ACPI_LOCK(acpi);
857         AcpiOsWritePort(cpu_smi_cmd, cpu_cst_cnt, 8);
858         ACPI_UNLOCK(acpi);
859     }
860 #endif
861 }
862
863 /*
864  * Idle the CPU in the lowest state possible.  This function is called with
865  * interrupts disabled.  Note that once it re-enables interrupts, a task
866  * switch can occur so do not access shared data (i.e. the softc) after
867  * interrupts are re-enabled.
868  */
869 static void
870 acpi_cpu_idle()
871 {
872     struct      acpi_cpu_softc *sc;
873     struct      acpi_cx *cx_next;
874     uint32_t    start_time, end_time;
875     int         bm_active, cx_next_idx, i;
876
877     /* If disabled, return immediately. */
878     if (cpu_disable_idle) {
879         ACPI_ENABLE_IRQS();
880         return;
881     }
882
883     /*
884      * Look up our CPU id to get our softc.  If it's NULL, we'll use C1
885      * since there is no ACPI processor object for this CPU.  This occurs
886      * for logical CPUs in the HTT case.
887      */
888     sc = cpu_softc[mdcpu->mi.gd_cpuid];
889     if (sc == NULL) {
890         acpi_cpu_c1();
891         return;
892     }
893
894     /*
895      * If we slept 100 us or more, use the lowest Cx state.  Otherwise,
896      * find the lowest state that has a latency less than or equal to
897      * the length of our last sleep.
898      */
899     cx_next_idx = sc->cpu_cx_lowest;
900     if (sc->cpu_prev_sleep < 100) {
901         /*
902          * If we sleep too short all the time, this system may not implement
903          * C2/3 correctly (i.e. reads return immediately).  In this case,
904          * back off and use the next higher level.
905          * It seems that when you have a dual core cpu (like the Intel Core Duo)
906          * that both cores will get out of C3 state as soon as one of them
907          * requires it. This breaks the sleep detection logic as the sleep
908          * counter is local to each cpu. Disable the sleep logic for now as a
909          * workaround if there's more than one CPU. The right fix would probably
910          * be to add quirks for system that don't really support C3 state.
911          */
912         if (ncpus < 2 && sc->cpu_prev_sleep <= 1) {
913             sc->cpu_short_slp++;
914             if (sc->cpu_short_slp == 1000 && sc->cpu_cx_lowest != 0) {
915                 if (sc->cpu_non_c3 == sc->cpu_cx_lowest && sc->cpu_non_c3 != 0)
916                     sc->cpu_non_c3--;
917                 sc->cpu_cx_lowest--;
918                 sc->cpu_short_slp = 0;
919                 device_printf(sc->cpu_dev,
920                     "too many short sleeps, backing off to C%d\n",
921                     sc->cpu_cx_lowest + 1);
922             }
923         } else
924             sc->cpu_short_slp = 0;
925
926         for (i = sc->cpu_cx_lowest; i >= 0; i--)
927             if (sc->cpu_cx_states[i].trans_lat <= sc->cpu_prev_sleep) {
928                 cx_next_idx = i;
929                 break;
930             }
931     }
932
933     /*
934      * Check for bus master activity.  If there was activity, clear
935      * the bit and use the lowest non-C3 state.  Note that the USB
936      * driver polling for new devices keeps this bit set all the
937      * time if USB is loaded.
938      */
939     if ((cpu_quirks & CPU_QUIRK_NO_BM_CTRL) == 0) {
940         AcpiGetRegister(ACPI_BITREG_BUS_MASTER_STATUS, &bm_active);
941         if (bm_active != 0) {
942             AcpiSetRegister(ACPI_BITREG_BUS_MASTER_STATUS, 1);
943             cx_next_idx = min(cx_next_idx, sc->cpu_non_c3);
944         }
945     }
946
947     /* Select the next state and update statistics. */
948     cx_next = &sc->cpu_cx_states[cx_next_idx];
949     sc->cpu_cx_stats[cx_next_idx]++;
950     KASSERT(cx_next->type != ACPI_STATE_C0, ("acpi_cpu_idle: C0 sleep"));
951
952     /*
953      * Execute HLT (or equivalent) and wait for an interrupt.  We can't
954      * calculate the time spent in C1 since the place we wake up is an
955      * ISR.  Assume we slept one quantum and return.
956      */
957     if (cx_next->type == ACPI_STATE_C1) {
958         sc->cpu_prev_sleep = 1000000 / hz;
959         acpi_cpu_c1();
960         return;
961     }
962
963     /*
964      * For C3, disable bus master arbitration and enable bus master wake
965      * if BM control is available, otherwise flush the CPU cache.
966      */
967     if (cx_next->type == ACPI_STATE_C3) {
968         if ((cpu_quirks & CPU_QUIRK_NO_BM_CTRL) == 0) {
969             AcpiSetRegister(ACPI_BITREG_ARB_DISABLE, 1);
970             AcpiSetRegister(ACPI_BITREG_BUS_MASTER_RLD, 1);
971         } else
972             ACPI_FLUSH_CPU_CACHE();
973     }
974
975     /*
976      * Read from P_LVLx to enter C2(+), checking time spent asleep.
977      * Use the ACPI timer for measuring sleep time.  Since we need to
978      * get the time very close to the CPU start/stop clock logic, this
979      * is the only reliable time source.
980      */
981     AcpiHwLowLevelRead(32, &start_time, &AcpiGbl_FADT.XPmTimerBlock);
982     CPU_GET_REG(cx_next->p_lvlx, 1);
983
984     /*
985      * Read the end time twice.  Since it may take an arbitrary time
986      * to enter the idle state, the first read may be executed before
987      * the processor has stopped.  Doing it again provides enough
988      * margin that we are certain to have a correct value.
989      */
990     AcpiHwLowLevelRead(32, &end_time, &AcpiGbl_FADT.XPmTimerBlock);
991     AcpiHwLowLevelRead(32, &end_time, &AcpiGbl_FADT.XPmTimerBlock);
992
993     /* Enable bus master arbitration and disable bus master wakeup. */
994     if (cx_next->type == ACPI_STATE_C3 &&
995         (cpu_quirks & CPU_QUIRK_NO_BM_CTRL) == 0) {
996         AcpiSetRegister(ACPI_BITREG_ARB_DISABLE, 0);
997         AcpiSetRegister(ACPI_BITREG_BUS_MASTER_RLD, 0);
998     }
999     ACPI_ENABLE_IRQS();
1000
1001     /* Find the actual time asleep in microseconds, minus overhead. */
1002     end_time = acpi_TimerDelta(end_time, start_time);
1003     sc->cpu_prev_sleep = PM_USEC(end_time) - cx_next->trans_lat;
1004 }
1005
1006 /*
1007  * Re-evaluate the _CST object when we are notified that it changed.
1008  *
1009  * XXX Re-evaluation disabled until locking is done.
1010  */
1011 static void
1012 acpi_cpu_notify(ACPI_HANDLE h, UINT32 notify, void *context)
1013 {
1014     struct acpi_cpu_softc *sc = (struct acpi_cpu_softc *)context;
1015     struct acpi_cpu_softc *isc;
1016     int i;
1017     
1018     if (notify != ACPI_NOTIFY_CX_STATES)
1019         return;
1020
1021     /* Update the list of Cx states. */
1022     acpi_cpu_cx_cst(sc);
1023     acpi_cpu_cx_list(sc);
1024
1025     /* Update the new lowest useable Cx state for all CPUs. */
1026     crit_enter();
1027     cpu_cx_count = 0;
1028     for (i = 0; i < cpu_ndevices; i++) {
1029         isc = device_get_softc(cpu_devices[i]);
1030         if (isc->cpu_cx_count > cpu_cx_count)
1031             cpu_cx_count = isc->cpu_cx_count;
1032     }
1033     crit_exit();
1034 }
1035
1036 static int
1037 acpi_cpu_quirks(void)
1038 {
1039     device_t acpi_dev;
1040     uint32_t val;
1041
1042     ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
1043
1044     /*
1045      * Bus mastering arbitration control is needed to keep caches coherent
1046      * while sleeping in C3.  If it's not present but a working flush cache
1047      * instruction is present, flush the caches before entering C3 instead.
1048      * Otherwise, just disable C3 completely.
1049      */
1050     if (AcpiGbl_FADT.Pm2ControlBlock == 0 ||
1051         AcpiGbl_FADT.Pm2ControlLength == 0) {
1052         if ((AcpiGbl_FADT.Flags & ACPI_FADT_WBINVD) &&
1053             (AcpiGbl_FADT.Flags & ACPI_FADT_WBINVD_FLUSH) == 0) {
1054             cpu_quirks |= CPU_QUIRK_NO_BM_CTRL;
1055             ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1056                 "acpi_cpu: no BM control, using flush cache method\n"));
1057         } else {
1058             cpu_quirks |= CPU_QUIRK_NO_C3;
1059             ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1060                 "acpi_cpu: no BM control, C3 not available\n"));
1061         }
1062     }
1063
1064     /*
1065      * If we are using generic Cx mode, C3 on multiple CPUs requires using
1066      * the expensive flush cache instruction.
1067      */
1068     if (cpu_cx_generic && ncpus > 1) {
1069         cpu_quirks |= CPU_QUIRK_NO_BM_CTRL;
1070         ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1071             "acpi_cpu: SMP, using flush cache mode for C3\n"));
1072     }
1073
1074     /* Look for various quirks of the PIIX4 part. */
1075     acpi_dev = pci_find_device(PCI_VENDOR_INTEL, PCI_DEVICE_82371AB_3);
1076     if (acpi_dev != NULL) {
1077         switch (pci_get_revid(acpi_dev)) {
1078         /*
1079          * Disable C3 support for all PIIX4 chipsets.  Some of these parts
1080          * do not report the BMIDE status to the BM status register and
1081          * others have a livelock bug if Type-F DMA is enabled.  Linux
1082          * works around the BMIDE bug by reading the BM status directly
1083          * but we take the simpler approach of disabling C3 for these
1084          * parts.
1085          *
1086          * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA
1087          * Livelock") from the January 2002 PIIX4 specification update.
1088          * Applies to all PIIX4 models.
1089          *
1090          * Also, make sure that all interrupts cause a "Stop Break"
1091          * event to exit from C2 state.
1092          */
1093         case PCI_REVISION_A_STEP:
1094         case PCI_REVISION_B_STEP:
1095         case PCI_REVISION_4E:
1096         case PCI_REVISION_4M:
1097             cpu_quirks |= CPU_QUIRK_NO_C3;
1098             ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1099                 "acpi_cpu: working around PIIX4 bug, disabling C3\n"));
1100
1101             val = pci_read_config(acpi_dev, PIIX4_DEVACTB_REG, 4);
1102             if ((val & PIIX4_STOP_BREAK_MASK) != PIIX4_STOP_BREAK_MASK) {
1103                 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1104                     "PIIX4: enabling IRQs to generate Stop Break\n"));
1105                 val |= PIIX4_STOP_BREAK_MASK;
1106                 pci_write_config(acpi_dev, PIIX4_DEVACTB_REG, val, 4);
1107             }
1108             break;
1109         default:
1110             break;
1111         }
1112     }
1113
1114     return (0);
1115 }
1116
1117 static int
1118 acpi_cpu_usage_sysctl(SYSCTL_HANDLER_ARGS)
1119 {
1120     struct acpi_cpu_softc *sc;
1121     struct sbuf  sb;
1122     char         buf[128];
1123     int          i;
1124     uintmax_t    fract, sum, whole;
1125
1126     sc = (struct acpi_cpu_softc *) arg1;
1127     sum = 0;
1128     for (i = 0; i < sc->cpu_cx_count; i++)
1129         sum += sc->cpu_cx_stats[i];
1130     sbuf_new(&sb, buf, sizeof(buf), SBUF_FIXEDLEN);
1131     for (i = 0; i < sc->cpu_cx_count; i++) {
1132         if (sum > 0) {
1133             whole = (uintmax_t)sc->cpu_cx_stats[i] * 100;
1134             fract = (whole % sum) * 100;
1135             sbuf_printf(&sb, "%u.%02u%% ", (u_int)(whole / sum),
1136                 (u_int)(fract / sum));
1137         } else
1138             sbuf_printf(&sb, "0%% ");
1139     }
1140     sbuf_trim(&sb);
1141     sbuf_finish(&sb);
1142     sysctl_handle_string(oidp, sbuf_data(&sb), sbuf_len(&sb), req);
1143     sbuf_delete(&sb);
1144
1145     return (0);
1146 }
1147
1148 static int
1149 acpi_cpu_set_cx_lowest(struct acpi_cpu_softc *sc, int val)
1150 {
1151     int i;
1152
1153     sc->cpu_cx_lowest = val;
1154
1155     /* If not disabling, cache the new lowest non-C3 state. */
1156     sc->cpu_non_c3 = 0;
1157     for (i = sc->cpu_cx_lowest; i >= 0; i--) {
1158         if (sc->cpu_cx_states[i].type < ACPI_STATE_C3) {
1159             sc->cpu_non_c3 = i;
1160             break;
1161         }
1162     }
1163
1164     /* Reset the statistics counters. */
1165     bzero(sc->cpu_cx_stats, sizeof(sc->cpu_cx_stats));
1166     return (0);
1167 }
1168
1169 static int
1170 acpi_cpu_cx_lowest_sysctl(SYSCTL_HANDLER_ARGS)
1171 {
1172     struct       acpi_cpu_softc *sc;
1173     char         state[8];
1174     int          val, error;
1175
1176     sc = (struct acpi_cpu_softc *) arg1;
1177     ksnprintf(state, sizeof(state), "C%d", sc->cpu_cx_lowest + 1);
1178     error = sysctl_handle_string(oidp, state, sizeof(state), req);
1179     if (error != 0 || req->newptr == NULL)
1180         return (error);
1181     if (strlen(state) < 2 || toupper(state[0]) != 'C')
1182         return (EINVAL);
1183     val = (int) strtol(state + 1, NULL, 10) - 1;
1184     if (val < 0 || val > sc->cpu_cx_count - 1)
1185         return (EINVAL);
1186
1187     crit_enter();
1188     acpi_cpu_set_cx_lowest(sc, val);
1189     crit_exit();
1190
1191     return (0);
1192 }
1193
1194 static int
1195 acpi_cpu_global_cx_lowest_sysctl(SYSCTL_HANDLER_ARGS)
1196 {
1197     struct      acpi_cpu_softc *sc;
1198     char        state[8];
1199     int         val, error, i;
1200
1201     ksnprintf(state, sizeof(state), "C%d", cpu_cx_lowest + 1);
1202     error = sysctl_handle_string(oidp, state, sizeof(state), req);
1203     if (error != 0 || req->newptr == NULL)
1204         return (error);
1205     if (strlen(state) < 2 || toupper(state[0]) != 'C')
1206         return (EINVAL);
1207     val = (int) strtol(state + 1, NULL, 10) - 1;
1208     if (val < 0 || val > cpu_cx_count - 1)
1209         return (EINVAL);
1210     cpu_cx_lowest = val;
1211
1212     /* Update the new lowest useable Cx state for all CPUs. */
1213     crit_enter();
1214     for (i = 0; i < cpu_ndevices; i++) {
1215         sc = device_get_softc(cpu_devices[i]);
1216         acpi_cpu_set_cx_lowest(sc, val);
1217     }
1218     crit_exit();
1219
1220     return (0);
1221 }
1222
1223 /*
1224  * Put the CPU in C1 in a machine-dependant way.
1225  * XXX: shouldn't be here!
1226  */
1227 static void
1228 acpi_cpu_c1(void)
1229 {
1230 #ifdef __ia64__
1231     ia64_call_pal_static(PAL_HALT_LIGHT, 0, 0, 0);
1232 #else
1233     splz();
1234 #ifdef SMP
1235     if (!lwkt_runnable())
1236         __asm __volatile("sti; hlt");
1237     else
1238         __asm __volatile("sti; pause");
1239 #else
1240     if (!lwkt_runnable())
1241         __asm __volatile("sti; hlt");
1242     else
1243         __asm __volatile("sti");
1244 #endif
1245 #endif /* !__ia64__ */
1246 }
1247