blob: 2ed81cdb8320a4e5f7b5731379e62de88cac912d [file] [log] [blame]
Alex Deucher1f7371b2015-12-02 17:46:21 -05001/*
2 * Copyright 2015 Advanced Micro Devices, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: AMD
23 *
24 */
25#include "atom.h"
26#include "amdgpu.h"
27#include "amd_shared.h"
28#include <linux/module.h>
29#include <linux/moduleparam.h>
30#include "amdgpu_pm.h"
31#include <drm/amdgpu_drm.h>
32#include "amdgpu_powerplay.h"
Maruthi Srinivas Bayyavarapu19196962016-04-26 20:35:36 +053033#include "si_dpm.h"
Alex Deucher1f7371b2015-12-02 17:46:21 -050034#include "cik_dpm.h"
35#include "vi_dpm.h"
36
Rex Zhu1c863802016-12-28 19:43:23 +080037static int amdgpu_create_pp_handle(struct amdgpu_device *adev)
Alex Deucher1f7371b2015-12-02 17:46:21 -050038{
Rex Zhu1c863802016-12-28 19:43:23 +080039 struct amd_pp_init pp_init;
Alex Deucher1f7371b2015-12-02 17:46:21 -050040 struct amd_powerplay *amd_pp;
Rex Zhu1c863802016-12-28 19:43:23 +080041 int ret;
Alex Deucher1f7371b2015-12-02 17:46:21 -050042
43 amd_pp = &(adev->powerplay);
Rex Zhu1c863802016-12-28 19:43:23 +080044 pp_init.chip_family = adev->family;
45 pp_init.chip_id = adev->asic_type;
Monk Liu8fdf2692017-01-25 15:55:30 +080046 pp_init.pm_en = (amdgpu_dpm != 0 && !amdgpu_sriov_vf(adev)) ? true : false;
Rex Zhu1c863802016-12-28 19:43:23 +080047 pp_init.feature_mask = amdgpu_pp_feature_mask;
Rex Zhud04f2572017-09-25 17:34:00 +080048 pp_init.device = amd_pp->cgs_device;
Rex Zhu1c863802016-12-28 19:43:23 +080049 ret = amd_powerplay_create(&pp_init, &(amd_pp->pp_handle));
50 if (ret)
51 return -EINVAL;
52 return 0;
Alex Deucher1f7371b2015-12-02 17:46:21 -050053}
54
55static int amdgpu_pp_early_init(void *handle)
56{
57 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Rex Zhu1c863802016-12-28 19:43:23 +080058 struct amd_powerplay *amd_pp;
Alex Deucher1f7371b2015-12-02 17:46:21 -050059 int ret = 0;
60
Rex Zhu1c863802016-12-28 19:43:23 +080061 amd_pp = &(adev->powerplay);
62 adev->pp_enabled = false;
63 amd_pp->pp_handle = (void *)adev;
64
Rex Zhu76c8cc62015-10-17 17:57:58 +080065 switch (adev->asic_type) {
Flora Cui2cc0c0b2016-03-14 18:33:29 -040066 case CHIP_POLARIS11:
67 case CHIP_POLARIS10:
Junwei Zhangf4309522016-12-14 15:40:48 -050068 case CHIP_POLARIS12:
Jordan Lazare34669042016-01-18 17:00:03 -050069 case CHIP_TONGA:
70 case CHIP_FIJI:
Alex Deucher70bb2462016-07-28 13:35:42 -040071 case CHIP_TOPAZ:
Jordan Lazare34669042016-01-18 17:00:03 -050072 case CHIP_CARRIZO:
73 case CHIP_STONEY:
Eric Huangf83a9992017-03-06 14:03:02 -050074 case CHIP_VEGA10:
Hawking Zhang30db0952017-05-11 16:30:31 -040075 case CHIP_RAVEN:
Rex Zhudb7da7a2016-12-23 14:07:25 +080076 adev->pp_enabled = true;
Rex Zhud04f2572017-09-25 17:34:00 +080077 amd_pp->cgs_device = amdgpu_cgs_create_device(adev);
Rex Zhu1c863802016-12-28 19:43:23 +080078 if (amdgpu_create_pp_handle(adev))
79 return -EINVAL;
80 amd_pp->ip_funcs = &pp_ip_funcs;
81 amd_pp->pp_funcs = &pp_dpm_funcs;
Jordan Lazare34669042016-01-18 17:00:03 -050082 break;
83 /* These chips don't have powerplay implemenations */
Rex Zhu1c863802016-12-28 19:43:23 +080084#ifdef CONFIG_DRM_AMDGPU_SI
85 case CHIP_TAHITI:
86 case CHIP_PITCAIRN:
87 case CHIP_VERDE:
88 case CHIP_OLAND:
89 case CHIP_HAINAN:
90 amd_pp->ip_funcs = &si_dpm_ip_funcs;
Rex Zhucd4d7462017-09-06 18:43:52 +080091 amd_pp->pp_funcs = &si_dpm_funcs;
Rex Zhu1c863802016-12-28 19:43:23 +080092 break;
93#endif
94#ifdef CONFIG_DRM_AMDGPU_CIK
Jordan Lazare34669042016-01-18 17:00:03 -050095 case CHIP_BONAIRE:
96 case CHIP_HAWAII:
Rex Zhu780cffc52017-09-12 13:37:40 +080097 if (amdgpu_dpm == -1) {
98 amd_pp->ip_funcs = &ci_dpm_ip_funcs;
99 amd_pp->pp_funcs = &ci_dpm_funcs;
100 } else {
Rex Zhud04f2572017-09-25 17:34:00 +0800101 amd_pp->cgs_device = amdgpu_cgs_create_device(adev);
Rex Zhu780cffc52017-09-12 13:37:40 +0800102 if (amdgpu_create_pp_handle(adev))
103 return -EINVAL;
104 amd_pp->ip_funcs = &pp_ip_funcs;
105 amd_pp->pp_funcs = &pp_dpm_funcs;
106 }
Rex Zhu1c863802016-12-28 19:43:23 +0800107 break;
Jordan Lazare34669042016-01-18 17:00:03 -0500108 case CHIP_KABINI:
109 case CHIP_MULLINS:
110 case CHIP_KAVERI:
Rex Zhu1c863802016-12-28 19:43:23 +0800111 amd_pp->ip_funcs = &kv_dpm_ip_funcs;
Rex Zhucd4d7462017-09-06 18:43:52 +0800112 amd_pp->pp_funcs = &kv_dpm_funcs;
Rex Zhu1c863802016-12-28 19:43:23 +0800113 break;
114#endif
Jordan Lazare34669042016-01-18 17:00:03 -0500115 default:
Rex Zhu1c863802016-12-28 19:43:23 +0800116 ret = -EINVAL;
Jordan Lazare34669042016-01-18 17:00:03 -0500117 break;
Rex Zhu76c8cc62015-10-17 17:57:58 +0800118 }
119
Alex Deucher1f7371b2015-12-02 17:46:21 -0500120 if (adev->powerplay.ip_funcs->early_init)
121 ret = adev->powerplay.ip_funcs->early_init(
122 adev->powerplay.pp_handle);
Rex Zhu1c863802016-12-28 19:43:23 +0800123
124 if (ret == PP_DPM_DISABLED) {
125 adev->pm.dpm_enabled = false;
126 return 0;
127 }
Alex Deucher1f7371b2015-12-02 17:46:21 -0500128 return ret;
129}
130
Rex Zhu7ad4e7f2015-12-07 16:42:35 +0800131
132static int amdgpu_pp_late_init(void *handle)
133{
134 int ret = 0;
135 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
136
137 if (adev->powerplay.ip_funcs->late_init)
138 ret = adev->powerplay.ip_funcs->late_init(
139 adev->powerplay.pp_handle);
140
Rex Zhud2f52ac2017-09-22 17:47:27 +0800141 if (adev->pp_enabled && adev->pm.dpm_enabled)
Rex Zhudf1e6392017-09-01 13:46:20 +0800142 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_COMPLETE_INIT, NULL, NULL);
Alex Deucherc64474e2016-09-28 16:37:15 -0400143
Rex Zhu7ad4e7f2015-12-07 16:42:35 +0800144 return ret;
145}
146
Alex Deucher1f7371b2015-12-02 17:46:21 -0500147static int amdgpu_pp_sw_init(void *handle)
148{
149 int ret = 0;
150 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
151
152 if (adev->powerplay.ip_funcs->sw_init)
153 ret = adev->powerplay.ip_funcs->sw_init(
154 adev->powerplay.pp_handle);
155
Alex Deucher1f7371b2015-12-02 17:46:21 -0500156 return ret;
157}
158
159static int amdgpu_pp_sw_fini(void *handle)
160{
161 int ret = 0;
162 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
163
164 if (adev->powerplay.ip_funcs->sw_fini)
165 ret = adev->powerplay.ip_funcs->sw_fini(
166 adev->powerplay.pp_handle);
167 if (ret)
168 return ret;
169
Alex Deucher1f7371b2015-12-02 17:46:21 -0500170 return ret;
171}
172
173static int amdgpu_pp_hw_init(void *handle)
174{
175 int ret = 0;
176 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
177
Alex Deucher1f7371b2015-12-02 17:46:21 -0500178
179 if (adev->powerplay.ip_funcs->hw_init)
180 ret = adev->powerplay.ip_funcs->hw_init(
181 adev->powerplay.pp_handle);
182
Rex Zhu1c863802016-12-28 19:43:23 +0800183 if (ret == PP_DPM_DISABLED) {
184 adev->pm.dpm_enabled = false;
185 return 0;
186 }
187
Trigger Huang7b1e8ca2016-11-16 10:13:45 -0500188 if ((amdgpu_dpm != 0) && !amdgpu_sriov_vf(adev))
Rex Zhuba5f8842016-10-27 15:29:57 +0800189 adev->pm.dpm_enabled = true;
190
Alex Deucher1f7371b2015-12-02 17:46:21 -0500191 return ret;
192}
193
194static int amdgpu_pp_hw_fini(void *handle)
195{
196 int ret = 0;
197 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
198
199 if (adev->powerplay.ip_funcs->hw_fini)
200 ret = adev->powerplay.ip_funcs->hw_fini(
201 adev->powerplay.pp_handle);
202
Alex Deucher1f7371b2015-12-02 17:46:21 -0500203 return ret;
204}
205
Monk Liu482587e2016-05-19 14:36:01 +0800206static void amdgpu_pp_late_fini(void *handle)
207{
208 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
209
Monk Liu482587e2016-05-19 14:36:01 +0800210 if (adev->powerplay.ip_funcs->late_fini)
211 adev->powerplay.ip_funcs->late_fini(
212 adev->powerplay.pp_handle);
Rex Zhu1c863802016-12-28 19:43:23 +0800213
Rex Zhu1c863802016-12-28 19:43:23 +0800214
Rex Zhud04f2572017-09-25 17:34:00 +0800215 if (adev->pp_enabled) {
John Brooks7bc7b772017-07-03 14:05:35 -0400216 amd_powerplay_destroy(adev->powerplay.pp_handle);
Rex Zhud04f2572017-09-25 17:34:00 +0800217 amdgpu_cgs_destroy_device(adev->powerplay.cgs_device);
218 }
Monk Liu482587e2016-05-19 14:36:01 +0800219}
220
Alex Deucher1f7371b2015-12-02 17:46:21 -0500221static int amdgpu_pp_suspend(void *handle)
222{
223 int ret = 0;
224 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
225
226 if (adev->powerplay.ip_funcs->suspend)
227 ret = adev->powerplay.ip_funcs->suspend(
228 adev->powerplay.pp_handle);
229 return ret;
230}
231
232static int amdgpu_pp_resume(void *handle)
233{
234 int ret = 0;
235 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
236
237 if (adev->powerplay.ip_funcs->resume)
238 ret = adev->powerplay.ip_funcs->resume(
239 adev->powerplay.pp_handle);
240 return ret;
241}
242
243static int amdgpu_pp_set_clockgating_state(void *handle,
244 enum amd_clockgating_state state)
245{
246 int ret = 0;
247 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
248
249 if (adev->powerplay.ip_funcs->set_clockgating_state)
250 ret = adev->powerplay.ip_funcs->set_clockgating_state(
251 adev->powerplay.pp_handle, state);
252 return ret;
253}
254
255static int amdgpu_pp_set_powergating_state(void *handle,
256 enum amd_powergating_state state)
257{
258 int ret = 0;
259 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
260
261 if (adev->powerplay.ip_funcs->set_powergating_state)
262 ret = adev->powerplay.ip_funcs->set_powergating_state(
263 adev->powerplay.pp_handle, state);
264 return ret;
265}
266
267
268static bool amdgpu_pp_is_idle(void *handle)
269{
270 bool ret = true;
271 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
272
273 if (adev->powerplay.ip_funcs->is_idle)
274 ret = adev->powerplay.ip_funcs->is_idle(
275 adev->powerplay.pp_handle);
276 return ret;
277}
278
279static int amdgpu_pp_wait_for_idle(void *handle)
280{
281 int ret = 0;
282 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
283
284 if (adev->powerplay.ip_funcs->wait_for_idle)
285 ret = adev->powerplay.ip_funcs->wait_for_idle(
286 adev->powerplay.pp_handle);
287 return ret;
288}
289
290static int amdgpu_pp_soft_reset(void *handle)
291{
292 int ret = 0;
293 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
294
295 if (adev->powerplay.ip_funcs->soft_reset)
296 ret = adev->powerplay.ip_funcs->soft_reset(
297 adev->powerplay.pp_handle);
298 return ret;
299}
300
Alex Deuchera1255102016-10-13 17:41:13 -0400301static const struct amd_ip_funcs amdgpu_pp_ip_funcs = {
Tom St Denis88a907d2016-05-04 14:28:35 -0400302 .name = "amdgpu_powerplay",
Alex Deucher1f7371b2015-12-02 17:46:21 -0500303 .early_init = amdgpu_pp_early_init,
Rex Zhu7ad4e7f2015-12-07 16:42:35 +0800304 .late_init = amdgpu_pp_late_init,
Alex Deucher1f7371b2015-12-02 17:46:21 -0500305 .sw_init = amdgpu_pp_sw_init,
306 .sw_fini = amdgpu_pp_sw_fini,
307 .hw_init = amdgpu_pp_hw_init,
308 .hw_fini = amdgpu_pp_hw_fini,
Monk Liu482587e2016-05-19 14:36:01 +0800309 .late_fini = amdgpu_pp_late_fini,
Alex Deucher1f7371b2015-12-02 17:46:21 -0500310 .suspend = amdgpu_pp_suspend,
311 .resume = amdgpu_pp_resume,
312 .is_idle = amdgpu_pp_is_idle,
313 .wait_for_idle = amdgpu_pp_wait_for_idle,
314 .soft_reset = amdgpu_pp_soft_reset,
Alex Deucher1f7371b2015-12-02 17:46:21 -0500315 .set_clockgating_state = amdgpu_pp_set_clockgating_state,
316 .set_powergating_state = amdgpu_pp_set_powergating_state,
317};
Alex Deuchera1255102016-10-13 17:41:13 -0400318
319const struct amdgpu_ip_block_version amdgpu_pp_ip_block =
320{
321 .type = AMD_IP_BLOCK_TYPE_SMC,
322 .major = 1,
323 .minor = 0,
324 .rev = 0,
325 .funcs = &amdgpu_pp_ip_funcs,
326};