blob: 8856eccc37fad48959e031ea4aa0581910db26ec [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;
46 pp_init.pm_en = amdgpu_dpm != 0 ? true : false;
47 pp_init.feature_mask = amdgpu_pp_feature_mask;
48 pp_init.device = amdgpu_cgs_create_device(adev);
49 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:
Rex Zhudb7da7a2016-12-23 14:07:25 +080074 adev->pp_enabled = true;
Rex Zhu1c863802016-12-28 19:43:23 +080075 if (amdgpu_create_pp_handle(adev))
76 return -EINVAL;
77 amd_pp->ip_funcs = &pp_ip_funcs;
78 amd_pp->pp_funcs = &pp_dpm_funcs;
Jordan Lazare34669042016-01-18 17:00:03 -050079 break;
80 /* These chips don't have powerplay implemenations */
Rex Zhu1c863802016-12-28 19:43:23 +080081#ifdef CONFIG_DRM_AMDGPU_SI
82 case CHIP_TAHITI:
83 case CHIP_PITCAIRN:
84 case CHIP_VERDE:
85 case CHIP_OLAND:
86 case CHIP_HAINAN:
87 amd_pp->ip_funcs = &si_dpm_ip_funcs;
88 break;
89#endif
90#ifdef CONFIG_DRM_AMDGPU_CIK
Jordan Lazare34669042016-01-18 17:00:03 -050091 case CHIP_BONAIRE:
92 case CHIP_HAWAII:
Rex Zhu1c863802016-12-28 19:43:23 +080093 amd_pp->ip_funcs = &ci_dpm_ip_funcs;
94 break;
Jordan Lazare34669042016-01-18 17:00:03 -050095 case CHIP_KABINI:
96 case CHIP_MULLINS:
97 case CHIP_KAVERI:
Rex Zhu1c863802016-12-28 19:43:23 +080098 amd_pp->ip_funcs = &kv_dpm_ip_funcs;
99 break;
100#endif
Jordan Lazare34669042016-01-18 17:00:03 -0500101 default:
Rex Zhu1c863802016-12-28 19:43:23 +0800102 ret = -EINVAL;
Jordan Lazare34669042016-01-18 17:00:03 -0500103 break;
Rex Zhu76c8cc62015-10-17 17:57:58 +0800104 }
105
Alex Deucher1f7371b2015-12-02 17:46:21 -0500106 if (adev->powerplay.ip_funcs->early_init)
107 ret = adev->powerplay.ip_funcs->early_init(
108 adev->powerplay.pp_handle);
Rex Zhu1c863802016-12-28 19:43:23 +0800109
110 if (ret == PP_DPM_DISABLED) {
111 adev->pm.dpm_enabled = false;
112 return 0;
113 }
Alex Deucher1f7371b2015-12-02 17:46:21 -0500114 return ret;
115}
116
Rex Zhu7ad4e7f2015-12-07 16:42:35 +0800117
118static int amdgpu_pp_late_init(void *handle)
119{
120 int ret = 0;
121 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
122
123 if (adev->powerplay.ip_funcs->late_init)
124 ret = adev->powerplay.ip_funcs->late_init(
125 adev->powerplay.pp_handle);
126
Rex Zhu5349ece2016-03-29 14:34:51 +0800127 if (adev->pp_enabled && adev->pm.dpm_enabled) {
Alex Deucher898b1de2015-12-08 17:28:28 -0500128 amdgpu_pm_sysfs_init(adev);
Rex Zhu4ea2efa2016-02-25 17:32:45 +0800129 amdgpu_dpm_dispatch_task(adev, AMD_PP_EVENT_COMPLETE_INIT, NULL, NULL);
130 }
Alex Deucherc64474e2016-09-28 16:37:15 -0400131
Rex Zhu7ad4e7f2015-12-07 16:42:35 +0800132 return ret;
133}
134
Alex Deucher1f7371b2015-12-02 17:46:21 -0500135static int amdgpu_pp_sw_init(void *handle)
136{
137 int ret = 0;
138 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
139
140 if (adev->powerplay.ip_funcs->sw_init)
141 ret = adev->powerplay.ip_funcs->sw_init(
142 adev->powerplay.pp_handle);
143
Alex Deucher1f7371b2015-12-02 17:46:21 -0500144 return ret;
145}
146
147static int amdgpu_pp_sw_fini(void *handle)
148{
149 int ret = 0;
150 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
151
152 if (adev->powerplay.ip_funcs->sw_fini)
153 ret = adev->powerplay.ip_funcs->sw_fini(
154 adev->powerplay.pp_handle);
155 if (ret)
156 return ret;
157
Alex Deucher1f7371b2015-12-02 17:46:21 -0500158 return ret;
159}
160
161static int amdgpu_pp_hw_init(void *handle)
162{
163 int ret = 0;
164 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
165
Jammy Zhoue61710c2015-11-10 18:31:08 -0500166 if (adev->pp_enabled && adev->firmware.smu_load)
Alex Deucher1f7371b2015-12-02 17:46:21 -0500167 amdgpu_ucode_init_bo(adev);
168
169 if (adev->powerplay.ip_funcs->hw_init)
170 ret = adev->powerplay.ip_funcs->hw_init(
171 adev->powerplay.pp_handle);
172
Rex Zhu1c863802016-12-28 19:43:23 +0800173 if (ret == PP_DPM_DISABLED) {
174 adev->pm.dpm_enabled = false;
175 return 0;
176 }
177
Trigger Huang7b1e8ca2016-11-16 10:13:45 -0500178 if ((amdgpu_dpm != 0) && !amdgpu_sriov_vf(adev))
Rex Zhuba5f8842016-10-27 15:29:57 +0800179 adev->pm.dpm_enabled = true;
180
Alex Deucher1f7371b2015-12-02 17:46:21 -0500181 return ret;
182}
183
184static int amdgpu_pp_hw_fini(void *handle)
185{
186 int ret = 0;
187 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
188
189 if (adev->powerplay.ip_funcs->hw_fini)
190 ret = adev->powerplay.ip_funcs->hw_fini(
191 adev->powerplay.pp_handle);
192
Jammy Zhoue61710c2015-11-10 18:31:08 -0500193 if (adev->pp_enabled && adev->firmware.smu_load)
Alex Deucher1f7371b2015-12-02 17:46:21 -0500194 amdgpu_ucode_fini_bo(adev);
195
196 return ret;
197}
198
Monk Liu482587e2016-05-19 14:36:01 +0800199static void amdgpu_pp_late_fini(void *handle)
200{
201 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
202
Monk Liu482587e2016-05-19 14:36:01 +0800203 if (adev->powerplay.ip_funcs->late_fini)
204 adev->powerplay.ip_funcs->late_fini(
205 adev->powerplay.pp_handle);
Rex Zhu1c863802016-12-28 19:43:23 +0800206
207 if (adev->pp_enabled && adev->pm.dpm_enabled)
208 amdgpu_pm_sysfs_fini(adev);
209
210 amd_powerplay_destroy(adev->powerplay.pp_handle);
Monk Liu482587e2016-05-19 14:36:01 +0800211}
212
Alex Deucher1f7371b2015-12-02 17:46:21 -0500213static int amdgpu_pp_suspend(void *handle)
214{
215 int ret = 0;
216 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
217
218 if (adev->powerplay.ip_funcs->suspend)
219 ret = adev->powerplay.ip_funcs->suspend(
220 adev->powerplay.pp_handle);
221 return ret;
222}
223
224static int amdgpu_pp_resume(void *handle)
225{
226 int ret = 0;
227 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
228
229 if (adev->powerplay.ip_funcs->resume)
230 ret = adev->powerplay.ip_funcs->resume(
231 adev->powerplay.pp_handle);
232 return ret;
233}
234
235static int amdgpu_pp_set_clockgating_state(void *handle,
236 enum amd_clockgating_state state)
237{
238 int ret = 0;
239 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
240
241 if (adev->powerplay.ip_funcs->set_clockgating_state)
242 ret = adev->powerplay.ip_funcs->set_clockgating_state(
243 adev->powerplay.pp_handle, state);
244 return ret;
245}
246
247static int amdgpu_pp_set_powergating_state(void *handle,
248 enum amd_powergating_state state)
249{
250 int ret = 0;
251 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
252
253 if (adev->powerplay.ip_funcs->set_powergating_state)
254 ret = adev->powerplay.ip_funcs->set_powergating_state(
255 adev->powerplay.pp_handle, state);
256 return ret;
257}
258
259
260static bool amdgpu_pp_is_idle(void *handle)
261{
262 bool ret = true;
263 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
264
265 if (adev->powerplay.ip_funcs->is_idle)
266 ret = adev->powerplay.ip_funcs->is_idle(
267 adev->powerplay.pp_handle);
268 return ret;
269}
270
271static int amdgpu_pp_wait_for_idle(void *handle)
272{
273 int ret = 0;
274 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
275
276 if (adev->powerplay.ip_funcs->wait_for_idle)
277 ret = adev->powerplay.ip_funcs->wait_for_idle(
278 adev->powerplay.pp_handle);
279 return ret;
280}
281
282static int amdgpu_pp_soft_reset(void *handle)
283{
284 int ret = 0;
285 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
286
287 if (adev->powerplay.ip_funcs->soft_reset)
288 ret = adev->powerplay.ip_funcs->soft_reset(
289 adev->powerplay.pp_handle);
290 return ret;
291}
292
Alex Deuchera1255102016-10-13 17:41:13 -0400293static const struct amd_ip_funcs amdgpu_pp_ip_funcs = {
Tom St Denis88a907d2016-05-04 14:28:35 -0400294 .name = "amdgpu_powerplay",
Alex Deucher1f7371b2015-12-02 17:46:21 -0500295 .early_init = amdgpu_pp_early_init,
Rex Zhu7ad4e7f2015-12-07 16:42:35 +0800296 .late_init = amdgpu_pp_late_init,
Alex Deucher1f7371b2015-12-02 17:46:21 -0500297 .sw_init = amdgpu_pp_sw_init,
298 .sw_fini = amdgpu_pp_sw_fini,
299 .hw_init = amdgpu_pp_hw_init,
300 .hw_fini = amdgpu_pp_hw_fini,
Monk Liu482587e2016-05-19 14:36:01 +0800301 .late_fini = amdgpu_pp_late_fini,
Alex Deucher1f7371b2015-12-02 17:46:21 -0500302 .suspend = amdgpu_pp_suspend,
303 .resume = amdgpu_pp_resume,
304 .is_idle = amdgpu_pp_is_idle,
305 .wait_for_idle = amdgpu_pp_wait_for_idle,
306 .soft_reset = amdgpu_pp_soft_reset,
Alex Deucher1f7371b2015-12-02 17:46:21 -0500307 .set_clockgating_state = amdgpu_pp_set_clockgating_state,
308 .set_powergating_state = amdgpu_pp_set_powergating_state,
309};
Alex Deuchera1255102016-10-13 17:41:13 -0400310
311const struct amdgpu_ip_block_version amdgpu_pp_ip_block =
312{
313 .type = AMD_IP_BLOCK_TYPE_SMC,
314 .major = 1,
315 .minor = 0,
316 .rev = 0,
317 .funcs = &amdgpu_pp_ip_funcs,
318};