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