xref: /illumos-gate/usr/src/uts/i86pc/os/cpupm/pwrnow.c (revision 581cede61ac9c14d8d4ea452562a567189eead78)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #include <sys/x86_archext.h>
27 #include <sys/machsystm.h>
28 #include <sys/x_call.h>
29 #include <sys/acpi/acpi.h>
30 #include <sys/acpica.h>
31 #include <sys/pwrnow.h>
32 #include <sys/cpu_acpi.h>
33 #include <sys/cpupm.h>
34 #include <sys/dtrace.h>
35 #include <sys/sdt.h>
36 
37 static int pwrnow_init(cpu_t *);
38 static void pwrnow_fini(cpu_t *);
39 static void pwrnow_power(cpuset_t, uint32_t);
40 
41 /*
42  * Interfaces for modules implementing AMD's PowerNow!.
43  */
44 cpupm_state_ops_t pwrnow_ops = {
45 	"PowerNow! Technology",
46 	pwrnow_init,
47 	pwrnow_fini,
48 	pwrnow_power
49 };
50 
51 /*
52  * Error returns
53  */
54 #define	PWRNOW_RET_SUCCESS		0x00
55 #define	PWRNOW_RET_NO_PM		0x01
56 #define	PWRNOW_RET_UNSUP_STATE		0x02
57 #define	PWRNOW_RET_TRANS_INCOMPLETE	0x03
58 
59 #define	PWRNOW_LATENCY_WAIT		10
60 
61 /*
62  * MSR registers for changing and reading processor power state.
63  */
64 #define	PWRNOW_PERF_CTL_MSR		0xC0010062
65 #define	PWRNOW_PERF_STATUS_MSR		0xC0010063
66 
67 #define	AMD_CPUID_PSTATE_HARDWARE	(1<<7)
68 #define	AMD_CPUID_TSC_CONSTANT		(1<<8)
69 
70 /*
71  * Debugging support
72  */
73 #ifdef	DEBUG
74 volatile int pwrnow_debug = 0;
75 #define	PWRNOW_DEBUG(arglist) if (pwrnow_debug) printf arglist;
76 #else
77 #define	PWRNOW_DEBUG(arglist)
78 #endif
79 
80 /*
81  * Write the ctrl register.
82  */
83 static void
84 write_ctrl(cpu_acpi_handle_t handle, uint32_t ctrl)
85 {
86 	cpu_acpi_pct_t *pct_ctrl;
87 	uint64_t reg;
88 
89 	pct_ctrl = CPU_ACPI_PCT_CTRL(handle);
90 
91 	switch (pct_ctrl->cr_addrspace_id) {
92 	case ACPI_ADR_SPACE_FIXED_HARDWARE:
93 		reg = ctrl;
94 		wrmsr(PWRNOW_PERF_CTL_MSR, reg);
95 		break;
96 
97 	default:
98 		DTRACE_PROBE1(pwrnow_ctrl_unsupported_type, uint8_t,
99 		    pct_ctrl->cr_addrspace_id);
100 		return;
101 	}
102 
103 	DTRACE_PROBE1(pwrnow_ctrl_write, uint32_t, ctrl);
104 }
105 
106 /*
107  * Transition the current processor to the requested state.
108  */
109 static void
110 pwrnow_pstate_transition(uint32_t req_state)
111 {
112 	cpupm_mach_state_t *mach_state =
113 	    (cpupm_mach_state_t *)CPU->cpu_m.mcpu_pm_mach_state;
114 	cpu_acpi_handle_t handle = mach_state->ms_acpi_handle;
115 	cpu_acpi_pstate_t *req_pstate;
116 	uint32_t ctrl;
117 
118 	req_pstate = (cpu_acpi_pstate_t *)CPU_ACPI_PSTATES(handle);
119 	req_pstate += req_state;
120 
121 	DTRACE_PROBE1(pwrnow_transition_freq, uint32_t,
122 	    CPU_ACPI_FREQ(req_pstate));
123 
124 	/*
125 	 * Initiate the processor p-state change.
126 	 */
127 	ctrl = CPU_ACPI_PSTATE_CTRL(req_pstate);
128 	write_ctrl(handle, ctrl);
129 
130 	mach_state->ms_pstate.cma_state.pstate = req_state;
131 	cpu_set_curr_clock((uint64_t)CPU_ACPI_FREQ(req_pstate) * 1000000);
132 }
133 
134 static void
135 pwrnow_power(cpuset_t set, uint32_t req_state)
136 {
137 	/*
138 	 * If thread is already running on target CPU then just
139 	 * make the transition request. Otherwise, we'll need to
140 	 * make a cross-call.
141 	 */
142 	kpreempt_disable();
143 	if (CPU_IN_SET(set, CPU->cpu_id)) {
144 		pwrnow_pstate_transition(req_state);
145 		CPUSET_DEL(set, CPU->cpu_id);
146 	}
147 	if (!CPUSET_ISNULL(set)) {
148 		xc_call((xc_arg_t)req_state, NULL, NULL,
149 		    CPUSET2BV(set), (xc_func_t)pwrnow_pstate_transition);
150 	}
151 	kpreempt_enable();
152 }
153 
154 /*
155  * Validate that this processor supports PowerNow! and if so,
156  * get the P-state data from ACPI and cache it.
157  */
158 static int
159 pwrnow_init(cpu_t *cp)
160 {
161 	cpupm_mach_state_t *mach_state =
162 	    (cpupm_mach_state_t *)cp->cpu_m.mcpu_pm_mach_state;
163 	cpu_acpi_handle_t handle = mach_state->ms_acpi_handle;
164 	cpu_acpi_pct_t *pct_stat;
165 
166 	PWRNOW_DEBUG(("pwrnow_init: processor %d\n", cp->cpu_id));
167 
168 	/*
169 	 * Cache the P-state specific ACPI data.
170 	 */
171 	if (cpu_acpi_cache_pstate_data(handle) != 0) {
172 		cmn_err(CE_NOTE, "!PowerNow! support is being "
173 		    "disabled due to errors parsing ACPI P-state objects "
174 		    "exported by BIOS.");
175 		pwrnow_fini(cp);
176 		return (PWRNOW_RET_NO_PM);
177 	}
178 
179 	pct_stat = CPU_ACPI_PCT_STATUS(handle);
180 	switch (pct_stat->cr_addrspace_id) {
181 	case ACPI_ADR_SPACE_FIXED_HARDWARE:
182 		PWRNOW_DEBUG(("Transitions will use fixed hardware\n"));
183 		break;
184 	default:
185 		cmn_err(CE_WARN, "!_PCT configured for unsupported "
186 		    "addrspace = %d.", pct_stat->cr_addrspace_id);
187 		cmn_err(CE_NOTE, "!CPU power management will not function.");
188 		pwrnow_fini(cp);
189 		return (PWRNOW_RET_NO_PM);
190 	}
191 
192 	cpupm_alloc_domains(cp, CPUPM_P_STATES);
193 
194 	PWRNOW_DEBUG(("Processor %d succeeded.\n", cp->cpu_id))
195 	return (PWRNOW_RET_SUCCESS);
196 }
197 
198 /*
199  * Free resources allocated by pwrnow_init().
200  */
201 static void
202 pwrnow_fini(cpu_t *cp)
203 {
204 	cpupm_mach_state_t *mach_state =
205 	    (cpupm_mach_state_t *)(cp->cpu_m.mcpu_pm_mach_state);
206 	cpu_acpi_handle_t handle = mach_state->ms_acpi_handle;
207 
208 	cpupm_free_domains(&cpupm_pstate_domains);
209 	cpu_acpi_free_pstate_data(handle);
210 }
211 
212 boolean_t
213 pwrnow_supported()
214 {
215 	struct cpuid_regs cpu_regs;
216 
217 	/* Required features */
218 	if (!(x86_feature & X86_CPUID) ||
219 	    !(x86_feature & X86_MSR)) {
220 		PWRNOW_DEBUG(("No CPUID or MSR support."));
221 		return (B_FALSE);
222 	}
223 
224 	/*
225 	 * Get the Advanced Power Management Information.
226 	 */
227 	cpu_regs.cp_eax = 0x80000007;
228 	(void) __cpuid_insn(&cpu_regs);
229 
230 	/*
231 	 * We currently only support CPU power management of
232 	 * processors that are P-state TSC invariant
233 	 */
234 	if (!(cpu_regs.cp_edx & AMD_CPUID_TSC_CONSTANT)) {
235 		PWRNOW_DEBUG(("No support for CPUs that are not P-state "
236 		    "TSC invariant.\n"));
237 		return (B_FALSE);
238 	}
239 
240 	/*
241 	 * We only support the "Fire and Forget" style of PowerNow! (i.e.,
242 	 * single MSR write to change speed).
243 	 */
244 	if (!(cpu_regs.cp_edx & AMD_CPUID_PSTATE_HARDWARE)) {
245 		PWRNOW_DEBUG(("Hardware P-State control is not supported.\n"));
246 		return (B_FALSE);
247 	}
248 	return (B_TRUE);
249 }
250