Lines Matching defs:acpi_cst_softc
67 struct acpi_cst_softc { struct
68 device_t cst_dev;
69 struct acpi_cpu_softc *cst_parent;
70 ACPI_HANDLE cst_handle;
71 int cst_cpuid;
72 uint32_t cst_flags; /* ACPI_CST_FLAG_ */
73 uint32_t cst_p_blk; /* ACPI P_BLK location */
74 uint32_t cst_p_blk_len; /* P_BLK length (must be 6). */
75 struct acpi_cst_cx cst_cx_states[MAX_CX_STATES];
76 int cst_cx_count; /* Number of valid Cx states. */
77 int cst_prev_sleep; /* Last idle sleep duration. */
79 int cst_non_c3; /* Index of lowest non-C3 state. */
80 u_long cst_cx_stats[MAX_CX_STATES];/* Cx usage history. */
82 int cst_cx_lowest; /* Current Cx lowest */
83 int cst_cx_lowest_req; /* Requested Cx lowest */
84 char cst_cx_supported[64];
124 static struct acpi_cst_softc **acpi_cst_softc; variable