blob: 72d01e8731600c41803d8359bd2911cca6ae1a3e [file] [log] [blame]
Lucas Stachf6ffbd42018-05-08 16:20:54 +02001// SPDX-License-Identifier: GPL-2.0
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01002/*
Lucas Stachf6ffbd42018-05-08 16:20:54 +02003 * Copyright (C) 2015-2018 Etnaviv Project
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01004 */
5
Lucas Stachf9d255f2018-10-15 12:49:07 +02006#include <linux/clk.h>
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01007#include <linux/component.h>
Chris Wilsonf54d1862016-10-25 13:00:45 +01008#include <linux/dma-fence.h>
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01009#include <linux/moduleparam.h>
10#include <linux/of_device.h>
Lucas Stachf9d255f2018-10-15 12:49:07 +020011#include <linux/regulator/consumer.h>
Russell Kingbcdfb5e2017-03-12 19:00:59 +000012#include <linux/thermal.h>
Lucas Stachea1f5722017-01-16 16:09:51 +010013
14#include "etnaviv_cmdbuf.h"
The etnaviv authorsa8c21a52015-12-03 18:21:29 +010015#include "etnaviv_dump.h"
16#include "etnaviv_gpu.h"
17#include "etnaviv_gem.h"
18#include "etnaviv_mmu.h"
Christian Gmeiner357713c2017-09-24 15:15:28 +020019#include "etnaviv_perfmon.h"
Lucas Stache93b6de2017-12-04 18:41:58 +010020#include "etnaviv_sched.h"
The etnaviv authorsa8c21a52015-12-03 18:21:29 +010021#include "common.xml.h"
22#include "state.xml.h"
23#include "state_hi.xml.h"
24#include "cmdstream.xml.h"
25
Lucas Stachc09d7f72018-01-04 13:40:03 +010026#ifndef PHYS_OFFSET
27#define PHYS_OFFSET 0
28#endif
29
The etnaviv authorsa8c21a52015-12-03 18:21:29 +010030static const struct platform_device_id gpu_ids[] = {
31 { .name = "etnaviv-gpu,2d" },
32 { },
33};
34
The etnaviv authorsa8c21a52015-12-03 18:21:29 +010035/*
36 * Driver functions:
37 */
38
39int etnaviv_gpu_get_param(struct etnaviv_gpu *gpu, u32 param, u64 *value)
40{
41 switch (param) {
42 case ETNAVIV_PARAM_GPU_MODEL:
43 *value = gpu->identity.model;
44 break;
45
46 case ETNAVIV_PARAM_GPU_REVISION:
47 *value = gpu->identity.revision;
48 break;
49
50 case ETNAVIV_PARAM_GPU_FEATURES_0:
51 *value = gpu->identity.features;
52 break;
53
54 case ETNAVIV_PARAM_GPU_FEATURES_1:
55 *value = gpu->identity.minor_features0;
56 break;
57
58 case ETNAVIV_PARAM_GPU_FEATURES_2:
59 *value = gpu->identity.minor_features1;
60 break;
61
62 case ETNAVIV_PARAM_GPU_FEATURES_3:
63 *value = gpu->identity.minor_features2;
64 break;
65
66 case ETNAVIV_PARAM_GPU_FEATURES_4:
67 *value = gpu->identity.minor_features3;
68 break;
69
Russell King602eb482016-01-24 17:36:04 +000070 case ETNAVIV_PARAM_GPU_FEATURES_5:
71 *value = gpu->identity.minor_features4;
72 break;
73
74 case ETNAVIV_PARAM_GPU_FEATURES_6:
75 *value = gpu->identity.minor_features5;
76 break;
77
Lucas Stach0538aaf2018-01-22 15:56:11 +010078 case ETNAVIV_PARAM_GPU_FEATURES_7:
79 *value = gpu->identity.minor_features6;
80 break;
81
82 case ETNAVIV_PARAM_GPU_FEATURES_8:
83 *value = gpu->identity.minor_features7;
84 break;
85
86 case ETNAVIV_PARAM_GPU_FEATURES_9:
87 *value = gpu->identity.minor_features8;
88 break;
89
90 case ETNAVIV_PARAM_GPU_FEATURES_10:
91 *value = gpu->identity.minor_features9;
92 break;
93
94 case ETNAVIV_PARAM_GPU_FEATURES_11:
95 *value = gpu->identity.minor_features10;
96 break;
97
98 case ETNAVIV_PARAM_GPU_FEATURES_12:
99 *value = gpu->identity.minor_features11;
100 break;
101
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100102 case ETNAVIV_PARAM_GPU_STREAM_COUNT:
103 *value = gpu->identity.stream_count;
104 break;
105
106 case ETNAVIV_PARAM_GPU_REGISTER_MAX:
107 *value = gpu->identity.register_max;
108 break;
109
110 case ETNAVIV_PARAM_GPU_THREAD_COUNT:
111 *value = gpu->identity.thread_count;
112 break;
113
114 case ETNAVIV_PARAM_GPU_VERTEX_CACHE_SIZE:
115 *value = gpu->identity.vertex_cache_size;
116 break;
117
118 case ETNAVIV_PARAM_GPU_SHADER_CORE_COUNT:
119 *value = gpu->identity.shader_core_count;
120 break;
121
122 case ETNAVIV_PARAM_GPU_PIXEL_PIPES:
123 *value = gpu->identity.pixel_pipes;
124 break;
125
126 case ETNAVIV_PARAM_GPU_VERTEX_OUTPUT_BUFFER_SIZE:
127 *value = gpu->identity.vertex_output_buffer_size;
128 break;
129
130 case ETNAVIV_PARAM_GPU_BUFFER_SIZE:
131 *value = gpu->identity.buffer_size;
132 break;
133
134 case ETNAVIV_PARAM_GPU_INSTRUCTION_COUNT:
135 *value = gpu->identity.instruction_count;
136 break;
137
138 case ETNAVIV_PARAM_GPU_NUM_CONSTANTS:
139 *value = gpu->identity.num_constants;
140 break;
141
Russell King602eb482016-01-24 17:36:04 +0000142 case ETNAVIV_PARAM_GPU_NUM_VARYINGS:
143 *value = gpu->identity.varyings_count;
144 break;
145
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100146 default:
147 DBG("%s: invalid param: %u", dev_name(gpu->dev), param);
148 return -EINVAL;
149 }
150
151 return 0;
152}
153
Russell King472f79d2016-01-24 17:35:59 +0000154
155#define etnaviv_is_model_rev(gpu, mod, rev) \
156 ((gpu)->identity.model == chipModel_##mod && \
157 (gpu)->identity.revision == rev)
Russell King52f36ba2016-01-24 17:35:54 +0000158#define etnaviv_field(val, field) \
159 (((val) & field##__MASK) >> field##__SHIFT)
160
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100161static void etnaviv_hw_specs(struct etnaviv_gpu *gpu)
162{
163 if (gpu->identity.minor_features0 &
164 chipMinorFeatures0_MORE_MINOR_FEATURES) {
Russell King602eb482016-01-24 17:36:04 +0000165 u32 specs[4];
166 unsigned int streams;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100167
168 specs[0] = gpu_read(gpu, VIVS_HI_CHIP_SPECS);
169 specs[1] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_2);
Russell King602eb482016-01-24 17:36:04 +0000170 specs[2] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_3);
171 specs[3] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_4);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100172
Russell King52f36ba2016-01-24 17:35:54 +0000173 gpu->identity.stream_count = etnaviv_field(specs[0],
174 VIVS_HI_CHIP_SPECS_STREAM_COUNT);
175 gpu->identity.register_max = etnaviv_field(specs[0],
176 VIVS_HI_CHIP_SPECS_REGISTER_MAX);
177 gpu->identity.thread_count = etnaviv_field(specs[0],
178 VIVS_HI_CHIP_SPECS_THREAD_COUNT);
179 gpu->identity.vertex_cache_size = etnaviv_field(specs[0],
180 VIVS_HI_CHIP_SPECS_VERTEX_CACHE_SIZE);
181 gpu->identity.shader_core_count = etnaviv_field(specs[0],
182 VIVS_HI_CHIP_SPECS_SHADER_CORE_COUNT);
183 gpu->identity.pixel_pipes = etnaviv_field(specs[0],
184 VIVS_HI_CHIP_SPECS_PIXEL_PIPES);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100185 gpu->identity.vertex_output_buffer_size =
Russell King52f36ba2016-01-24 17:35:54 +0000186 etnaviv_field(specs[0],
187 VIVS_HI_CHIP_SPECS_VERTEX_OUTPUT_BUFFER_SIZE);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100188
Russell King52f36ba2016-01-24 17:35:54 +0000189 gpu->identity.buffer_size = etnaviv_field(specs[1],
190 VIVS_HI_CHIP_SPECS_2_BUFFER_SIZE);
191 gpu->identity.instruction_count = etnaviv_field(specs[1],
192 VIVS_HI_CHIP_SPECS_2_INSTRUCTION_COUNT);
193 gpu->identity.num_constants = etnaviv_field(specs[1],
194 VIVS_HI_CHIP_SPECS_2_NUM_CONSTANTS);
Russell King602eb482016-01-24 17:36:04 +0000195
196 gpu->identity.varyings_count = etnaviv_field(specs[2],
197 VIVS_HI_CHIP_SPECS_3_VARYINGS_COUNT);
198
199 /* This overrides the value from older register if non-zero */
200 streams = etnaviv_field(specs[3],
201 VIVS_HI_CHIP_SPECS_4_STREAM_COUNT);
202 if (streams)
203 gpu->identity.stream_count = streams;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100204 }
205
206 /* Fill in the stream count if not specified */
207 if (gpu->identity.stream_count == 0) {
208 if (gpu->identity.model >= 0x1000)
209 gpu->identity.stream_count = 4;
210 else
211 gpu->identity.stream_count = 1;
212 }
213
214 /* Convert the register max value */
215 if (gpu->identity.register_max)
216 gpu->identity.register_max = 1 << gpu->identity.register_max;
Russell King507f8992016-01-24 17:35:48 +0000217 else if (gpu->identity.model == chipModel_GC400)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100218 gpu->identity.register_max = 32;
219 else
220 gpu->identity.register_max = 64;
221
222 /* Convert thread count */
223 if (gpu->identity.thread_count)
224 gpu->identity.thread_count = 1 << gpu->identity.thread_count;
Russell King507f8992016-01-24 17:35:48 +0000225 else if (gpu->identity.model == chipModel_GC400)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100226 gpu->identity.thread_count = 64;
Russell King507f8992016-01-24 17:35:48 +0000227 else if (gpu->identity.model == chipModel_GC500 ||
228 gpu->identity.model == chipModel_GC530)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100229 gpu->identity.thread_count = 128;
230 else
231 gpu->identity.thread_count = 256;
232
233 if (gpu->identity.vertex_cache_size == 0)
234 gpu->identity.vertex_cache_size = 8;
235
236 if (gpu->identity.shader_core_count == 0) {
237 if (gpu->identity.model >= 0x1000)
238 gpu->identity.shader_core_count = 2;
239 else
240 gpu->identity.shader_core_count = 1;
241 }
242
243 if (gpu->identity.pixel_pipes == 0)
244 gpu->identity.pixel_pipes = 1;
245
246 /* Convert virtex buffer size */
247 if (gpu->identity.vertex_output_buffer_size) {
248 gpu->identity.vertex_output_buffer_size =
249 1 << gpu->identity.vertex_output_buffer_size;
Russell King507f8992016-01-24 17:35:48 +0000250 } else if (gpu->identity.model == chipModel_GC400) {
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100251 if (gpu->identity.revision < 0x4000)
252 gpu->identity.vertex_output_buffer_size = 512;
253 else if (gpu->identity.revision < 0x4200)
254 gpu->identity.vertex_output_buffer_size = 256;
255 else
256 gpu->identity.vertex_output_buffer_size = 128;
257 } else {
258 gpu->identity.vertex_output_buffer_size = 512;
259 }
260
261 switch (gpu->identity.instruction_count) {
262 case 0:
Russell King472f79d2016-01-24 17:35:59 +0000263 if (etnaviv_is_model_rev(gpu, GC2000, 0x5108) ||
Russell King507f8992016-01-24 17:35:48 +0000264 gpu->identity.model == chipModel_GC880)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100265 gpu->identity.instruction_count = 512;
266 else
267 gpu->identity.instruction_count = 256;
268 break;
269
270 case 1:
271 gpu->identity.instruction_count = 1024;
272 break;
273
274 case 2:
275 gpu->identity.instruction_count = 2048;
276 break;
277
278 default:
279 gpu->identity.instruction_count = 256;
280 break;
281 }
282
283 if (gpu->identity.num_constants == 0)
284 gpu->identity.num_constants = 168;
Russell King602eb482016-01-24 17:36:04 +0000285
286 if (gpu->identity.varyings_count == 0) {
287 if (gpu->identity.minor_features1 & chipMinorFeatures1_HALTI0)
288 gpu->identity.varyings_count = 12;
289 else
290 gpu->identity.varyings_count = 8;
291 }
292
293 /*
294 * For some cores, two varyings are consumed for position, so the
295 * maximum varying count needs to be reduced by one.
296 */
297 if (etnaviv_is_model_rev(gpu, GC5000, 0x5434) ||
298 etnaviv_is_model_rev(gpu, GC4000, 0x5222) ||
299 etnaviv_is_model_rev(gpu, GC4000, 0x5245) ||
300 etnaviv_is_model_rev(gpu, GC4000, 0x5208) ||
301 etnaviv_is_model_rev(gpu, GC3000, 0x5435) ||
302 etnaviv_is_model_rev(gpu, GC2200, 0x5244) ||
303 etnaviv_is_model_rev(gpu, GC2100, 0x5108) ||
304 etnaviv_is_model_rev(gpu, GC2000, 0x5108) ||
305 etnaviv_is_model_rev(gpu, GC1500, 0x5246) ||
306 etnaviv_is_model_rev(gpu, GC880, 0x5107) ||
307 etnaviv_is_model_rev(gpu, GC880, 0x5106))
308 gpu->identity.varyings_count -= 1;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100309}
310
311static void etnaviv_hw_identify(struct etnaviv_gpu *gpu)
312{
313 u32 chipIdentity;
314
315 chipIdentity = gpu_read(gpu, VIVS_HI_CHIP_IDENTITY);
316
317 /* Special case for older graphic cores. */
Russell King52f36ba2016-01-24 17:35:54 +0000318 if (etnaviv_field(chipIdentity, VIVS_HI_CHIP_IDENTITY_FAMILY) == 0x01) {
Russell King507f8992016-01-24 17:35:48 +0000319 gpu->identity.model = chipModel_GC500;
Russell King52f36ba2016-01-24 17:35:54 +0000320 gpu->identity.revision = etnaviv_field(chipIdentity,
321 VIVS_HI_CHIP_IDENTITY_REVISION);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100322 } else {
323
324 gpu->identity.model = gpu_read(gpu, VIVS_HI_CHIP_MODEL);
325 gpu->identity.revision = gpu_read(gpu, VIVS_HI_CHIP_REV);
326
327 /*
328 * !!!! HACK ALERT !!!!
329 * Because people change device IDs without letting software
330 * know about it - here is the hack to make it all look the
331 * same. Only for GC400 family.
332 */
333 if ((gpu->identity.model & 0xff00) == 0x0400 &&
Russell King507f8992016-01-24 17:35:48 +0000334 gpu->identity.model != chipModel_GC420) {
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100335 gpu->identity.model = gpu->identity.model & 0x0400;
336 }
337
338 /* Another special case */
Russell King472f79d2016-01-24 17:35:59 +0000339 if (etnaviv_is_model_rev(gpu, GC300, 0x2201)) {
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100340 u32 chipDate = gpu_read(gpu, VIVS_HI_CHIP_DATE);
341 u32 chipTime = gpu_read(gpu, VIVS_HI_CHIP_TIME);
342
343 if (chipDate == 0x20080814 && chipTime == 0x12051100) {
344 /*
345 * This IP has an ECO; put the correct
346 * revision in it.
347 */
348 gpu->identity.revision = 0x1051;
349 }
350 }
Lucas Stach12ff4bd2016-08-15 18:16:59 +0200351
352 /*
353 * NXP likes to call the GPU on the i.MX6QP GC2000+, but in
354 * reality it's just a re-branded GC3000. We can identify this
355 * core by the upper half of the revision register being all 1.
356 * Fix model/rev here, so all other places can refer to this
357 * core by its real identity.
358 */
359 if (etnaviv_is_model_rev(gpu, GC2000, 0xffff5450)) {
360 gpu->identity.model = chipModel_GC3000;
361 gpu->identity.revision &= 0xffff;
362 }
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100363 }
364
365 dev_info(gpu->dev, "model: GC%x, revision: %x\n",
366 gpu->identity.model, gpu->identity.revision);
367
Lucas Stach2b76f5b2018-12-19 15:16:41 +0100368 gpu->idle_mask = ~VIVS_HI_IDLE_STATE_AXI_LP;
Lucas Stach681c19c2018-01-22 15:57:59 +0100369 /*
370 * If there is a match in the HWDB, we aren't interested in the
371 * remaining register values, as they might be wrong.
372 */
373 if (etnaviv_fill_identity_from_hwdb(gpu))
374 return;
375
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100376 gpu->identity.features = gpu_read(gpu, VIVS_HI_CHIP_FEATURE);
377
378 /* Disable fast clear on GC700. */
Russell King507f8992016-01-24 17:35:48 +0000379 if (gpu->identity.model == chipModel_GC700)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100380 gpu->identity.features &= ~chipFeatures_FAST_CLEAR;
381
Russell King507f8992016-01-24 17:35:48 +0000382 if ((gpu->identity.model == chipModel_GC500 &&
383 gpu->identity.revision < 2) ||
384 (gpu->identity.model == chipModel_GC300 &&
385 gpu->identity.revision < 0x2000)) {
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100386
387 /*
388 * GC500 rev 1.x and GC300 rev < 2.0 doesn't have these
389 * registers.
390 */
391 gpu->identity.minor_features0 = 0;
392 gpu->identity.minor_features1 = 0;
393 gpu->identity.minor_features2 = 0;
394 gpu->identity.minor_features3 = 0;
Russell King602eb482016-01-24 17:36:04 +0000395 gpu->identity.minor_features4 = 0;
396 gpu->identity.minor_features5 = 0;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100397 } else
398 gpu->identity.minor_features0 =
399 gpu_read(gpu, VIVS_HI_CHIP_MINOR_FEATURE_0);
400
401 if (gpu->identity.minor_features0 &
402 chipMinorFeatures0_MORE_MINOR_FEATURES) {
403 gpu->identity.minor_features1 =
404 gpu_read(gpu, VIVS_HI_CHIP_MINOR_FEATURE_1);
405 gpu->identity.minor_features2 =
406 gpu_read(gpu, VIVS_HI_CHIP_MINOR_FEATURE_2);
407 gpu->identity.minor_features3 =
408 gpu_read(gpu, VIVS_HI_CHIP_MINOR_FEATURE_3);
Russell King602eb482016-01-24 17:36:04 +0000409 gpu->identity.minor_features4 =
410 gpu_read(gpu, VIVS_HI_CHIP_MINOR_FEATURE_4);
411 gpu->identity.minor_features5 =
412 gpu_read(gpu, VIVS_HI_CHIP_MINOR_FEATURE_5);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100413 }
414
415 /* GC600 idle register reports zero bits where modules aren't present */
Lucas Stach2b76f5b2018-12-19 15:16:41 +0100416 if (gpu->identity.model == chipModel_GC600)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100417 gpu->idle_mask = VIVS_HI_IDLE_STATE_TX |
418 VIVS_HI_IDLE_STATE_RA |
419 VIVS_HI_IDLE_STATE_SE |
420 VIVS_HI_IDLE_STATE_PA |
421 VIVS_HI_IDLE_STATE_SH |
422 VIVS_HI_IDLE_STATE_PE |
423 VIVS_HI_IDLE_STATE_DE |
424 VIVS_HI_IDLE_STATE_FE;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100425
426 etnaviv_hw_specs(gpu);
427}
428
429static void etnaviv_gpu_load_clock(struct etnaviv_gpu *gpu, u32 clock)
430{
431 gpu_write(gpu, VIVS_HI_CLOCK_CONTROL, clock |
432 VIVS_HI_CLOCK_CONTROL_FSCALE_CMD_LOAD);
433 gpu_write(gpu, VIVS_HI_CLOCK_CONTROL, clock);
434}
435
Russell Kingbcdfb5e2017-03-12 19:00:59 +0000436static void etnaviv_gpu_update_clock(struct etnaviv_gpu *gpu)
437{
Lucas Stachd79fd1ccf22017-04-11 15:54:50 +0200438 if (gpu->identity.minor_features2 &
439 chipMinorFeatures2_DYNAMIC_FREQUENCY_SCALING) {
440 clk_set_rate(gpu->clk_core,
441 gpu->base_rate_core >> gpu->freq_scale);
442 clk_set_rate(gpu->clk_shader,
443 gpu->base_rate_shader >> gpu->freq_scale);
444 } else {
445 unsigned int fscale = 1 << (6 - gpu->freq_scale);
Lucas Stach6eb3ecc2017-09-28 15:41:21 +0200446 u32 clock = gpu_read(gpu, VIVS_HI_CLOCK_CONTROL);
Russell Kingbcdfb5e2017-03-12 19:00:59 +0000447
Lucas Stach6eb3ecc2017-09-28 15:41:21 +0200448 clock &= ~VIVS_HI_CLOCK_CONTROL_FSCALE_VAL__MASK;
449 clock |= VIVS_HI_CLOCK_CONTROL_FSCALE_VAL(fscale);
Lucas Stachd79fd1ccf22017-04-11 15:54:50 +0200450 etnaviv_gpu_load_clock(gpu, clock);
451 }
Russell Kingbcdfb5e2017-03-12 19:00:59 +0000452}
453
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100454static int etnaviv_hw_reset(struct etnaviv_gpu *gpu)
455{
456 u32 control, idle;
457 unsigned long timeout;
458 bool failed = true;
459
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100460 /* We hope that the GPU resets in under one second */
461 timeout = jiffies + msecs_to_jiffies(1000);
462
463 while (time_is_after_jiffies(timeout)) {
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100464 /* enable clock */
Lucas Stach6eb3ecc2017-09-28 15:41:21 +0200465 unsigned int fscale = 1 << (6 - gpu->freq_scale);
466 control = VIVS_HI_CLOCK_CONTROL_FSCALE_VAL(fscale);
467 etnaviv_gpu_load_clock(gpu, control);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100468
469 /* isolate the GPU. */
470 control |= VIVS_HI_CLOCK_CONTROL_ISOLATE_GPU;
471 gpu_write(gpu, VIVS_HI_CLOCK_CONTROL, control);
472
Lucas Stachc997c3d2018-01-22 16:18:16 +0100473 if (gpu->sec_mode == ETNA_SEC_KERNEL) {
474 gpu_write(gpu, VIVS_MMUv2_AHB_CONTROL,
475 VIVS_MMUv2_AHB_CONTROL_RESET);
476 } else {
477 /* set soft reset. */
478 control |= VIVS_HI_CLOCK_CONTROL_SOFT_RESET;
479 gpu_write(gpu, VIVS_HI_CLOCK_CONTROL, control);
480 }
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100481
482 /* wait for reset. */
Philipp Zabel40462172017-10-09 12:03:30 +0200483 usleep_range(10, 20);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100484
485 /* reset soft reset bit. */
486 control &= ~VIVS_HI_CLOCK_CONTROL_SOFT_RESET;
487 gpu_write(gpu, VIVS_HI_CLOCK_CONTROL, control);
488
489 /* reset GPU isolation. */
490 control &= ~VIVS_HI_CLOCK_CONTROL_ISOLATE_GPU;
491 gpu_write(gpu, VIVS_HI_CLOCK_CONTROL, control);
492
493 /* read idle register. */
494 idle = gpu_read(gpu, VIVS_HI_IDLE_STATE);
495
496 /* try reseting again if FE it not idle */
497 if ((idle & VIVS_HI_IDLE_STATE_FE) == 0) {
498 dev_dbg(gpu->dev, "FE is not idle\n");
499 continue;
500 }
501
502 /* read reset register. */
503 control = gpu_read(gpu, VIVS_HI_CLOCK_CONTROL);
504
505 /* is the GPU idle? */
506 if (((control & VIVS_HI_CLOCK_CONTROL_IDLE_3D) == 0) ||
507 ((control & VIVS_HI_CLOCK_CONTROL_IDLE_2D) == 0)) {
508 dev_dbg(gpu->dev, "GPU is not idle\n");
509 continue;
510 }
511
Lucas Stach6eb3ecc2017-09-28 15:41:21 +0200512 /* disable debug registers, as they are not normally needed */
513 control |= VIVS_HI_CLOCK_CONTROL_DISABLE_DEBUG_REGISTERS;
514 gpu_write(gpu, VIVS_HI_CLOCK_CONTROL, control);
515
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100516 failed = false;
517 break;
518 }
519
520 if (failed) {
521 idle = gpu_read(gpu, VIVS_HI_IDLE_STATE);
522 control = gpu_read(gpu, VIVS_HI_CLOCK_CONTROL);
523
524 dev_err(gpu->dev, "GPU failed to reset: FE %sidle, 3D %sidle, 2D %sidle\n",
525 idle & VIVS_HI_IDLE_STATE_FE ? "" : "not ",
526 control & VIVS_HI_CLOCK_CONTROL_IDLE_3D ? "" : "not ",
527 control & VIVS_HI_CLOCK_CONTROL_IDLE_2D ? "" : "not ");
528
529 return -EBUSY;
530 }
531
532 /* We rely on the GPU running, so program the clock */
Russell Kingbcdfb5e2017-03-12 19:00:59 +0000533 etnaviv_gpu_update_clock(gpu);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100534
535 return 0;
536}
537
Russell King7d0c6e72016-01-21 15:20:45 +0000538static void etnaviv_gpu_enable_mlcg(struct etnaviv_gpu *gpu)
539{
540 u32 pmc, ppc;
541
542 /* enable clock gating */
543 ppc = gpu_read(gpu, VIVS_PM_POWER_CONTROLS);
544 ppc |= VIVS_PM_POWER_CONTROLS_ENABLE_MODULE_CLOCK_GATING;
545
546 /* Disable stall module clock gating for 4.3.0.1 and 4.3.0.2 revs */
547 if (gpu->identity.revision == 0x4301 ||
548 gpu->identity.revision == 0x4302)
549 ppc |= VIVS_PM_POWER_CONTROLS_DISABLE_STALL_MODULE_CLOCK_GATING;
550
551 gpu_write(gpu, VIVS_PM_POWER_CONTROLS, ppc);
552
553 pmc = gpu_read(gpu, VIVS_PM_MODULE_CONTROLS);
554
Lucas Stach7cef6002017-03-17 12:42:30 +0100555 /* Disable PA clock gating for GC400+ without bugfix except for GC420 */
Russell King7d0c6e72016-01-21 15:20:45 +0000556 if (gpu->identity.model >= chipModel_GC400 &&
Lucas Stach7cef6002017-03-17 12:42:30 +0100557 gpu->identity.model != chipModel_GC420 &&
558 !(gpu->identity.minor_features3 & chipMinorFeatures3_BUG_FIXES12))
Russell King7d0c6e72016-01-21 15:20:45 +0000559 pmc |= VIVS_PM_MODULE_CONTROLS_DISABLE_MODULE_CLOCK_GATING_PA;
560
561 /*
562 * Disable PE clock gating on revs < 5.0.0.0 when HZ is
563 * present without a bug fix.
564 */
565 if (gpu->identity.revision < 0x5000 &&
566 gpu->identity.minor_features0 & chipMinorFeatures0_HZ &&
567 !(gpu->identity.minor_features1 &
568 chipMinorFeatures1_DISABLE_PE_GATING))
569 pmc |= VIVS_PM_MODULE_CONTROLS_DISABLE_MODULE_CLOCK_GATING_PE;
570
571 if (gpu->identity.revision < 0x5422)
572 pmc |= BIT(15); /* Unknown bit */
573
Lucas Stach7cef6002017-03-17 12:42:30 +0100574 /* Disable TX clock gating on affected core revisions. */
575 if (etnaviv_is_model_rev(gpu, GC4000, 0x5222) ||
576 etnaviv_is_model_rev(gpu, GC2000, 0x5108))
577 pmc |= VIVS_PM_MODULE_CONTROLS_DISABLE_MODULE_CLOCK_GATING_TX;
578
Russell King7d0c6e72016-01-21 15:20:45 +0000579 pmc |= VIVS_PM_MODULE_CONTROLS_DISABLE_MODULE_CLOCK_GATING_RA_HZ;
580 pmc |= VIVS_PM_MODULE_CONTROLS_DISABLE_MODULE_CLOCK_GATING_RA_EZ;
581
582 gpu_write(gpu, VIVS_PM_MODULE_CONTROLS, pmc);
583}
584
Lucas Stach229855b2016-08-17 15:27:52 +0200585void etnaviv_gpu_start_fe(struct etnaviv_gpu *gpu, u32 address, u16 prefetch)
586{
587 gpu_write(gpu, VIVS_FE_COMMAND_ADDRESS, address);
588 gpu_write(gpu, VIVS_FE_COMMAND_CONTROL,
589 VIVS_FE_COMMAND_CONTROL_ENABLE |
590 VIVS_FE_COMMAND_CONTROL_PREFETCH(prefetch));
Lucas Stachc997c3d2018-01-22 16:18:16 +0100591
592 if (gpu->sec_mode == ETNA_SEC_KERNEL) {
593 gpu_write(gpu, VIVS_MMUv2_SEC_COMMAND_CONTROL,
594 VIVS_MMUv2_SEC_COMMAND_CONTROL_ENABLE |
595 VIVS_MMUv2_SEC_COMMAND_CONTROL_PREFETCH(prefetch));
596 }
Lucas Stach229855b2016-08-17 15:27:52 +0200597}
598
Wladimir J. van der Laane17a0de2016-12-15 13:11:30 +0100599static void etnaviv_gpu_setup_pulse_eater(struct etnaviv_gpu *gpu)
600{
601 /*
602 * Base value for VIVS_PM_PULSE_EATER register on models where it
603 * cannot be read, extracted from vivante kernel driver.
604 */
605 u32 pulse_eater = 0x01590880;
606
607 if (etnaviv_is_model_rev(gpu, GC4000, 0x5208) ||
608 etnaviv_is_model_rev(gpu, GC4000, 0x5222)) {
609 pulse_eater |= BIT(23);
610
611 }
612
613 if (etnaviv_is_model_rev(gpu, GC1000, 0x5039) ||
614 etnaviv_is_model_rev(gpu, GC1000, 0x5040)) {
615 pulse_eater &= ~BIT(16);
616 pulse_eater |= BIT(17);
617 }
618
619 if ((gpu->identity.revision > 0x5420) &&
620 (gpu->identity.features & chipFeatures_PIPE_3D))
621 {
622 /* Performance fix: disable internal DFS */
623 pulse_eater = gpu_read(gpu, VIVS_PM_PULSE_EATER);
624 pulse_eater |= BIT(18);
625 }
626
627 gpu_write(gpu, VIVS_PM_PULSE_EATER, pulse_eater);
628}
629
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100630static void etnaviv_gpu_hw_init(struct etnaviv_gpu *gpu)
631{
632 u16 prefetch;
633
Russell King472f79d2016-01-24 17:35:59 +0000634 if ((etnaviv_is_model_rev(gpu, GC320, 0x5007) ||
635 etnaviv_is_model_rev(gpu, GC320, 0x5220)) &&
636 gpu_read(gpu, VIVS_HI_CHIP_TIME) != 0x2062400) {
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100637 u32 mc_memory_debug;
638
639 mc_memory_debug = gpu_read(gpu, VIVS_MC_DEBUG_MEMORY) & ~0xff;
640
641 if (gpu->identity.revision == 0x5007)
642 mc_memory_debug |= 0x0c;
643 else
644 mc_memory_debug |= 0x08;
645
646 gpu_write(gpu, VIVS_MC_DEBUG_MEMORY, mc_memory_debug);
647 }
648
Russell King7d0c6e72016-01-21 15:20:45 +0000649 /* enable module-level clock gating */
650 etnaviv_gpu_enable_mlcg(gpu);
651
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100652 /*
653 * Update GPU AXI cache atttribute to "cacheable, no allocate".
654 * This is necessary to prevent the iMX6 SoC locking up.
655 */
656 gpu_write(gpu, VIVS_HI_AXI_CONFIG,
657 VIVS_HI_AXI_CONFIG_AWCACHE(2) |
658 VIVS_HI_AXI_CONFIG_ARCACHE(2));
659
660 /* GC2000 rev 5108 needs a special bus config */
Russell King472f79d2016-01-24 17:35:59 +0000661 if (etnaviv_is_model_rev(gpu, GC2000, 0x5108)) {
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100662 u32 bus_config = gpu_read(gpu, VIVS_MC_BUS_CONFIG);
663 bus_config &= ~(VIVS_MC_BUS_CONFIG_FE_BUS_CONFIG__MASK |
664 VIVS_MC_BUS_CONFIG_TX_BUS_CONFIG__MASK);
665 bus_config |= VIVS_MC_BUS_CONFIG_FE_BUS_CONFIG(1) |
666 VIVS_MC_BUS_CONFIG_TX_BUS_CONFIG(0);
667 gpu_write(gpu, VIVS_MC_BUS_CONFIG, bus_config);
668 }
669
Lucas Stachc997c3d2018-01-22 16:18:16 +0100670 if (gpu->sec_mode == ETNA_SEC_KERNEL) {
671 u32 val = gpu_read(gpu, VIVS_MMUv2_AHB_CONTROL);
672 val |= VIVS_MMUv2_AHB_CONTROL_NONSEC_ACCESS;
673 gpu_write(gpu, VIVS_MMUv2_AHB_CONTROL, val);
674 }
675
Wladimir J. van der Laane17a0de2016-12-15 13:11:30 +0100676 /* setup the pulse eater */
677 etnaviv_gpu_setup_pulse_eater(gpu);
678
Lucas Stach99f861b2016-08-16 11:48:49 +0200679 /* setup the MMU */
Lucas Stache095c8f2016-08-16 11:54:51 +0200680 etnaviv_iommu_restore(gpu);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100681
682 /* Start command processor */
683 prefetch = etnaviv_buffer_init(gpu);
684
685 gpu_write(gpu, VIVS_HI_INTR_ENBL, ~0U);
Lucas Stach2f9225d2017-11-24 16:56:37 +0100686 etnaviv_gpu_start_fe(gpu, etnaviv_cmdbuf_get_va(&gpu->buffer),
Lucas Stach229855b2016-08-17 15:27:52 +0200687 prefetch);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100688}
689
690int etnaviv_gpu_init(struct etnaviv_gpu *gpu)
691{
692 int ret, i;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100693
694 ret = pm_runtime_get_sync(gpu->dev);
Lucas Stach1409df02016-06-17 12:29:02 +0200695 if (ret < 0) {
696 dev_err(gpu->dev, "Failed to enable GPU power domain\n");
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100697 return ret;
Lucas Stach1409df02016-06-17 12:29:02 +0200698 }
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100699
700 etnaviv_hw_identify(gpu);
701
702 if (gpu->identity.model == 0) {
703 dev_err(gpu->dev, "Unknown GPU model\n");
Russell Kingf6427762016-01-24 17:32:13 +0000704 ret = -ENXIO;
705 goto fail;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100706 }
707
Russell Kingb98c6682016-01-21 15:19:59 +0000708 /* Exclude VG cores with FE2.0 */
709 if (gpu->identity.features & chipFeatures_PIPE_VG &&
710 gpu->identity.features & chipFeatures_FE20) {
711 dev_info(gpu->dev, "Ignoring GPU with VG and FE2.0\n");
712 ret = -ENXIO;
713 goto fail;
714 }
715
Lucas Stach2144fff2016-04-21 13:52:38 +0200716 /*
717 * Set the GPU linear window to be at the end of the DMA window, where
718 * the CMA area is likely to reside. This ensures that we are able to
719 * map the command buffers while having the linear window overlap as
720 * much RAM as possible, so we can optimize mappings for other buffers.
721 *
722 * For 3D cores only do this if MC2.0 is present, as with MC1.0 it leads
723 * to different views of the memory on the individual engines.
724 */
725 if (!(gpu->identity.features & chipFeatures_PIPE_3D) ||
726 (gpu->identity.minor_features0 & chipMinorFeatures0_MC20)) {
727 u32 dma_mask = (u32)dma_get_required_mask(gpu->dev);
728 if (dma_mask < PHYS_OFFSET + SZ_2G)
729 gpu->memory_base = PHYS_OFFSET;
730 else
731 gpu->memory_base = dma_mask - SZ_2G + 1;
Lucas Stach1db01272016-12-02 12:19:16 +0100732 } else if (PHYS_OFFSET >= SZ_2G) {
733 dev_info(gpu->dev, "Need to move linear window on MC1.0, disabling TS\n");
734 gpu->memory_base = PHYS_OFFSET;
735 gpu->identity.features &= ~chipFeatures_FAST_CLEAR;
Lucas Stach2144fff2016-04-21 13:52:38 +0200736 }
737
Lucas Stachc997c3d2018-01-22 16:18:16 +0100738 /*
739 * On cores with security features supported, we claim control over the
740 * security states.
741 */
742 if ((gpu->identity.minor_features7 & chipMinorFeatures7_BIT_SECURITY) &&
743 (gpu->identity.minor_features10 & chipMinorFeatures10_SECURITY_AHB))
744 gpu->sec_mode = ETNA_SEC_KERNEL;
745
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100746 ret = etnaviv_hw_reset(gpu);
Lucas Stach1409df02016-06-17 12:29:02 +0200747 if (ret) {
748 dev_err(gpu->dev, "GPU reset failed\n");
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100749 goto fail;
Lucas Stach1409df02016-06-17 12:29:02 +0200750 }
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100751
Lucas Stachdd34bb92016-08-16 12:09:08 +0200752 gpu->mmu = etnaviv_iommu_new(gpu);
753 if (IS_ERR(gpu->mmu)) {
Lucas Stach1409df02016-06-17 12:29:02 +0200754 dev_err(gpu->dev, "Failed to instantiate GPU IOMMU\n");
Lucas Stachdd34bb92016-08-16 12:09:08 +0200755 ret = PTR_ERR(gpu->mmu);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100756 goto fail;
757 }
758
Lucas Stache66774d2017-01-16 17:29:57 +0100759 gpu->cmdbuf_suballoc = etnaviv_cmdbuf_suballoc_new(gpu);
760 if (IS_ERR(gpu->cmdbuf_suballoc)) {
761 dev_err(gpu->dev, "Failed to create cmdbuf suballocator\n");
762 ret = PTR_ERR(gpu->cmdbuf_suballoc);
763 goto fail;
764 }
765
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100766 /* Create buffer: */
Lucas Stach2f9225d2017-11-24 16:56:37 +0100767 ret = etnaviv_cmdbuf_init(gpu->cmdbuf_suballoc, &gpu->buffer,
768 PAGE_SIZE);
769 if (ret) {
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100770 dev_err(gpu->dev, "could not create command buffer\n");
Lucas Stach45d16a62016-01-25 12:41:05 +0100771 goto destroy_iommu;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100772 }
Lucas Stachacfee0e2016-08-17 16:19:53 +0200773
774 if (gpu->mmu->version == ETNAVIV_IOMMU_V1 &&
Lucas Stach2f9225d2017-11-24 16:56:37 +0100775 etnaviv_cmdbuf_get_va(&gpu->buffer) > 0x80000000) {
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100776 ret = -EINVAL;
777 dev_err(gpu->dev,
778 "command buffer outside valid memory window\n");
779 goto free_buffer;
780 }
781
782 /* Setup event management */
783 spin_lock_init(&gpu->event_spinlock);
784 init_completion(&gpu->event_free);
Christian Gmeiner355502e2017-09-24 15:15:19 +0200785 bitmap_zero(gpu->event_bitmap, ETNA_NR_EVENTS);
786 for (i = 0; i < ARRAY_SIZE(gpu->event); i++)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100787 complete(&gpu->event_free);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100788
789 /* Now program the hardware */
790 mutex_lock(&gpu->lock);
791 etnaviv_gpu_hw_init(gpu);
Russell Kingf6086312016-01-21 15:20:19 +0000792 gpu->exec_state = -1;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100793 mutex_unlock(&gpu->lock);
794
795 pm_runtime_mark_last_busy(gpu->dev);
796 pm_runtime_put_autosuspend(gpu->dev);
797
798 return 0;
799
800free_buffer:
Lucas Stach2f9225d2017-11-24 16:56:37 +0100801 etnaviv_cmdbuf_free(&gpu->buffer);
Lucas Stach5b147462018-07-23 14:27:23 +0200802 gpu->buffer.suballoc = NULL;
Lucas Stach45d16a62016-01-25 12:41:05 +0100803destroy_iommu:
804 etnaviv_iommu_destroy(gpu->mmu);
805 gpu->mmu = NULL;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100806fail:
807 pm_runtime_mark_last_busy(gpu->dev);
808 pm_runtime_put_autosuspend(gpu->dev);
809
810 return ret;
811}
812
813#ifdef CONFIG_DEBUG_FS
814struct dma_debug {
815 u32 address[2];
816 u32 state[2];
817};
818
819static void verify_dma(struct etnaviv_gpu *gpu, struct dma_debug *debug)
820{
821 u32 i;
822
823 debug->address[0] = gpu_read(gpu, VIVS_FE_DMA_ADDRESS);
824 debug->state[0] = gpu_read(gpu, VIVS_FE_DMA_DEBUG_STATE);
825
826 for (i = 0; i < 500; i++) {
827 debug->address[1] = gpu_read(gpu, VIVS_FE_DMA_ADDRESS);
828 debug->state[1] = gpu_read(gpu, VIVS_FE_DMA_DEBUG_STATE);
829
830 if (debug->address[0] != debug->address[1])
831 break;
832
833 if (debug->state[0] != debug->state[1])
834 break;
835 }
836}
837
838int etnaviv_gpu_debugfs(struct etnaviv_gpu *gpu, struct seq_file *m)
839{
840 struct dma_debug debug;
841 u32 dma_lo, dma_hi, axi, idle;
842 int ret;
843
844 seq_printf(m, "%s Status:\n", dev_name(gpu->dev));
845
846 ret = pm_runtime_get_sync(gpu->dev);
847 if (ret < 0)
848 return ret;
849
850 dma_lo = gpu_read(gpu, VIVS_FE_DMA_LOW);
851 dma_hi = gpu_read(gpu, VIVS_FE_DMA_HIGH);
852 axi = gpu_read(gpu, VIVS_HI_AXI_STATUS);
853 idle = gpu_read(gpu, VIVS_HI_IDLE_STATE);
854
855 verify_dma(gpu, &debug);
856
857 seq_puts(m, "\tfeatures\n");
Lucas Stach3d9fc642018-01-04 13:50:14 +0100858 seq_printf(m, "\t major_features: 0x%08x\n",
859 gpu->identity.features);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100860 seq_printf(m, "\t minor_features0: 0x%08x\n",
861 gpu->identity.minor_features0);
862 seq_printf(m, "\t minor_features1: 0x%08x\n",
863 gpu->identity.minor_features1);
864 seq_printf(m, "\t minor_features2: 0x%08x\n",
865 gpu->identity.minor_features2);
866 seq_printf(m, "\t minor_features3: 0x%08x\n",
867 gpu->identity.minor_features3);
Russell King602eb482016-01-24 17:36:04 +0000868 seq_printf(m, "\t minor_features4: 0x%08x\n",
869 gpu->identity.minor_features4);
870 seq_printf(m, "\t minor_features5: 0x%08x\n",
871 gpu->identity.minor_features5);
Lucas Stach0538aaf2018-01-22 15:56:11 +0100872 seq_printf(m, "\t minor_features6: 0x%08x\n",
873 gpu->identity.minor_features6);
874 seq_printf(m, "\t minor_features7: 0x%08x\n",
875 gpu->identity.minor_features7);
876 seq_printf(m, "\t minor_features8: 0x%08x\n",
877 gpu->identity.minor_features8);
878 seq_printf(m, "\t minor_features9: 0x%08x\n",
879 gpu->identity.minor_features9);
880 seq_printf(m, "\t minor_features10: 0x%08x\n",
881 gpu->identity.minor_features10);
882 seq_printf(m, "\t minor_features11: 0x%08x\n",
883 gpu->identity.minor_features11);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100884
885 seq_puts(m, "\tspecs\n");
886 seq_printf(m, "\t stream_count: %d\n",
887 gpu->identity.stream_count);
888 seq_printf(m, "\t register_max: %d\n",
889 gpu->identity.register_max);
890 seq_printf(m, "\t thread_count: %d\n",
891 gpu->identity.thread_count);
892 seq_printf(m, "\t vertex_cache_size: %d\n",
893 gpu->identity.vertex_cache_size);
894 seq_printf(m, "\t shader_core_count: %d\n",
895 gpu->identity.shader_core_count);
896 seq_printf(m, "\t pixel_pipes: %d\n",
897 gpu->identity.pixel_pipes);
898 seq_printf(m, "\t vertex_output_buffer_size: %d\n",
899 gpu->identity.vertex_output_buffer_size);
900 seq_printf(m, "\t buffer_size: %d\n",
901 gpu->identity.buffer_size);
902 seq_printf(m, "\t instruction_count: %d\n",
903 gpu->identity.instruction_count);
904 seq_printf(m, "\t num_constants: %d\n",
905 gpu->identity.num_constants);
Russell King602eb482016-01-24 17:36:04 +0000906 seq_printf(m, "\t varyings_count: %d\n",
907 gpu->identity.varyings_count);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100908
909 seq_printf(m, "\taxi: 0x%08x\n", axi);
910 seq_printf(m, "\tidle: 0x%08x\n", idle);
911 idle |= ~gpu->idle_mask & ~VIVS_HI_IDLE_STATE_AXI_LP;
912 if ((idle & VIVS_HI_IDLE_STATE_FE) == 0)
913 seq_puts(m, "\t FE is not idle\n");
914 if ((idle & VIVS_HI_IDLE_STATE_DE) == 0)
915 seq_puts(m, "\t DE is not idle\n");
916 if ((idle & VIVS_HI_IDLE_STATE_PE) == 0)
917 seq_puts(m, "\t PE is not idle\n");
918 if ((idle & VIVS_HI_IDLE_STATE_SH) == 0)
919 seq_puts(m, "\t SH is not idle\n");
920 if ((idle & VIVS_HI_IDLE_STATE_PA) == 0)
921 seq_puts(m, "\t PA is not idle\n");
922 if ((idle & VIVS_HI_IDLE_STATE_SE) == 0)
923 seq_puts(m, "\t SE is not idle\n");
924 if ((idle & VIVS_HI_IDLE_STATE_RA) == 0)
925 seq_puts(m, "\t RA is not idle\n");
926 if ((idle & VIVS_HI_IDLE_STATE_TX) == 0)
927 seq_puts(m, "\t TX is not idle\n");
928 if ((idle & VIVS_HI_IDLE_STATE_VG) == 0)
929 seq_puts(m, "\t VG is not idle\n");
930 if ((idle & VIVS_HI_IDLE_STATE_IM) == 0)
931 seq_puts(m, "\t IM is not idle\n");
932 if ((idle & VIVS_HI_IDLE_STATE_FP) == 0)
933 seq_puts(m, "\t FP is not idle\n");
934 if ((idle & VIVS_HI_IDLE_STATE_TS) == 0)
935 seq_puts(m, "\t TS is not idle\n");
936 if (idle & VIVS_HI_IDLE_STATE_AXI_LP)
937 seq_puts(m, "\t AXI low power mode\n");
938
939 if (gpu->identity.features & chipFeatures_DEBUG_MODE) {
940 u32 read0 = gpu_read(gpu, VIVS_MC_DEBUG_READ0);
941 u32 read1 = gpu_read(gpu, VIVS_MC_DEBUG_READ1);
942 u32 write = gpu_read(gpu, VIVS_MC_DEBUG_WRITE);
943
944 seq_puts(m, "\tMC\n");
945 seq_printf(m, "\t read0: 0x%08x\n", read0);
946 seq_printf(m, "\t read1: 0x%08x\n", read1);
947 seq_printf(m, "\t write: 0x%08x\n", write);
948 }
949
950 seq_puts(m, "\tDMA ");
951
952 if (debug.address[0] == debug.address[1] &&
953 debug.state[0] == debug.state[1]) {
954 seq_puts(m, "seems to be stuck\n");
955 } else if (debug.address[0] == debug.address[1]) {
Masanari Iidac01e0152016-04-20 00:27:33 +0900956 seq_puts(m, "address is constant\n");
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100957 } else {
Masanari Iidac01e0152016-04-20 00:27:33 +0900958 seq_puts(m, "is running\n");
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100959 }
960
961 seq_printf(m, "\t address 0: 0x%08x\n", debug.address[0]);
962 seq_printf(m, "\t address 1: 0x%08x\n", debug.address[1]);
963 seq_printf(m, "\t state 0: 0x%08x\n", debug.state[0]);
964 seq_printf(m, "\t state 1: 0x%08x\n", debug.state[1]);
965 seq_printf(m, "\t last fetch 64 bit word: 0x%08x 0x%08x\n",
966 dma_lo, dma_hi);
967
968 ret = 0;
969
970 pm_runtime_mark_last_busy(gpu->dev);
971 pm_runtime_put_autosuspend(gpu->dev);
972
973 return ret;
974}
975#endif
976
Lucas Stach6d7a20c2017-12-06 10:53:27 +0100977void etnaviv_gpu_recover_hang(struct etnaviv_gpu *gpu)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100978{
Christian Gmeiner355502e2017-09-24 15:15:19 +0200979 unsigned int i = 0;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100980
Lucas Stach6d7a20c2017-12-06 10:53:27 +0100981 dev_err(gpu->dev, "recover hung GPU!\n");
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100982
983 if (pm_runtime_get_sync(gpu->dev) < 0)
984 return;
985
986 mutex_lock(&gpu->lock);
987
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100988 etnaviv_hw_reset(gpu);
989
990 /* complete all events, the GPU won't do it after the reset */
Lucas Stach5a231442018-09-12 12:55:42 +0200991 spin_lock(&gpu->event_spinlock);
Lucas Stach6d7a20c2017-12-06 10:53:27 +0100992 for_each_set_bit_from(i, gpu->event_bitmap, ETNA_NR_EVENTS)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100993 complete(&gpu->event_free);
Christian Gmeiner355502e2017-09-24 15:15:19 +0200994 bitmap_zero(gpu->event_bitmap, ETNA_NR_EVENTS);
Lucas Stach5a231442018-09-12 12:55:42 +0200995 spin_unlock(&gpu->event_spinlock);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100996
997 etnaviv_gpu_hw_init(gpu);
Russell Kingf6086312016-01-21 15:20:19 +0000998 gpu->exec_state = -1;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +0100999
1000 mutex_unlock(&gpu->lock);
1001 pm_runtime_mark_last_busy(gpu->dev);
1002 pm_runtime_put_autosuspend(gpu->dev);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001003}
1004
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001005/* fence object management */
1006struct etnaviv_fence {
1007 struct etnaviv_gpu *gpu;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001008 struct dma_fence base;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001009};
1010
Chris Wilsonf54d1862016-10-25 13:00:45 +01001011static inline struct etnaviv_fence *to_etnaviv_fence(struct dma_fence *fence)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001012{
1013 return container_of(fence, struct etnaviv_fence, base);
1014}
1015
Chris Wilsonf54d1862016-10-25 13:00:45 +01001016static const char *etnaviv_fence_get_driver_name(struct dma_fence *fence)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001017{
1018 return "etnaviv";
1019}
1020
Chris Wilsonf54d1862016-10-25 13:00:45 +01001021static const char *etnaviv_fence_get_timeline_name(struct dma_fence *fence)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001022{
1023 struct etnaviv_fence *f = to_etnaviv_fence(fence);
1024
1025 return dev_name(f->gpu->dev);
1026}
1027
Chris Wilsonf54d1862016-10-25 13:00:45 +01001028static bool etnaviv_fence_signaled(struct dma_fence *fence)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001029{
1030 struct etnaviv_fence *f = to_etnaviv_fence(fence);
1031
Lucas Stach3283ee72018-11-05 18:12:39 +01001032 return (s32)(f->gpu->completed_fence - f->base.seqno) >= 0;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001033}
1034
Chris Wilsonf54d1862016-10-25 13:00:45 +01001035static void etnaviv_fence_release(struct dma_fence *fence)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001036{
1037 struct etnaviv_fence *f = to_etnaviv_fence(fence);
1038
1039 kfree_rcu(f, base.rcu);
1040}
1041
Chris Wilsonf54d1862016-10-25 13:00:45 +01001042static const struct dma_fence_ops etnaviv_fence_ops = {
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001043 .get_driver_name = etnaviv_fence_get_driver_name,
1044 .get_timeline_name = etnaviv_fence_get_timeline_name,
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001045 .signaled = etnaviv_fence_signaled,
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001046 .release = etnaviv_fence_release,
1047};
1048
Chris Wilsonf54d1862016-10-25 13:00:45 +01001049static struct dma_fence *etnaviv_gpu_fence_alloc(struct etnaviv_gpu *gpu)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001050{
1051 struct etnaviv_fence *f;
1052
Lucas Stachb27734c22017-03-22 12:23:43 +01001053 /*
1054 * GPU lock must already be held, otherwise fence completion order might
1055 * not match the seqno order assigned here.
1056 */
1057 lockdep_assert_held(&gpu->lock);
1058
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001059 f = kzalloc(sizeof(*f), GFP_KERNEL);
1060 if (!f)
1061 return NULL;
1062
1063 f->gpu = gpu;
1064
Chris Wilsonf54d1862016-10-25 13:00:45 +01001065 dma_fence_init(&f->base, &etnaviv_fence_ops, &gpu->fence_spinlock,
1066 gpu->fence_context, ++gpu->next_fence);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001067
1068 return &f->base;
1069}
1070
Lucas Stach3283ee72018-11-05 18:12:39 +01001071/* returns true if fence a comes after fence b */
1072static inline bool fence_after(u32 a, u32 b)
1073{
1074 return (s32)(a - b) > 0;
1075}
1076
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001077/*
1078 * event management:
1079 */
1080
Christian Gmeiner95a428c2017-09-24 15:15:20 +02001081static int event_alloc(struct etnaviv_gpu *gpu, unsigned nr_events,
1082 unsigned int *events)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001083{
Lucas Stach5a231442018-09-12 12:55:42 +02001084 unsigned long timeout = msecs_to_jiffies(10 * 10000);
Christian Gmeiner95a428c2017-09-24 15:15:20 +02001085 unsigned i, acquired = 0;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001086
Christian Gmeiner95a428c2017-09-24 15:15:20 +02001087 for (i = 0; i < nr_events; i++) {
1088 unsigned long ret;
1089
1090 ret = wait_for_completion_timeout(&gpu->event_free, timeout);
1091
1092 if (!ret) {
1093 dev_err(gpu->dev, "wait_for_completion_timeout failed");
1094 goto out;
1095 }
1096
1097 acquired++;
1098 timeout = ret;
1099 }
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001100
Lucas Stach5a231442018-09-12 12:55:42 +02001101 spin_lock(&gpu->event_spinlock);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001102
Christian Gmeiner95a428c2017-09-24 15:15:20 +02001103 for (i = 0; i < nr_events; i++) {
1104 int event = find_first_zero_bit(gpu->event_bitmap, ETNA_NR_EVENTS);
1105
1106 events[i] = event;
Christian Gmeiner547d3402017-09-24 15:15:29 +02001107 memset(&gpu->event[event], 0, sizeof(struct etnaviv_event));
Christian Gmeiner355502e2017-09-24 15:15:19 +02001108 set_bit(event, gpu->event_bitmap);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001109 }
1110
Lucas Stach5a231442018-09-12 12:55:42 +02001111 spin_unlock(&gpu->event_spinlock);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001112
Christian Gmeiner95a428c2017-09-24 15:15:20 +02001113 return 0;
1114
1115out:
1116 for (i = 0; i < acquired; i++)
1117 complete(&gpu->event_free);
1118
1119 return -EBUSY;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001120}
1121
1122static void event_free(struct etnaviv_gpu *gpu, unsigned int event)
1123{
Christian Gmeiner355502e2017-09-24 15:15:19 +02001124 if (!test_bit(event, gpu->event_bitmap)) {
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001125 dev_warn(gpu->dev, "event %u is already marked as free",
1126 event);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001127 } else {
Christian Gmeiner355502e2017-09-24 15:15:19 +02001128 clear_bit(event, gpu->event_bitmap);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001129 complete(&gpu->event_free);
1130 }
1131}
1132
1133/*
1134 * Cmdstream submission/retirement:
1135 */
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001136int etnaviv_gpu_wait_fence_interruptible(struct etnaviv_gpu *gpu,
Lucas Stach8bc4d882017-11-29 14:49:04 +01001137 u32 id, struct timespec *timeout)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001138{
Lucas Stach8bc4d882017-11-29 14:49:04 +01001139 struct dma_fence *fence;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001140 int ret;
1141
Lucas Stach8bc4d882017-11-29 14:49:04 +01001142 /*
Lucas Stache93b6de2017-12-04 18:41:58 +01001143 * Look up the fence and take a reference. We might still find a fence
Lucas Stach8bc4d882017-11-29 14:49:04 +01001144 * whose refcount has already dropped to zero. dma_fence_get_rcu
1145 * pretends we didn't find a fence in that case.
1146 */
Lucas Stache93b6de2017-12-04 18:41:58 +01001147 rcu_read_lock();
Lucas Stach8bc4d882017-11-29 14:49:04 +01001148 fence = idr_find(&gpu->fence_idr, id);
1149 if (fence)
1150 fence = dma_fence_get_rcu(fence);
Lucas Stache93b6de2017-12-04 18:41:58 +01001151 rcu_read_unlock();
Lucas Stach8bc4d882017-11-29 14:49:04 +01001152
1153 if (!fence)
1154 return 0;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001155
1156 if (!timeout) {
1157 /* No timeout was requested: just test for completion */
Lucas Stach8bc4d882017-11-29 14:49:04 +01001158 ret = dma_fence_is_signaled(fence) ? 0 : -EBUSY;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001159 } else {
1160 unsigned long remaining = etnaviv_timeout_to_jiffies(timeout);
1161
Lucas Stach8bc4d882017-11-29 14:49:04 +01001162 ret = dma_fence_wait_timeout(fence, true, remaining);
1163 if (ret == 0)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001164 ret = -ETIMEDOUT;
Lucas Stach8bc4d882017-11-29 14:49:04 +01001165 else if (ret != -ERESTARTSYS)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001166 ret = 0;
Lucas Stach8bc4d882017-11-29 14:49:04 +01001167
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001168 }
1169
Lucas Stach8bc4d882017-11-29 14:49:04 +01001170 dma_fence_put(fence);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001171 return ret;
1172}
1173
1174/*
1175 * Wait for an object to become inactive. This, on it's own, is not race
Lucas Stache93b6de2017-12-04 18:41:58 +01001176 * free: the object is moved by the scheduler off the active list, and
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001177 * then the iova is put. Moreover, the object could be re-submitted just
1178 * after we notice that it's become inactive.
1179 *
1180 * Although the retirement happens under the gpu lock, we don't want to hold
1181 * that lock in this function while waiting.
1182 */
1183int etnaviv_gpu_wait_obj_inactive(struct etnaviv_gpu *gpu,
1184 struct etnaviv_gem_object *etnaviv_obj, struct timespec *timeout)
1185{
1186 unsigned long remaining;
1187 long ret;
1188
1189 if (!timeout)
1190 return !is_active(etnaviv_obj) ? 0 : -EBUSY;
1191
1192 remaining = etnaviv_timeout_to_jiffies(timeout);
1193
1194 ret = wait_event_interruptible_timeout(gpu->fence_event,
1195 !is_active(etnaviv_obj),
1196 remaining);
Lucas Stachfa67ac82017-11-17 16:35:32 +01001197 if (ret > 0)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001198 return 0;
Lucas Stachfa67ac82017-11-17 16:35:32 +01001199 else if (ret == -ERESTARTSYS)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001200 return -ERESTARTSYS;
Lucas Stachfa67ac82017-11-17 16:35:32 +01001201 else
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001202 return -ETIMEDOUT;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001203}
1204
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001205static void sync_point_perfmon_sample(struct etnaviv_gpu *gpu,
1206 struct etnaviv_event *event, unsigned int flags)
1207{
Lucas Stachef146c002017-11-24 12:02:38 +01001208 const struct etnaviv_gem_submit *submit = event->submit;
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001209 unsigned int i;
1210
Lucas Stachef146c002017-11-24 12:02:38 +01001211 for (i = 0; i < submit->nr_pmrs; i++) {
1212 const struct etnaviv_perfmon_request *pmr = submit->pmrs + i;
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001213
1214 if (pmr->flags == flags)
Lucas Stach7a9c0fe2017-11-24 15:19:16 +01001215 etnaviv_perfmon_process(gpu, pmr, submit->exec_state);
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001216 }
1217}
1218
1219static void sync_point_perfmon_sample_pre(struct etnaviv_gpu *gpu,
1220 struct etnaviv_event *event)
1221{
Christian Gmeiner2c8b0c52017-09-24 15:15:39 +02001222 u32 val;
1223
1224 /* disable clock gating */
1225 val = gpu_read(gpu, VIVS_PM_POWER_CONTROLS);
1226 val &= ~VIVS_PM_POWER_CONTROLS_ENABLE_MODULE_CLOCK_GATING;
1227 gpu_write(gpu, VIVS_PM_POWER_CONTROLS, val);
1228
Christian Gmeiner04a7d182017-09-24 15:15:42 +02001229 /* enable debug register */
1230 val = gpu_read(gpu, VIVS_HI_CLOCK_CONTROL);
1231 val &= ~VIVS_HI_CLOCK_CONTROL_DISABLE_DEBUG_REGISTERS;
1232 gpu_write(gpu, VIVS_HI_CLOCK_CONTROL, val);
1233
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001234 sync_point_perfmon_sample(gpu, event, ETNA_PM_PROCESS_PRE);
1235}
1236
1237static void sync_point_perfmon_sample_post(struct etnaviv_gpu *gpu,
1238 struct etnaviv_event *event)
1239{
Lucas Stachef146c002017-11-24 12:02:38 +01001240 const struct etnaviv_gem_submit *submit = event->submit;
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001241 unsigned int i;
Christian Gmeiner2c8b0c52017-09-24 15:15:39 +02001242 u32 val;
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001243
1244 sync_point_perfmon_sample(gpu, event, ETNA_PM_PROCESS_POST);
1245
Lucas Stachef146c002017-11-24 12:02:38 +01001246 for (i = 0; i < submit->nr_pmrs; i++) {
1247 const struct etnaviv_perfmon_request *pmr = submit->pmrs + i;
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001248
1249 *pmr->bo_vma = pmr->sequence;
1250 }
Christian Gmeiner2c8b0c52017-09-24 15:15:39 +02001251
Christian Gmeiner04a7d182017-09-24 15:15:42 +02001252 /* disable debug register */
1253 val = gpu_read(gpu, VIVS_HI_CLOCK_CONTROL);
1254 val |= VIVS_HI_CLOCK_CONTROL_DISABLE_DEBUG_REGISTERS;
1255 gpu_write(gpu, VIVS_HI_CLOCK_CONTROL, val);
1256
Christian Gmeiner2c8b0c52017-09-24 15:15:39 +02001257 /* enable clock gating */
1258 val = gpu_read(gpu, VIVS_PM_POWER_CONTROLS);
1259 val |= VIVS_PM_POWER_CONTROLS_ENABLE_MODULE_CLOCK_GATING;
1260 gpu_write(gpu, VIVS_PM_POWER_CONTROLS, val);
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001261}
1262
1263
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001264/* add bo's to gpu's ring, and kick gpu: */
Lucas Stache93b6de2017-12-04 18:41:58 +01001265struct dma_fence *etnaviv_gpu_submit(struct etnaviv_gem_submit *submit)
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001266{
Lucas Stache93b6de2017-12-04 18:41:58 +01001267 struct etnaviv_gpu *gpu = submit->gpu;
1268 struct dma_fence *gpu_fence;
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001269 unsigned int i, nr_events = 1, event[3];
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001270 int ret;
1271
Lucas Stach6d7a20c2017-12-06 10:53:27 +01001272 if (!submit->runtime_resumed) {
1273 ret = pm_runtime_get_sync(gpu->dev);
1274 if (ret < 0)
1275 return NULL;
1276 submit->runtime_resumed = true;
1277 }
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001278
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001279 /*
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001280 * if there are performance monitor requests we need to have
1281 * - a sync point to re-configure gpu and process ETNA_PM_PROCESS_PRE
1282 * requests.
1283 * - a sync point to re-configure gpu, process ETNA_PM_PROCESS_POST requests
1284 * and update the sequence number for userspace.
1285 */
Lucas Stachef146c002017-11-24 12:02:38 +01001286 if (submit->nr_pmrs)
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001287 nr_events = 3;
1288
1289 ret = event_alloc(gpu, nr_events, event);
Christian Gmeiner95a428c2017-09-24 15:15:20 +02001290 if (ret) {
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001291 DRM_ERROR("no free events\n");
Lucas Stache93b6de2017-12-04 18:41:58 +01001292 return NULL;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001293 }
1294
Lucas Stachf3cd1b02017-03-22 12:07:23 +01001295 mutex_lock(&gpu->lock);
1296
Lucas Stache93b6de2017-12-04 18:41:58 +01001297 gpu_fence = etnaviv_gpu_fence_alloc(gpu);
1298 if (!gpu_fence) {
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001299 for (i = 0; i < nr_events; i++)
1300 event_free(gpu, event[i]);
1301
Wei Yongjun45abdf32017-04-12 00:31:16 +00001302 goto out_unlock;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001303 }
1304
Lucas Stachef146c002017-11-24 12:02:38 +01001305 if (submit->nr_pmrs) {
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001306 gpu->event[event[1]].sync_point = &sync_point_perfmon_sample_pre;
Lucas Stachef146c002017-11-24 12:02:38 +01001307 kref_get(&submit->refcount);
1308 gpu->event[event[1]].submit = submit;
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001309 etnaviv_sync_point_queue(gpu, event[1]);
1310 }
1311
Lucas Stache93b6de2017-12-04 18:41:58 +01001312 gpu->event[event[0]].fence = gpu_fence;
Lucas Stach6d7a20c2017-12-06 10:53:27 +01001313 submit->cmdbuf.user_size = submit->cmdbuf.size - 8;
Lucas Stach2f9225d2017-11-24 16:56:37 +01001314 etnaviv_buffer_queue(gpu, submit->exec_state, event[0],
1315 &submit->cmdbuf);
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001316
Lucas Stachef146c002017-11-24 12:02:38 +01001317 if (submit->nr_pmrs) {
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001318 gpu->event[event[2]].sync_point = &sync_point_perfmon_sample_post;
Lucas Stachef146c002017-11-24 12:02:38 +01001319 kref_get(&submit->refcount);
1320 gpu->event[event[2]].submit = submit;
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001321 etnaviv_sync_point_queue(gpu, event[2]);
1322 }
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001323
Wei Yongjun45abdf32017-04-12 00:31:16 +00001324out_unlock:
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001325 mutex_unlock(&gpu->lock);
1326
Lucas Stache93b6de2017-12-04 18:41:58 +01001327 return gpu_fence;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001328}
1329
Christian Gmeiner357713c2017-09-24 15:15:28 +02001330static void sync_point_worker(struct work_struct *work)
1331{
1332 struct etnaviv_gpu *gpu = container_of(work, struct etnaviv_gpu,
1333 sync_point_work);
Lucas Stachb9a48aa2017-10-19 13:48:40 +02001334 struct etnaviv_event *event = &gpu->event[gpu->sync_point_event];
1335 u32 addr = gpu_read(gpu, VIVS_FE_DMA_ADDRESS);
Christian Gmeiner357713c2017-09-24 15:15:28 +02001336
Lucas Stachb9a48aa2017-10-19 13:48:40 +02001337 event->sync_point(gpu, event);
Lucas Stachef146c002017-11-24 12:02:38 +01001338 etnaviv_submit_put(event->submit);
Christian Gmeiner357713c2017-09-24 15:15:28 +02001339 event_free(gpu, gpu->sync_point_event);
Lucas Stachb9a48aa2017-10-19 13:48:40 +02001340
1341 /* restart FE last to avoid GPU and IRQ racing against this worker */
1342 etnaviv_gpu_start_fe(gpu, addr + 2, 2);
Christian Gmeiner357713c2017-09-24 15:15:28 +02001343}
1344
Lucas Stach4df30002018-01-19 12:22:30 +01001345static void dump_mmu_fault(struct etnaviv_gpu *gpu)
1346{
Lucas Stachc997c3d2018-01-22 16:18:16 +01001347 u32 status_reg, status;
Lucas Stach4df30002018-01-19 12:22:30 +01001348 int i;
1349
Lucas Stachc997c3d2018-01-22 16:18:16 +01001350 if (gpu->sec_mode == ETNA_SEC_NONE)
1351 status_reg = VIVS_MMUv2_STATUS;
1352 else
1353 status_reg = VIVS_MMUv2_SEC_STATUS;
1354
1355 status = gpu_read(gpu, status_reg);
Lucas Stach4df30002018-01-19 12:22:30 +01001356 dev_err_ratelimited(gpu->dev, "MMU fault status 0x%08x\n", status);
1357
1358 for (i = 0; i < 4; i++) {
Lucas Stachc997c3d2018-01-22 16:18:16 +01001359 u32 address_reg;
1360
Lucas Stach4df30002018-01-19 12:22:30 +01001361 if (!(status & (VIVS_MMUv2_STATUS_EXCEPTION0__MASK << (i * 4))))
1362 continue;
1363
Lucas Stachc997c3d2018-01-22 16:18:16 +01001364 if (gpu->sec_mode == ETNA_SEC_NONE)
1365 address_reg = VIVS_MMUv2_EXCEPTION_ADDR(i);
1366 else
1367 address_reg = VIVS_MMUv2_SEC_EXCEPTION_ADDR;
1368
Lucas Stach4df30002018-01-19 12:22:30 +01001369 dev_err_ratelimited(gpu->dev, "MMU %d fault addr 0x%08x\n", i,
Lucas Stachc997c3d2018-01-22 16:18:16 +01001370 gpu_read(gpu, address_reg));
Lucas Stach4df30002018-01-19 12:22:30 +01001371 }
1372}
1373
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001374static irqreturn_t irq_handler(int irq, void *data)
1375{
1376 struct etnaviv_gpu *gpu = data;
1377 irqreturn_t ret = IRQ_NONE;
1378
1379 u32 intr = gpu_read(gpu, VIVS_HI_INTR_ACKNOWLEDGE);
1380
1381 if (intr != 0) {
1382 int event;
1383
1384 pm_runtime_mark_last_busy(gpu->dev);
1385
1386 dev_dbg(gpu->dev, "intr 0x%08x\n", intr);
1387
1388 if (intr & VIVS_HI_INTR_ACKNOWLEDGE_AXI_BUS_ERROR) {
1389 dev_err(gpu->dev, "AXI bus error\n");
1390 intr &= ~VIVS_HI_INTR_ACKNOWLEDGE_AXI_BUS_ERROR;
1391 }
1392
Lucas Stach128a9b12016-08-20 00:14:43 +02001393 if (intr & VIVS_HI_INTR_ACKNOWLEDGE_MMU_EXCEPTION) {
Lucas Stach4df30002018-01-19 12:22:30 +01001394 dump_mmu_fault(gpu);
Lucas Stach128a9b12016-08-20 00:14:43 +02001395 intr &= ~VIVS_HI_INTR_ACKNOWLEDGE_MMU_EXCEPTION;
1396 }
1397
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001398 while ((event = ffs(intr)) != 0) {
Chris Wilsonf54d1862016-10-25 13:00:45 +01001399 struct dma_fence *fence;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001400
1401 event -= 1;
1402
1403 intr &= ~(1 << event);
1404
1405 dev_dbg(gpu->dev, "event %u\n", event);
1406
Christian Gmeiner357713c2017-09-24 15:15:28 +02001407 if (gpu->event[event].sync_point) {
1408 gpu->sync_point_event = event;
Lucas Stacha7790d72017-11-17 17:43:37 +01001409 queue_work(gpu->wq, &gpu->sync_point_work);
Christian Gmeiner357713c2017-09-24 15:15:28 +02001410 }
1411
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001412 fence = gpu->event[event].fence;
Christian Gmeiner68dc0b22017-09-24 15:15:30 +02001413 if (!fence)
1414 continue;
1415
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001416 gpu->event[event].fence = NULL;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001417
1418 /*
1419 * Events can be processed out of order. Eg,
1420 * - allocate and queue event 0
1421 * - allocate event 1
1422 * - event 0 completes, we process it
1423 * - allocate and queue event 0
1424 * - event 1 and event 0 complete
1425 * we can end up processing event 0 first, then 1.
1426 */
1427 if (fence_after(fence->seqno, gpu->completed_fence))
1428 gpu->completed_fence = fence->seqno;
Lucas Stach8bc4d882017-11-29 14:49:04 +01001429 dma_fence_signal(fence);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001430
1431 event_free(gpu, event);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001432 }
1433
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001434 ret = IRQ_HANDLED;
1435 }
1436
1437 return ret;
1438}
1439
1440static int etnaviv_gpu_clk_enable(struct etnaviv_gpu *gpu)
1441{
1442 int ret;
1443
Lucas Stach65f037e2018-01-19 15:05:40 +01001444 if (gpu->clk_reg) {
1445 ret = clk_prepare_enable(gpu->clk_reg);
1446 if (ret)
1447 return ret;
1448 }
1449
Lucas Stach9c7310c2016-08-22 15:26:19 +02001450 if (gpu->clk_bus) {
1451 ret = clk_prepare_enable(gpu->clk_bus);
1452 if (ret)
1453 return ret;
1454 }
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001455
Lucas Stach9c7310c2016-08-22 15:26:19 +02001456 if (gpu->clk_core) {
1457 ret = clk_prepare_enable(gpu->clk_core);
1458 if (ret)
1459 goto disable_clk_bus;
1460 }
1461
1462 if (gpu->clk_shader) {
1463 ret = clk_prepare_enable(gpu->clk_shader);
1464 if (ret)
1465 goto disable_clk_core;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001466 }
1467
1468 return 0;
Lucas Stach9c7310c2016-08-22 15:26:19 +02001469
1470disable_clk_core:
1471 if (gpu->clk_core)
1472 clk_disable_unprepare(gpu->clk_core);
1473disable_clk_bus:
1474 if (gpu->clk_bus)
1475 clk_disable_unprepare(gpu->clk_bus);
1476
1477 return ret;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001478}
1479
1480static int etnaviv_gpu_clk_disable(struct etnaviv_gpu *gpu)
1481{
Lucas Stach9c7310c2016-08-22 15:26:19 +02001482 if (gpu->clk_shader)
1483 clk_disable_unprepare(gpu->clk_shader);
1484 if (gpu->clk_core)
1485 clk_disable_unprepare(gpu->clk_core);
1486 if (gpu->clk_bus)
1487 clk_disable_unprepare(gpu->clk_bus);
Lucas Stach65f037e2018-01-19 15:05:40 +01001488 if (gpu->clk_reg)
1489 clk_disable_unprepare(gpu->clk_reg);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001490
1491 return 0;
1492}
1493
Lucas Stachb88163e2016-08-17 15:16:57 +02001494int etnaviv_gpu_wait_idle(struct etnaviv_gpu *gpu, unsigned int timeout_ms)
1495{
1496 unsigned long timeout = jiffies + msecs_to_jiffies(timeout_ms);
1497
1498 do {
1499 u32 idle = gpu_read(gpu, VIVS_HI_IDLE_STATE);
1500
1501 if ((idle & gpu->idle_mask) == gpu->idle_mask)
1502 return 0;
1503
1504 if (time_is_before_jiffies(timeout)) {
1505 dev_warn(gpu->dev,
1506 "timed out waiting for idle: idle=0x%x\n",
1507 idle);
1508 return -ETIMEDOUT;
1509 }
1510
1511 udelay(5);
1512 } while (1);
1513}
1514
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001515static int etnaviv_gpu_hw_suspend(struct etnaviv_gpu *gpu)
1516{
Lucas Stach2f9225d2017-11-24 16:56:37 +01001517 if (gpu->buffer.suballoc) {
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001518 /* Replace the last WAIT with END */
Lucas Stach40c27bd2017-11-17 17:59:26 +01001519 mutex_lock(&gpu->lock);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001520 etnaviv_buffer_end(gpu);
Lucas Stach40c27bd2017-11-17 17:59:26 +01001521 mutex_unlock(&gpu->lock);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001522
1523 /*
1524 * We know that only the FE is busy here, this should
1525 * happen quickly (as the WAIT is only 200 cycles). If
1526 * we fail, just warn and continue.
1527 */
Lucas Stachb88163e2016-08-17 15:16:57 +02001528 etnaviv_gpu_wait_idle(gpu, 100);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001529 }
1530
1531 return etnaviv_gpu_clk_disable(gpu);
1532}
1533
1534#ifdef CONFIG_PM
1535static int etnaviv_gpu_hw_resume(struct etnaviv_gpu *gpu)
1536{
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001537 int ret;
1538
1539 ret = mutex_lock_killable(&gpu->lock);
1540 if (ret)
1541 return ret;
1542
Russell Kingbcdfb5e2017-03-12 19:00:59 +00001543 etnaviv_gpu_update_clock(gpu);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001544 etnaviv_gpu_hw_init(gpu);
1545
Russell Kingf6086312016-01-21 15:20:19 +00001546 gpu->exec_state = -1;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001547
1548 mutex_unlock(&gpu->lock);
1549
1550 return 0;
1551}
1552#endif
1553
Russell Kingbcdfb5e2017-03-12 19:00:59 +00001554static int
1555etnaviv_gpu_cooling_get_max_state(struct thermal_cooling_device *cdev,
1556 unsigned long *state)
1557{
1558 *state = 6;
1559
1560 return 0;
1561}
1562
1563static int
1564etnaviv_gpu_cooling_get_cur_state(struct thermal_cooling_device *cdev,
1565 unsigned long *state)
1566{
1567 struct etnaviv_gpu *gpu = cdev->devdata;
1568
1569 *state = gpu->freq_scale;
1570
1571 return 0;
1572}
1573
1574static int
1575etnaviv_gpu_cooling_set_cur_state(struct thermal_cooling_device *cdev,
1576 unsigned long state)
1577{
1578 struct etnaviv_gpu *gpu = cdev->devdata;
1579
1580 mutex_lock(&gpu->lock);
1581 gpu->freq_scale = state;
1582 if (!pm_runtime_suspended(gpu->dev))
1583 etnaviv_gpu_update_clock(gpu);
1584 mutex_unlock(&gpu->lock);
1585
1586 return 0;
1587}
1588
1589static struct thermal_cooling_device_ops cooling_ops = {
1590 .get_max_state = etnaviv_gpu_cooling_get_max_state,
1591 .get_cur_state = etnaviv_gpu_cooling_get_cur_state,
1592 .set_cur_state = etnaviv_gpu_cooling_set_cur_state,
1593};
1594
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001595static int etnaviv_gpu_bind(struct device *dev, struct device *master,
1596 void *data)
1597{
1598 struct drm_device *drm = data;
1599 struct etnaviv_drm_private *priv = drm->dev_private;
1600 struct etnaviv_gpu *gpu = dev_get_drvdata(dev);
1601 int ret;
1602
Philipp Zabel49b82c32017-12-01 16:00:41 +01001603 if (IS_ENABLED(CONFIG_DRM_ETNAVIV_THERMAL)) {
Lucas Stach5247e2a2017-08-08 15:28:25 +02001604 gpu->cooling = thermal_of_cooling_device_register(dev->of_node,
Russell Kingbcdfb5e2017-03-12 19:00:59 +00001605 (char *)dev_name(dev), gpu, &cooling_ops);
Lucas Stach5247e2a2017-08-08 15:28:25 +02001606 if (IS_ERR(gpu->cooling))
1607 return PTR_ERR(gpu->cooling);
1608 }
Russell Kingbcdfb5e2017-03-12 19:00:59 +00001609
Lucas Stacha7790d72017-11-17 17:43:37 +01001610 gpu->wq = alloc_ordered_workqueue(dev_name(dev), 0);
1611 if (!gpu->wq) {
Lucas Stache93b6de2017-12-04 18:41:58 +01001612 ret = -ENOMEM;
1613 goto out_thermal;
Lucas Stacha7790d72017-11-17 17:43:37 +01001614 }
1615
Lucas Stache93b6de2017-12-04 18:41:58 +01001616 ret = etnaviv_sched_init(gpu);
1617 if (ret)
1618 goto out_workqueue;
1619
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001620#ifdef CONFIG_PM
1621 ret = pm_runtime_get_sync(gpu->dev);
1622#else
1623 ret = etnaviv_gpu_clk_enable(gpu);
1624#endif
Lucas Stache93b6de2017-12-04 18:41:58 +01001625 if (ret < 0)
1626 goto out_sched;
1627
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001628
1629 gpu->drm = drm;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001630 gpu->fence_context = dma_fence_context_alloc(1);
Lucas Stach8bc4d882017-11-29 14:49:04 +01001631 idr_init(&gpu->fence_idr);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001632 spin_lock_init(&gpu->fence_spinlock);
1633
Christian Gmeiner357713c2017-09-24 15:15:28 +02001634 INIT_WORK(&gpu->sync_point_work, sync_point_worker);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001635 init_waitqueue_head(&gpu->fence_event);
1636
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001637 priv->gpu[priv->num_gpus++] = gpu;
1638
1639 pm_runtime_mark_last_busy(gpu->dev);
1640 pm_runtime_put_autosuspend(gpu->dev);
1641
1642 return 0;
Lucas Stache93b6de2017-12-04 18:41:58 +01001643
1644out_sched:
1645 etnaviv_sched_fini(gpu);
1646
1647out_workqueue:
1648 destroy_workqueue(gpu->wq);
1649
1650out_thermal:
1651 if (IS_ENABLED(CONFIG_DRM_ETNAVIV_THERMAL))
1652 thermal_cooling_device_unregister(gpu->cooling);
1653
1654 return ret;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001655}
1656
1657static void etnaviv_gpu_unbind(struct device *dev, struct device *master,
1658 void *data)
1659{
1660 struct etnaviv_gpu *gpu = dev_get_drvdata(dev);
1661
1662 DBG("%s", dev_name(gpu->dev));
1663
Lucas Stacha7790d72017-11-17 17:43:37 +01001664 flush_workqueue(gpu->wq);
1665 destroy_workqueue(gpu->wq);
1666
Lucas Stache93b6de2017-12-04 18:41:58 +01001667 etnaviv_sched_fini(gpu);
1668
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001669#ifdef CONFIG_PM
1670 pm_runtime_get_sync(gpu->dev);
1671 pm_runtime_put_sync_suspend(gpu->dev);
1672#else
1673 etnaviv_gpu_hw_suspend(gpu);
1674#endif
1675
Lucas Stach2f9225d2017-11-24 16:56:37 +01001676 if (gpu->buffer.suballoc)
1677 etnaviv_cmdbuf_free(&gpu->buffer);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001678
Lucas Stache66774d2017-01-16 17:29:57 +01001679 if (gpu->cmdbuf_suballoc) {
1680 etnaviv_cmdbuf_suballoc_destroy(gpu->cmdbuf_suballoc);
1681 gpu->cmdbuf_suballoc = NULL;
1682 }
1683
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001684 if (gpu->mmu) {
1685 etnaviv_iommu_destroy(gpu->mmu);
1686 gpu->mmu = NULL;
1687 }
1688
1689 gpu->drm = NULL;
Lucas Stach8bc4d882017-11-29 14:49:04 +01001690 idr_destroy(&gpu->fence_idr);
Russell Kingbcdfb5e2017-03-12 19:00:59 +00001691
Philipp Zabel49b82c32017-12-01 16:00:41 +01001692 if (IS_ENABLED(CONFIG_DRM_ETNAVIV_THERMAL))
1693 thermal_cooling_device_unregister(gpu->cooling);
Russell Kingbcdfb5e2017-03-12 19:00:59 +00001694 gpu->cooling = NULL;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001695}
1696
1697static const struct component_ops gpu_ops = {
1698 .bind = etnaviv_gpu_bind,
1699 .unbind = etnaviv_gpu_unbind,
1700};
1701
1702static const struct of_device_id etnaviv_gpu_match[] = {
1703 {
1704 .compatible = "vivante,gc"
1705 },
1706 { /* sentinel */ }
1707};
Lucas Stach246774d2018-01-24 15:30:29 +01001708MODULE_DEVICE_TABLE(of, etnaviv_gpu_match);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001709
1710static int etnaviv_gpu_platform_probe(struct platform_device *pdev)
1711{
1712 struct device *dev = &pdev->dev;
1713 struct etnaviv_gpu *gpu;
Lucas Stacha98b1e72018-04-19 15:55:40 +02001714 struct resource *res;
Fabio Estevamdc227892016-08-21 19:32:15 -03001715 int err;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001716
1717 gpu = devm_kzalloc(dev, sizeof(*gpu), GFP_KERNEL);
1718 if (!gpu)
1719 return -ENOMEM;
1720
1721 gpu->dev = &pdev->dev;
1722 mutex_init(&gpu->lock);
Lucas Stacha0780bb2018-05-25 16:51:25 +02001723 mutex_init(&gpu->fence_lock);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001724
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001725 /* Map registers: */
Lucas Stacha98b1e72018-04-19 15:55:40 +02001726 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1727 gpu->mmio = devm_ioremap_resource(&pdev->dev, res);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001728 if (IS_ERR(gpu->mmio))
1729 return PTR_ERR(gpu->mmio);
1730
1731 /* Get Interrupt: */
1732 gpu->irq = platform_get_irq(pdev, 0);
1733 if (gpu->irq < 0) {
Fabio Estevamdb60eda2016-08-21 19:32:14 -03001734 dev_err(dev, "failed to get irq: %d\n", gpu->irq);
1735 return gpu->irq;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001736 }
1737
1738 err = devm_request_irq(&pdev->dev, gpu->irq, irq_handler, 0,
1739 dev_name(gpu->dev), gpu);
1740 if (err) {
1741 dev_err(dev, "failed to request IRQ%u: %d\n", gpu->irq, err);
Fabio Estevamdb60eda2016-08-21 19:32:14 -03001742 return err;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001743 }
1744
1745 /* Get Clocks: */
Lucas Stach65f037e2018-01-19 15:05:40 +01001746 gpu->clk_reg = devm_clk_get(&pdev->dev, "reg");
1747 DBG("clk_reg: %p", gpu->clk_reg);
1748 if (IS_ERR(gpu->clk_reg))
1749 gpu->clk_reg = NULL;
1750
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001751 gpu->clk_bus = devm_clk_get(&pdev->dev, "bus");
1752 DBG("clk_bus: %p", gpu->clk_bus);
1753 if (IS_ERR(gpu->clk_bus))
1754 gpu->clk_bus = NULL;
1755
1756 gpu->clk_core = devm_clk_get(&pdev->dev, "core");
1757 DBG("clk_core: %p", gpu->clk_core);
1758 if (IS_ERR(gpu->clk_core))
1759 gpu->clk_core = NULL;
Lucas Stachd79fd1ccf22017-04-11 15:54:50 +02001760 gpu->base_rate_core = clk_get_rate(gpu->clk_core);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001761
1762 gpu->clk_shader = devm_clk_get(&pdev->dev, "shader");
1763 DBG("clk_shader: %p", gpu->clk_shader);
1764 if (IS_ERR(gpu->clk_shader))
1765 gpu->clk_shader = NULL;
Lucas Stachd79fd1ccf22017-04-11 15:54:50 +02001766 gpu->base_rate_shader = clk_get_rate(gpu->clk_shader);
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001767
1768 /* TODO: figure out max mapped size */
1769 dev_set_drvdata(dev, gpu);
1770
1771 /*
1772 * We treat the device as initially suspended. The runtime PM
1773 * autosuspend delay is rather arbitary: no measurements have
1774 * yet been performed to determine an appropriate value.
1775 */
1776 pm_runtime_use_autosuspend(gpu->dev);
1777 pm_runtime_set_autosuspend_delay(gpu->dev, 200);
1778 pm_runtime_enable(gpu->dev);
1779
1780 err = component_add(&pdev->dev, &gpu_ops);
1781 if (err < 0) {
1782 dev_err(&pdev->dev, "failed to register component: %d\n", err);
Fabio Estevamdb60eda2016-08-21 19:32:14 -03001783 return err;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001784 }
1785
1786 return 0;
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001787}
1788
1789static int etnaviv_gpu_platform_remove(struct platform_device *pdev)
1790{
1791 component_del(&pdev->dev, &gpu_ops);
1792 pm_runtime_disable(&pdev->dev);
1793 return 0;
1794}
1795
1796#ifdef CONFIG_PM
1797static int etnaviv_gpu_rpm_suspend(struct device *dev)
1798{
1799 struct etnaviv_gpu *gpu = dev_get_drvdata(dev);
1800 u32 idle, mask;
1801
Lucas Stachf4163812018-11-05 18:12:38 +01001802 /* If there are any jobs in the HW queue, we're not idle */
1803 if (atomic_read(&gpu->sched.hw_rq_count))
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001804 return -EBUSY;
1805
1806 /* Check whether the hardware (except FE) is idle */
1807 mask = gpu->idle_mask & ~VIVS_HI_IDLE_STATE_FE;
1808 idle = gpu_read(gpu, VIVS_HI_IDLE_STATE) & mask;
1809 if (idle != mask)
1810 return -EBUSY;
1811
1812 return etnaviv_gpu_hw_suspend(gpu);
1813}
1814
1815static int etnaviv_gpu_rpm_resume(struct device *dev)
1816{
1817 struct etnaviv_gpu *gpu = dev_get_drvdata(dev);
1818 int ret;
1819
1820 ret = etnaviv_gpu_clk_enable(gpu);
1821 if (ret)
1822 return ret;
1823
1824 /* Re-initialise the basic hardware state */
Lucas Stach2f9225d2017-11-24 16:56:37 +01001825 if (gpu->drm && gpu->buffer.suballoc) {
The etnaviv authorsa8c21a52015-12-03 18:21:29 +01001826 ret = etnaviv_gpu_hw_resume(gpu);
1827 if (ret) {
1828 etnaviv_gpu_clk_disable(gpu);
1829 return ret;
1830 }
1831 }
1832
1833 return 0;
1834}
1835#endif
1836
1837static const struct dev_pm_ops etnaviv_gpu_pm_ops = {
1838 SET_RUNTIME_PM_OPS(etnaviv_gpu_rpm_suspend, etnaviv_gpu_rpm_resume,
1839 NULL)
1840};
1841
1842struct platform_driver etnaviv_gpu_driver = {
1843 .driver = {
1844 .name = "etnaviv-gpu",
1845 .owner = THIS_MODULE,
1846 .pm = &etnaviv_gpu_pm_ops,
1847 .of_match_table = etnaviv_gpu_match,
1848 },
1849 .probe = etnaviv_gpu_platform_probe,
1850 .remove = etnaviv_gpu_platform_remove,
1851 .id_table = gpu_ids,
1852};