blob: 7ddcfbebb1f2c07af30ae963b020b3295b2c291e [file] [log] [blame]
Rob Clark7198e6b2013-07-19 12:59:32 -04001/*
2 * Copyright (C) 2013 Red Hat
3 * Author: Rob Clark <robdclark@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#include "msm_gpu.h"
19#include "msm_gem.h"
20
21
22/*
23 * Power Management:
24 */
25
26#ifdef CONFIG_MSM_BUS_SCALING
27#include <mach/board.h>
28#include <mach/kgsl.h>
29static void bs_init(struct msm_gpu *gpu, struct platform_device *pdev)
30{
31 struct drm_device *dev = gpu->dev;
32 struct kgsl_device_platform_data *pdata = pdev->dev.platform_data;
33
34 if (!pdev) {
35 dev_err(dev->dev, "could not find dtv pdata\n");
36 return;
37 }
38
39 if (pdata->bus_scale_table) {
40 gpu->bsc = msm_bus_scale_register_client(pdata->bus_scale_table);
41 DBG("bus scale client: %08x", gpu->bsc);
42 }
43}
44
45static void bs_fini(struct msm_gpu *gpu)
46{
47 if (gpu->bsc) {
48 msm_bus_scale_unregister_client(gpu->bsc);
49 gpu->bsc = 0;
50 }
51}
52
53static void bs_set(struct msm_gpu *gpu, int idx)
54{
55 if (gpu->bsc) {
56 DBG("set bus scaling: %d", idx);
57 msm_bus_scale_client_update_request(gpu->bsc, idx);
58 }
59}
60#else
61static void bs_init(struct msm_gpu *gpu, struct platform_device *pdev) {}
62static void bs_fini(struct msm_gpu *gpu) {}
63static void bs_set(struct msm_gpu *gpu, int idx) {}
64#endif
65
66static int enable_pwrrail(struct msm_gpu *gpu)
67{
68 struct drm_device *dev = gpu->dev;
69 int ret = 0;
70
71 if (gpu->gpu_reg) {
72 ret = regulator_enable(gpu->gpu_reg);
73 if (ret) {
74 dev_err(dev->dev, "failed to enable 'gpu_reg': %d\n", ret);
75 return ret;
76 }
77 }
78
79 if (gpu->gpu_cx) {
80 ret = regulator_enable(gpu->gpu_cx);
81 if (ret) {
82 dev_err(dev->dev, "failed to enable 'gpu_cx': %d\n", ret);
83 return ret;
84 }
85 }
86
87 return 0;
88}
89
90static int disable_pwrrail(struct msm_gpu *gpu)
91{
92 if (gpu->gpu_cx)
93 regulator_disable(gpu->gpu_cx);
94 if (gpu->gpu_reg)
95 regulator_disable(gpu->gpu_reg);
96 return 0;
97}
98
99static int enable_clk(struct msm_gpu *gpu)
100{
101 struct clk *rate_clk = NULL;
102 int i;
103
104 /* NOTE: kgsl_pwrctrl_clk() ignores grp_clks[0].. */
105 for (i = ARRAY_SIZE(gpu->grp_clks) - 1; i > 0; i--) {
106 if (gpu->grp_clks[i]) {
107 clk_prepare(gpu->grp_clks[i]);
108 rate_clk = gpu->grp_clks[i];
109 }
110 }
111
112 if (rate_clk && gpu->fast_rate)
113 clk_set_rate(rate_clk, gpu->fast_rate);
114
115 for (i = ARRAY_SIZE(gpu->grp_clks) - 1; i > 0; i--)
116 if (gpu->grp_clks[i])
117 clk_enable(gpu->grp_clks[i]);
118
119 return 0;
120}
121
122static int disable_clk(struct msm_gpu *gpu)
123{
124 struct clk *rate_clk = NULL;
125 int i;
126
127 /* NOTE: kgsl_pwrctrl_clk() ignores grp_clks[0].. */
128 for (i = ARRAY_SIZE(gpu->grp_clks) - 1; i > 0; i--) {
129 if (gpu->grp_clks[i]) {
130 clk_disable(gpu->grp_clks[i]);
131 rate_clk = gpu->grp_clks[i];
132 }
133 }
134
135 if (rate_clk && gpu->slow_rate)
136 clk_set_rate(rate_clk, gpu->slow_rate);
137
138 for (i = ARRAY_SIZE(gpu->grp_clks) - 1; i > 0; i--)
139 if (gpu->grp_clks[i])
140 clk_unprepare(gpu->grp_clks[i]);
141
142 return 0;
143}
144
145static int enable_axi(struct msm_gpu *gpu)
146{
147 if (gpu->ebi1_clk)
148 clk_prepare_enable(gpu->ebi1_clk);
149 if (gpu->bus_freq)
150 bs_set(gpu, gpu->bus_freq);
151 return 0;
152}
153
154static int disable_axi(struct msm_gpu *gpu)
155{
156 if (gpu->ebi1_clk)
157 clk_disable_unprepare(gpu->ebi1_clk);
158 if (gpu->bus_freq)
159 bs_set(gpu, 0);
160 return 0;
161}
162
163int msm_gpu_pm_resume(struct msm_gpu *gpu)
164{
165 int ret;
166
167 DBG("%s", gpu->name);
168
169 ret = enable_pwrrail(gpu);
170 if (ret)
171 return ret;
172
173 ret = enable_clk(gpu);
174 if (ret)
175 return ret;
176
177 ret = enable_axi(gpu);
178 if (ret)
179 return ret;
180
181 return 0;
182}
183
184int msm_gpu_pm_suspend(struct msm_gpu *gpu)
185{
186 int ret;
187
188 DBG("%s", gpu->name);
189
190 ret = disable_axi(gpu);
191 if (ret)
192 return ret;
193
194 ret = disable_clk(gpu);
195 if (ret)
196 return ret;
197
198 ret = disable_pwrrail(gpu);
199 if (ret)
200 return ret;
201
202 return 0;
203}
204
205/*
Rob Clarkbd6f82d2013-08-24 14:20:38 -0400206 * Hangcheck detection for locked gpu:
207 */
208
209static void recover_worker(struct work_struct *work)
210{
211 struct msm_gpu *gpu = container_of(work, struct msm_gpu, recover_work);
212 struct drm_device *dev = gpu->dev;
213
214 dev_err(dev->dev, "%s: hangcheck recover!\n", gpu->name);
215
216 mutex_lock(&dev->struct_mutex);
217 gpu->funcs->recover(gpu);
218 mutex_unlock(&dev->struct_mutex);
219
220 msm_gpu_retire(gpu);
221}
222
223static void hangcheck_timer_reset(struct msm_gpu *gpu)
224{
225 DBG("%s", gpu->name);
226 mod_timer(&gpu->hangcheck_timer,
227 round_jiffies_up(jiffies + DRM_MSM_HANGCHECK_JIFFIES));
228}
229
230static void hangcheck_handler(unsigned long data)
231{
232 struct msm_gpu *gpu = (struct msm_gpu *)data;
Rob Clark6b8819c2013-09-11 17:14:30 -0400233 struct drm_device *dev = gpu->dev;
234 struct msm_drm_private *priv = dev->dev_private;
Rob Clarkbd6f82d2013-08-24 14:20:38 -0400235 uint32_t fence = gpu->funcs->last_fence(gpu);
236
237 if (fence != gpu->hangcheck_fence) {
238 /* some progress has been made.. ya! */
239 gpu->hangcheck_fence = fence;
240 } else if (fence < gpu->submitted_fence) {
241 /* no progress and not done.. hung! */
Rob Clarkbd6f82d2013-08-24 14:20:38 -0400242 gpu->hangcheck_fence = fence;
Rob Clark26791c42013-09-03 07:12:03 -0400243 dev_err(dev->dev, "%s: hangcheck detected gpu lockup!\n",
244 gpu->name);
245 dev_err(dev->dev, "%s: completed fence: %u\n",
246 gpu->name, fence);
247 dev_err(dev->dev, "%s: submitted fence: %u\n",
248 gpu->name, gpu->submitted_fence);
Rob Clarkbd6f82d2013-08-24 14:20:38 -0400249 queue_work(priv->wq, &gpu->recover_work);
250 }
251
252 /* if still more pending work, reset the hangcheck timer: */
253 if (gpu->submitted_fence > gpu->hangcheck_fence)
254 hangcheck_timer_reset(gpu);
Rob Clark6b8819c2013-09-11 17:14:30 -0400255
256 /* workaround for missing irq: */
257 queue_work(priv->wq, &gpu->retire_work);
Rob Clarkbd6f82d2013-08-24 14:20:38 -0400258}
259
260/*
Rob Clark7198e6b2013-07-19 12:59:32 -0400261 * Cmdstream submission/retirement:
262 */
263
264static void retire_worker(struct work_struct *work)
265{
266 struct msm_gpu *gpu = container_of(work, struct msm_gpu, retire_work);
267 struct drm_device *dev = gpu->dev;
268 uint32_t fence = gpu->funcs->last_fence(gpu);
269
270 mutex_lock(&dev->struct_mutex);
271
272 while (!list_empty(&gpu->active_list)) {
273 struct msm_gem_object *obj;
274
275 obj = list_first_entry(&gpu->active_list,
276 struct msm_gem_object, mm_list);
277
Rob Clarkbf6811f2013-09-01 13:25:09 -0400278 if ((obj->read_fence <= fence) &&
279 (obj->write_fence <= fence)) {
Rob Clark7198e6b2013-07-19 12:59:32 -0400280 /* move to inactive: */
281 msm_gem_move_to_inactive(&obj->base);
282 msm_gem_put_iova(&obj->base, gpu->id);
283 drm_gem_object_unreference(&obj->base);
284 } else {
285 break;
286 }
287 }
288
289 msm_update_fence(gpu->dev, fence);
290
291 mutex_unlock(&dev->struct_mutex);
292}
293
294/* call from irq handler to schedule work to retire bo's */
295void msm_gpu_retire(struct msm_gpu *gpu)
296{
297 struct msm_drm_private *priv = gpu->dev->dev_private;
298 queue_work(priv->wq, &gpu->retire_work);
299}
300
301/* add bo's to gpu's ring, and kick gpu: */
302int msm_gpu_submit(struct msm_gpu *gpu, struct msm_gem_submit *submit,
303 struct msm_file_private *ctx)
304{
305 struct drm_device *dev = gpu->dev;
306 struct msm_drm_private *priv = dev->dev_private;
307 int i, ret;
308
309 mutex_lock(&dev->struct_mutex);
310
311 submit->fence = ++priv->next_fence;
312
Rob Clarkbd6f82d2013-08-24 14:20:38 -0400313 gpu->submitted_fence = submit->fence;
314
Rob Clark7198e6b2013-07-19 12:59:32 -0400315 ret = gpu->funcs->submit(gpu, submit, ctx);
316 priv->lastctx = ctx;
317
318 for (i = 0; i < submit->nr_bos; i++) {
319 struct msm_gem_object *msm_obj = submit->bos[i].obj;
320
321 /* can't happen yet.. but when we add 2d support we'll have
322 * to deal w/ cross-ring synchronization:
323 */
324 WARN_ON(is_active(msm_obj) && (msm_obj->gpu != gpu));
325
326 if (!is_active(msm_obj)) {
327 uint32_t iova;
328
329 /* ring takes a reference to the bo and iova: */
330 drm_gem_object_reference(&msm_obj->base);
331 msm_gem_get_iova_locked(&msm_obj->base,
332 submit->gpu->id, &iova);
333 }
334
Rob Clarkbf6811f2013-09-01 13:25:09 -0400335 if (submit->bos[i].flags & MSM_SUBMIT_BO_READ)
336 msm_gem_move_to_active(&msm_obj->base, gpu, false, submit->fence);
337
338 if (submit->bos[i].flags & MSM_SUBMIT_BO_WRITE)
339 msm_gem_move_to_active(&msm_obj->base, gpu, true, submit->fence);
Rob Clark7198e6b2013-07-19 12:59:32 -0400340 }
Rob Clarkbd6f82d2013-08-24 14:20:38 -0400341 hangcheck_timer_reset(gpu);
Rob Clark7198e6b2013-07-19 12:59:32 -0400342 mutex_unlock(&dev->struct_mutex);
343
344 return ret;
345}
346
347/*
348 * Init/Cleanup:
349 */
350
351static irqreturn_t irq_handler(int irq, void *data)
352{
353 struct msm_gpu *gpu = data;
354 return gpu->funcs->irq(gpu);
355}
356
357static const char *clk_names[] = {
358 "src_clk", "core_clk", "iface_clk", "mem_clk", "mem_iface_clk",
359};
360
361int msm_gpu_init(struct drm_device *drm, struct platform_device *pdev,
362 struct msm_gpu *gpu, const struct msm_gpu_funcs *funcs,
363 const char *name, const char *ioname, const char *irqname, int ringsz)
364{
365 int i, ret;
366
367 gpu->dev = drm;
368 gpu->funcs = funcs;
369 gpu->name = name;
370
371 INIT_LIST_HEAD(&gpu->active_list);
372 INIT_WORK(&gpu->retire_work, retire_worker);
Rob Clarkbd6f82d2013-08-24 14:20:38 -0400373 INIT_WORK(&gpu->recover_work, recover_worker);
374
375 setup_timer(&gpu->hangcheck_timer, hangcheck_handler,
376 (unsigned long)gpu);
Rob Clark7198e6b2013-07-19 12:59:32 -0400377
378 BUG_ON(ARRAY_SIZE(clk_names) != ARRAY_SIZE(gpu->grp_clks));
379
380 /* Map registers: */
381 gpu->mmio = msm_ioremap(pdev, ioname, name);
382 if (IS_ERR(gpu->mmio)) {
383 ret = PTR_ERR(gpu->mmio);
384 goto fail;
385 }
386
387 /* Get Interrupt: */
388 gpu->irq = platform_get_irq_byname(pdev, irqname);
389 if (gpu->irq < 0) {
390 ret = gpu->irq;
391 dev_err(drm->dev, "failed to get irq: %d\n", ret);
392 goto fail;
393 }
394
395 ret = devm_request_irq(&pdev->dev, gpu->irq, irq_handler,
396 IRQF_TRIGGER_HIGH, gpu->name, gpu);
397 if (ret) {
398 dev_err(drm->dev, "failed to request IRQ%u: %d\n", gpu->irq, ret);
399 goto fail;
400 }
401
402 /* Acquire clocks: */
403 for (i = 0; i < ARRAY_SIZE(clk_names); i++) {
404 gpu->grp_clks[i] = devm_clk_get(&pdev->dev, clk_names[i]);
405 DBG("grp_clks[%s]: %p", clk_names[i], gpu->grp_clks[i]);
406 if (IS_ERR(gpu->grp_clks[i]))
407 gpu->grp_clks[i] = NULL;
408 }
409
410 gpu->ebi1_clk = devm_clk_get(&pdev->dev, "bus_clk");
411 DBG("ebi1_clk: %p", gpu->ebi1_clk);
412 if (IS_ERR(gpu->ebi1_clk))
413 gpu->ebi1_clk = NULL;
414
415 /* Acquire regulators: */
416 gpu->gpu_reg = devm_regulator_get(&pdev->dev, "vdd");
417 DBG("gpu_reg: %p", gpu->gpu_reg);
418 if (IS_ERR(gpu->gpu_reg))
419 gpu->gpu_reg = NULL;
420
421 gpu->gpu_cx = devm_regulator_get(&pdev->dev, "vddcx");
422 DBG("gpu_cx: %p", gpu->gpu_cx);
423 if (IS_ERR(gpu->gpu_cx))
424 gpu->gpu_cx = NULL;
425
426 /* Setup IOMMU.. eventually we will (I think) do this once per context
427 * and have separate page tables per context. For now, to keep things
428 * simple and to get something working, just use a single address space:
429 */
430 gpu->iommu = iommu_domain_alloc(&platform_bus_type);
431 if (!gpu->iommu) {
432 dev_err(drm->dev, "failed to allocate IOMMU\n");
433 ret = -ENOMEM;
434 goto fail;
435 }
436 gpu->id = msm_register_iommu(drm, gpu->iommu);
437
438 /* Create ringbuffer: */
439 gpu->rb = msm_ringbuffer_new(gpu, ringsz);
440 if (IS_ERR(gpu->rb)) {
441 ret = PTR_ERR(gpu->rb);
442 gpu->rb = NULL;
443 dev_err(drm->dev, "could not create ringbuffer: %d\n", ret);
444 goto fail;
445 }
446
447 ret = msm_gem_get_iova_locked(gpu->rb->bo, gpu->id, &gpu->rb_iova);
448 if (ret) {
449 gpu->rb_iova = 0;
450 dev_err(drm->dev, "could not map ringbuffer: %d\n", ret);
451 goto fail;
452 }
453
454 bs_init(gpu, pdev);
455
456 return 0;
457
458fail:
459 return ret;
460}
461
462void msm_gpu_cleanup(struct msm_gpu *gpu)
463{
464 DBG("%s", gpu->name);
465
466 WARN_ON(!list_empty(&gpu->active_list));
467
468 bs_fini(gpu);
469
470 if (gpu->rb) {
471 if (gpu->rb_iova)
472 msm_gem_put_iova(gpu->rb->bo, gpu->id);
473 msm_ringbuffer_destroy(gpu->rb);
474 }
475
476 if (gpu->iommu)
477 iommu_domain_free(gpu->iommu);
478}