blob: 6b46fbfd6be48eba35fccccc0b63b44803722994 [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"
33#include "cik_dpm.h"
34#include "vi_dpm.h"
35
36static int amdgpu_powerplay_init(struct amdgpu_device *adev)
37{
38 int ret = 0;
39 struct amd_powerplay *amd_pp;
40
41 amd_pp = &(adev->powerplay);
42
Jammy Zhoue61710c2015-11-10 18:31:08 -050043 if (adev->pp_enabled) {
Alex Deucher1f7371b2015-12-02 17:46:21 -050044#ifdef CONFIG_DRM_AMD_POWERPLAY
45 struct amd_pp_init *pp_init;
46
47 pp_init = kzalloc(sizeof(struct amd_pp_init), GFP_KERNEL);
48
49 if (pp_init == NULL)
50 return -ENOMEM;
51
52 pp_init->chip_family = adev->family;
53 pp_init->chip_id = adev->asic_type;
54 pp_init->device = amdgpu_cgs_create_device(adev);
55
56 ret = amd_powerplay_init(pp_init, amd_pp);
57 kfree(pp_init);
58#endif
59 } else {
60 amd_pp->pp_handle = (void *)adev;
61
62 switch (adev->asic_type) {
63#ifdef CONFIG_DRM_AMDGPU_CIK
64 case CHIP_BONAIRE:
65 case CHIP_HAWAII:
66 amd_pp->ip_funcs = &ci_dpm_ip_funcs;
67 break;
68 case CHIP_KABINI:
69 case CHIP_MULLINS:
70 case CHIP_KAVERI:
71 amd_pp->ip_funcs = &kv_dpm_ip_funcs;
72 break;
73#endif
74 case CHIP_TOPAZ:
75 amd_pp->ip_funcs = &iceland_dpm_ip_funcs;
76 break;
77 case CHIP_TONGA:
78 amd_pp->ip_funcs = &tonga_dpm_ip_funcs;
79 break;
Eric Huang899fa4c2015-09-29 14:58:53 -040080 case CHIP_FIJI:
81 amd_pp->ip_funcs = &fiji_dpm_ip_funcs;
82 break;
Alex Deucher1f7371b2015-12-02 17:46:21 -050083 case CHIP_CARRIZO:
84 amd_pp->ip_funcs = &cz_dpm_ip_funcs;
85 break;
86 default:
87 ret = -EINVAL;
88 break;
89 }
90 }
91 return ret;
92}
93
94static int amdgpu_pp_early_init(void *handle)
95{
96 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
97 int ret = 0;
98
Rex Zhuedb611c2015-10-20 11:05:45 +080099#ifdef CONFIG_DRM_AMD_POWERPLAY
Rex Zhu76c8cc62015-10-17 17:57:58 +0800100 switch (adev->asic_type) {
101 case CHIP_TONGA:
Rex Zhuedb611c2015-10-20 11:05:45 +0800102 case CHIP_FIJI:
Jammy Zhoue61710c2015-11-10 18:31:08 -0500103 adev->pp_enabled = (amdgpu_powerplay == 0) ? false : true;
Rex Zhu76c8cc62015-10-17 17:57:58 +0800104 break;
105 default:
Jammy Zhoue61710c2015-11-10 18:31:08 -0500106 adev->pp_enabled = (amdgpu_powerplay > 0) ? true : false;
Rex Zhu76c8cc62015-10-17 17:57:58 +0800107 break;
108 }
Jammy Zhoue61710c2015-11-10 18:31:08 -0500109#else
110 adev->pp_enabled = false;
Rex Zhuedb611c2015-10-20 11:05:45 +0800111#endif
Rex Zhu76c8cc62015-10-17 17:57:58 +0800112
Alex Deucher1f7371b2015-12-02 17:46:21 -0500113 ret = amdgpu_powerplay_init(adev);
114 if (ret)
115 return ret;
116
117 if (adev->powerplay.ip_funcs->early_init)
118 ret = adev->powerplay.ip_funcs->early_init(
119 adev->powerplay.pp_handle);
120 return ret;
121}
122
123static int amdgpu_pp_sw_init(void *handle)
124{
125 int ret = 0;
126 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
127
128 if (adev->powerplay.ip_funcs->sw_init)
129 ret = adev->powerplay.ip_funcs->sw_init(
130 adev->powerplay.pp_handle);
131
132#ifdef CONFIG_DRM_AMD_POWERPLAY
Jammy Zhoue61710c2015-11-10 18:31:08 -0500133 if (adev->pp_enabled) {
Alex Deucher1f7371b2015-12-02 17:46:21 -0500134 adev->pm.dpm_enabled = true;
135 amdgpu_pm_sysfs_init(adev);
136 }
137#endif
138
139 return ret;
140}
141
142static int amdgpu_pp_sw_fini(void *handle)
143{
144 int ret = 0;
145 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
146
147 if (adev->powerplay.ip_funcs->sw_fini)
148 ret = adev->powerplay.ip_funcs->sw_fini(
149 adev->powerplay.pp_handle);
150 if (ret)
151 return ret;
152
153#ifdef CONFIG_DRM_AMD_POWERPLAY
Jammy Zhoue61710c2015-11-10 18:31:08 -0500154 if (adev->pp_enabled) {
Alex Deucher1f7371b2015-12-02 17:46:21 -0500155 amdgpu_pm_sysfs_fini(adev);
156 amd_powerplay_fini(adev->powerplay.pp_handle);
157 }
158#endif
159
160 return ret;
161}
162
163static int amdgpu_pp_hw_init(void *handle)
164{
165 int ret = 0;
166 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
167
Jammy Zhoue61710c2015-11-10 18:31:08 -0500168 if (adev->pp_enabled && adev->firmware.smu_load)
Alex Deucher1f7371b2015-12-02 17:46:21 -0500169 amdgpu_ucode_init_bo(adev);
170
171 if (adev->powerplay.ip_funcs->hw_init)
172 ret = adev->powerplay.ip_funcs->hw_init(
173 adev->powerplay.pp_handle);
174
175 return ret;
176}
177
178static int amdgpu_pp_hw_fini(void *handle)
179{
180 int ret = 0;
181 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
182
183 if (adev->powerplay.ip_funcs->hw_fini)
184 ret = adev->powerplay.ip_funcs->hw_fini(
185 adev->powerplay.pp_handle);
186
Jammy Zhoue61710c2015-11-10 18:31:08 -0500187 if (adev->pp_enabled && adev->firmware.smu_load)
Alex Deucher1f7371b2015-12-02 17:46:21 -0500188 amdgpu_ucode_fini_bo(adev);
189
190 return ret;
191}
192
193static int amdgpu_pp_suspend(void *handle)
194{
195 int ret = 0;
196 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
197
198 if (adev->powerplay.ip_funcs->suspend)
199 ret = adev->powerplay.ip_funcs->suspend(
200 adev->powerplay.pp_handle);
201 return ret;
202}
203
204static int amdgpu_pp_resume(void *handle)
205{
206 int ret = 0;
207 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
208
209 if (adev->powerplay.ip_funcs->resume)
210 ret = adev->powerplay.ip_funcs->resume(
211 adev->powerplay.pp_handle);
212 return ret;
213}
214
215static int amdgpu_pp_set_clockgating_state(void *handle,
216 enum amd_clockgating_state state)
217{
218 int ret = 0;
219 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
220
221 if (adev->powerplay.ip_funcs->set_clockgating_state)
222 ret = adev->powerplay.ip_funcs->set_clockgating_state(
223 adev->powerplay.pp_handle, state);
224 return ret;
225}
226
227static int amdgpu_pp_set_powergating_state(void *handle,
228 enum amd_powergating_state state)
229{
230 int ret = 0;
231 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
232
233 if (adev->powerplay.ip_funcs->set_powergating_state)
234 ret = adev->powerplay.ip_funcs->set_powergating_state(
235 adev->powerplay.pp_handle, state);
236 return ret;
237}
238
239
240static bool amdgpu_pp_is_idle(void *handle)
241{
242 bool ret = true;
243 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
244
245 if (adev->powerplay.ip_funcs->is_idle)
246 ret = adev->powerplay.ip_funcs->is_idle(
247 adev->powerplay.pp_handle);
248 return ret;
249}
250
251static int amdgpu_pp_wait_for_idle(void *handle)
252{
253 int ret = 0;
254 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
255
256 if (adev->powerplay.ip_funcs->wait_for_idle)
257 ret = adev->powerplay.ip_funcs->wait_for_idle(
258 adev->powerplay.pp_handle);
259 return ret;
260}
261
262static int amdgpu_pp_soft_reset(void *handle)
263{
264 int ret = 0;
265 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
266
267 if (adev->powerplay.ip_funcs->soft_reset)
268 ret = adev->powerplay.ip_funcs->soft_reset(
269 adev->powerplay.pp_handle);
270 return ret;
271}
272
273static void amdgpu_pp_print_status(void *handle)
274{
275 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
276
277 if (adev->powerplay.ip_funcs->print_status)
278 adev->powerplay.ip_funcs->print_status(
279 adev->powerplay.pp_handle);
280}
281
282const struct amd_ip_funcs amdgpu_pp_ip_funcs = {
283 .early_init = amdgpu_pp_early_init,
284 .late_init = NULL,
285 .sw_init = amdgpu_pp_sw_init,
286 .sw_fini = amdgpu_pp_sw_fini,
287 .hw_init = amdgpu_pp_hw_init,
288 .hw_fini = amdgpu_pp_hw_fini,
289 .suspend = amdgpu_pp_suspend,
290 .resume = amdgpu_pp_resume,
291 .is_idle = amdgpu_pp_is_idle,
292 .wait_for_idle = amdgpu_pp_wait_for_idle,
293 .soft_reset = amdgpu_pp_soft_reset,
294 .print_status = amdgpu_pp_print_status,
295 .set_clockgating_state = amdgpu_pp_set_clockgating_state,
296 .set_powergating_state = amdgpu_pp_set_powergating_state,
297};