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