-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathadreno_a6xx_rgmu.c
More file actions
1482 lines (1136 loc) · 39.1 KB
/
Copy pathadreno_a6xx_rgmu.c
File metadata and controls
1482 lines (1136 loc) · 39.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (c) 2018-2021, The Linux Foundation. All rights reserved.
* Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
*/
#include <linux/clk-provider.h>
#include <linux/component.h>
#include <linux/delay.h>
#include <linux/firmware.h>
#include <linux/io.h>
#include <linux/of.h>
#include <linux/of_platform.h>
#include "adreno.h"
#include "adreno_a6xx.h"
#include "adreno_a6xx_rgmu.h"
#include "adreno_snapshot.h"
#include "kgsl_bus.h"
#include "kgsl_trace.h"
#include "kgsl_util.h"
#define RGMU_CLK_FREQ 200000000
/* RGMU timeouts */
#define RGMU_IDLE_TIMEOUT 100 /* ms */
#define RGMU_START_TIMEOUT 100 /* ms */
#define GPU_START_TIMEOUT 100 /* ms */
#define GLM_SLEEP_TIMEOUT 10 /* ms */
static const unsigned int a6xx_rgmu_registers[] = {
/* GMU CX */
0x1F80F, 0x1F83D, 0x1F840, 0x1F8D8, 0x1F990, 0x1F99E, 0x1F9C0, 0x1F9CC,
/* GMU AO */
0x23B03, 0x23B16, 0x23B80, 0x23B82,
/* GPU CC */
0x24000, 0x24012, 0x24040, 0x24052, 0x24400, 0x24404, 0x24407, 0x2440B,
0x24415, 0x2441C, 0x2441E, 0x2442D, 0x2443C, 0x2443D, 0x2443F, 0x24440,
0x24442, 0x24449, 0x24458, 0x2445A, 0x24540, 0x2455E, 0x24800, 0x24802,
0x24C00, 0x24C02, 0x25400, 0x25402, 0x25800, 0x25802, 0x25C00, 0x25C02,
0x26000, 0x26002,
};
static struct a6xx_rgmu_device *to_a6xx_rgmu(struct adreno_device *adreno_dev)
{
struct a6xx_device *a6xx_dev = container_of(adreno_dev,
struct a6xx_device, adreno_dev);
return &a6xx_dev->rgmu;
}
static irqreturn_t a6xx_rgmu_irq_handler(int irq, void *data)
{
struct kgsl_device *device = data;
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(ADRENO_DEVICE(device));
unsigned int status = 0;
gmu_core_regread(device, A6XX_GMU_AO_HOST_INTERRUPT_STATUS, &status);
if (status & RGMU_AO_IRQ_FENCE_ERR) {
unsigned int fence_status;
gmu_core_regread(device, A6XX_GMU_AHB_FENCE_STATUS,
&fence_status);
gmu_core_regwrite(device, A6XX_GMU_AO_HOST_INTERRUPT_CLR,
status);
dev_err_ratelimited(&rgmu->pdev->dev,
"FENCE error interrupt received %x\n", fence_status);
}
if (status & ~RGMU_AO_IRQ_MASK)
dev_err_ratelimited(&rgmu->pdev->dev,
"Unhandled RGMU interrupts 0x%lx\n",
status & ~RGMU_AO_IRQ_MASK);
return IRQ_HANDLED;
}
static irqreturn_t a6xx_oob_irq_handler(int irq, void *data)
{
struct kgsl_device *device = data;
struct adreno_device *adreno_dev = ADRENO_DEVICE(device);
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
unsigned int status = 0;
gmu_core_regread(device, A6XX_GMU_GMU2HOST_INTR_INFO, &status);
if (status & RGMU_OOB_IRQ_ERR_MSG) {
gmu_core_regwrite(device, A6XX_GMU_GMU2HOST_INTR_CLR, status);
dev_err_ratelimited(&rgmu->pdev->dev,
"RGMU oob irq error\n");
adreno_scheduler_fault(adreno_dev, ADRENO_GMU_FAULT);
}
if (status & ~RGMU_OOB_IRQ_MASK)
dev_err_ratelimited(&rgmu->pdev->dev,
"Unhandled OOB interrupts 0x%lx\n",
status & ~RGMU_OOB_IRQ_MASK);
return IRQ_HANDLED;
}
static const char *oob_to_str(enum oob_request req)
{
if (req == oob_gpu)
return "oob_gpu";
else if (req == oob_perfcntr)
return "oob_perfcntr";
return "unknown";
}
/*
* a6xx_rgmu_oob_set() - Set OOB interrupt to RGMU
* @adreno_dev: Pointer to adreno device
* @req: Which of the OOB bits to request
*/
static int a6xx_rgmu_oob_set(struct kgsl_device *device,
enum oob_request req)
{
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(ADRENO_DEVICE(device));
int ret, set, check;
if (req == oob_perfcntr && rgmu->num_oob_perfcntr++)
return 0;
set = BIT(req + 16);
check = BIT(req + 16);
gmu_core_regwrite(device, A6XX_GMU_HOST2GMU_INTR_SET, set);
ret = gmu_core_timed_poll_check(device,
A6XX_GMU_GMU2HOST_INTR_INFO,
check,
GPU_START_TIMEOUT,
check);
if (ret) {
unsigned int status;
if (req == oob_perfcntr)
rgmu->num_oob_perfcntr--;
gmu_core_regread(device, A6XX_RGMU_CX_PCC_DEBUG, &status);
dev_err(&rgmu->pdev->dev,
"Timed out while setting OOB req:%s status:0x%x\n",
oob_to_str(req), status);
gmu_core_fault_snapshot(device, GMU_FAULT_PANIC_NONE);
return ret;
}
gmu_core_regwrite(device, A6XX_GMU_GMU2HOST_INTR_CLR, check);
trace_kgsl_gmu_oob_set(set);
return 0;
}
/*
* a6xx_rgmu_oob_clear() - Clear a previously set OOB request.
* @adreno_dev: Pointer to the adreno device that has the RGMU
* @req: Which of the OOB bits to clear
*/
static void a6xx_rgmu_oob_clear(struct kgsl_device *device,
enum oob_request req)
{
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(ADRENO_DEVICE(device));
if (req == oob_perfcntr && --rgmu->num_oob_perfcntr)
return;
gmu_core_regwrite(device, A6XX_GMU_HOST2GMU_INTR_SET, BIT(req + 24));
trace_kgsl_gmu_oob_clear(BIT(req + 24));
}
static void a6xx_rgmu_bcl_config(struct kgsl_device *device, bool on)
{
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(ADRENO_DEVICE(device));
if (on) {
/* Enable BCL CRC HW i/f */
gmu_core_regwrite(device,
A6XX_GMU_AO_RGMU_GLM_HW_CRC_DISABLE, 0);
} else {
/* Disable CRC HW i/f */
gmu_core_regwrite(device,
A6XX_GMU_AO_RGMU_GLM_HW_CRC_DISABLE, 1);
/* Wait for HW CRC disable ACK */
if (gmu_core_timed_poll_check(device,
A6XX_GMU_AO_RGMU_GLM_SLEEP_STATUS,
BIT(1), GLM_SLEEP_TIMEOUT, BIT(1)))
dev_err_ratelimited(&rgmu->pdev->dev,
"Timed out waiting for HW CRC disable acknowledgment\n");
/* Pull down the valid RGMU_GLM_SLEEP_CTRL[7] to 0 */
gmu_core_regrmw(device, A6XX_GMU_AO_RGMU_GLM_SLEEP_CTRL,
BIT(7), 0);
}
}
static void a6xx_rgmu_irq_enable(struct adreno_device *adreno_dev)
{
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
struct kgsl_device *device = KGSL_DEVICE(adreno_dev);
/* Clear pending IRQs and Unmask needed IRQs */
gmu_core_regwrite(device, A6XX_GMU_GMU2HOST_INTR_CLR, 0xffffffff);
gmu_core_regwrite(device, A6XX_GMU_AO_HOST_INTERRUPT_CLR, 0xffffffff);
gmu_core_regwrite(device, A6XX_GMU_GMU2HOST_INTR_MASK,
~((unsigned int)RGMU_OOB_IRQ_MASK));
gmu_core_regwrite(device, A6XX_GMU_AO_HOST_INTERRUPT_MASK,
(unsigned int)~RGMU_AO_IRQ_MASK);
/* Enable all IRQs on host */
enable_irq(rgmu->oob_interrupt_num);
enable_irq(rgmu->rgmu_interrupt_num);
}
static void a6xx_rgmu_irq_disable(struct adreno_device *adreno_dev)
{
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
struct kgsl_device *device = KGSL_DEVICE(adreno_dev);
/* Disable all IRQs on host */
disable_irq(rgmu->rgmu_interrupt_num);
disable_irq(rgmu->oob_interrupt_num);
/* Mask all IRQs and clear pending IRQs */
gmu_core_regwrite(device, A6XX_GMU_GMU2HOST_INTR_MASK, 0xffffffff);
gmu_core_regwrite(device, A6XX_GMU_AO_HOST_INTERRUPT_MASK, 0xffffffff);
gmu_core_regwrite(device, A6XX_GMU_GMU2HOST_INTR_CLR, 0xffffffff);
gmu_core_regwrite(device, A6XX_GMU_AO_HOST_INTERRUPT_CLR, 0xffffffff);
}
static int a6xx_rgmu_ifpc_store(struct kgsl_device *device,
unsigned int val)
{
struct adreno_device *adreno_dev = ADRENO_DEVICE(device);
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
unsigned int requested_idle_level;
if (!ADRENO_FEATURE(adreno_dev, ADRENO_IFPC))
return -EINVAL;
if (val)
requested_idle_level = GPU_HW_IFPC;
else
requested_idle_level = GPU_HW_ACTIVE;
if (requested_idle_level == rgmu->idle_level)
return 0;
/* Power cycle the GPU for changes to take effect */
return adreno_power_cycle_u32(adreno_dev, &rgmu->idle_level,
requested_idle_level);
}
static unsigned int a6xx_rgmu_ifpc_isenabled(struct kgsl_device *device)
{
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(ADRENO_DEVICE(device));
return rgmu->idle_level == GPU_HW_IFPC;
}
static void a6xx_rgmu_prepare_stop(struct kgsl_device *device)
{
/* Turn off GX_MEM retention */
kgsl_regwrite(device, A6XX_RBBM_BLOCK_GX_RETENTION_CNTL, 0);
}
#define GX_GDSC_POWER_OFF BIT(6)
bool a6xx_rgmu_gx_is_on(struct adreno_device *adreno_dev)
{
unsigned int val;
gmu_core_regread(KGSL_DEVICE(adreno_dev),
A6XX_GMU_SPTPRAC_PWR_CLK_STATUS, &val);
return !(val & GX_GDSC_POWER_OFF);
}
static int a6xx_rgmu_wait_for_lowest_idle(struct adreno_device *adreno_dev)
{
struct kgsl_device *device = KGSL_DEVICE(adreno_dev);
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
unsigned int reg[10] = {0};
unsigned long t;
uint64_t ts1, ts2, ts3;
if (rgmu->idle_level != GPU_HW_IFPC)
return 0;
ts1 = a6xx_read_alwayson(adreno_dev);
/* FIXME: readl_poll_timeout? */
t = jiffies + msecs_to_jiffies(RGMU_IDLE_TIMEOUT);
do {
gmu_core_regread(device,
A6XX_GMU_SPTPRAC_PWR_CLK_STATUS, ®[0]);
if (reg[0] & GX_GDSC_POWER_OFF)
return 0;
/* Wait 10us to reduce unnecessary AHB bus traffic */
usleep_range(10, 100);
} while (!time_after(jiffies, t));
ts2 = a6xx_read_alwayson(adreno_dev);
/* Do one last read incase it succeeds */
gmu_core_regread(device,
A6XX_GMU_SPTPRAC_PWR_CLK_STATUS, ®[0]);
if (reg[0] & GX_GDSC_POWER_OFF)
return 0;
ts3 = a6xx_read_alwayson(adreno_dev);
/* Collect abort data to help with debugging */
gmu_core_regread(device, A6XX_RGMU_CX_PCC_DEBUG, ®[1]);
gmu_core_regread(device, A6XX_RGMU_CX_PCC_STATUS, ®[2]);
gmu_core_regread(device, A6XX_GPU_GMU_AO_GPU_CX_BUSY_STATUS, ®[3]);
kgsl_regread(device, A6XX_CP_STATUS_1, ®[4]);
gmu_core_regread(device, A6XX_GMU_RBBM_INT_UNMASKED_STATUS, ®[5]);
gmu_core_regread(device, A6XX_GMU_GMU_PWR_COL_KEEPALIVE, ®[6]);
kgsl_regread(device, A6XX_CP_CP2GMU_STATUS, ®[7]);
kgsl_regread(device, A6XX_CP_CONTEXT_SWITCH_CNTL, ®[8]);
gmu_core_regread(device, A6XX_GMU_AO_SPARE_CNTL, ®[9]);
dev_err(&rgmu->pdev->dev,
"----------------------[ RGMU error ]----------------------\n");
dev_err(&rgmu->pdev->dev, "Timeout waiting for lowest idle level\n");
dev_err(&rgmu->pdev->dev,
"Timestamps: %llx %llx %llx\n", ts1, ts2, ts3);
dev_err(&rgmu->pdev->dev,
"SPTPRAC_PWR_CLK_STATUS=%x PCC_DEBUG=%x PCC_STATUS=%x\n",
reg[0], reg[1], reg[2]);
dev_err(&rgmu->pdev->dev,
"CX_BUSY_STATUS=%x CP_STATUS_1=%x\n", reg[3], reg[4]);
dev_err(&rgmu->pdev->dev,
"RBBM_INT_UNMASKED_STATUS=%x PWR_COL_KEEPALIVE=%x\n",
reg[5], reg[6]);
dev_err(&rgmu->pdev->dev,
"CP2GMU_STATUS=%x CONTEXT_SWITCH_CNTL=%x AO_SPARE_CNTL=%x\n",
reg[7], reg[8], reg[9]);
WARN_ON(1);
gmu_core_fault_snapshot(device, GMU_FAULT_PANIC_NONE);
return -ETIMEDOUT;
}
/*
* The lowest 16 bits of this value are the number of XO clock cycles
* for main hysteresis. This is the first hysteresis. Here we set it
* to 0x1680 cycles, or 300 us. The highest 16 bits of this value are
* the number of XO clock cycles for short hysteresis. This happens
* after main hysteresis. Here we set it to 0xA cycles, or 0.5 us.
*/
#define A6X_RGMU_LONG_IFPC_HYST FIELD_PREP(GENMASK(15, 0), 0x1680)
#define A6X_RGMU_SHORT_IFPC_HYST FIELD_PREP(GENMASK(31, 16), 0xA)
/* Minimum IFPC timer (200usec) allowed to override default value */
#define A6X_RGMU_LONG_IFPC_HYST_FLOOR FIELD_PREP(GENMASK(15, 0), 0x0F00)
/* HOSTTOGMU and TIMER0/1 interrupt mask: 0x20060 */
#define RGMU_INTR_EN_MASK (BIT(5) | BIT(6) | BIT(17))
/* RGMU FENCE RANGE MASK */
#define RGMU_FENCE_RANGE_MASK ((0x1 << 31) | ((0xA << 2) << 18) | (0x8A0))
static int a6xx_rgmu_fw_start(struct adreno_device *adreno_dev,
unsigned int boot_state)
{
struct kgsl_device *device = KGSL_DEVICE(adreno_dev);
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
unsigned int status;
int i;
switch (boot_state) {
case GMU_COLD_BOOT:
case GMU_WARM_BOOT:
/* Turn on TCM retention */
gmu_core_regwrite(device, A6XX_GMU_GENERAL_7, 1);
/* Load RGMU FW image via AHB bus */
for (i = 0; i < rgmu->fw_size; i++)
gmu_core_regwrite(device, A6XX_GMU_CM3_ITCM_START + i,
rgmu->fw_hostptr[i]);
break;
}
/* IFPC Feature Enable */
if (rgmu->idle_level == GPU_HW_IFPC) {
gmu_core_regwrite(device, A6XX_GMU_PWR_COL_INTER_FRAME_HYST,
A6X_RGMU_SHORT_IFPC_HYST | adreno_dev->ifpc_hyst);
gmu_core_regwrite(device, A6XX_GMU_PWR_COL_INTER_FRAME_CTRL,
BIT(0));
}
/* For RGMU CX interrupt */
gmu_core_regwrite(device, A6XX_RGMU_CX_INTR_GEN_EN, RGMU_INTR_EN_MASK);
/* Enable GMU AO to host interrupt */
gmu_core_regwrite(device, A6XX_GMU_AO_INTERRUPT_EN, RGMU_AO_IRQ_MASK);
/* For OOB */
gmu_core_regwrite(device, A6XX_GMU_HOST2GMU_INTR_EN_2, 0x00FF0000);
gmu_core_regwrite(device, A6XX_GMU_HOST2GMU_INTR_EN_3, 0xFF000000);
/* Fence Address range configuration */
gmu_core_regwrite(device, A6XX_GMU_AHB_FENCE_RANGE_0,
RGMU_FENCE_RANGE_MASK);
/* During IFPC RGMU will put fence in drop mode so we would
* need to put fence allow mode during slumber out sequence.
*/
gmu_core_regwrite(device, A6XX_GMU_AO_AHB_FENCE_CTRL, 0);
/* BCL ON Sequence */
a6xx_rgmu_bcl_config(device, true);
/* Write 0 first to make sure that rgmu is reset */
gmu_core_regwrite(device, A6XX_RGMU_CX_PCC_CTRL, 0);
/* Make sure putting in reset doesn't happen after writing 1 */
wmb();
/* Bring rgmu out of reset */
gmu_core_regwrite(device, A6XX_RGMU_CX_PCC_CTRL, 1);
if (gmu_core_timed_poll_check(device, A6XX_RGMU_CX_PCC_INIT_RESULT,
BIT(0), RGMU_START_TIMEOUT, BIT(0))) {
gmu_core_regread(device, A6XX_RGMU_CX_PCC_DEBUG, &status);
dev_err(&rgmu->pdev->dev,
"rgmu boot Failed. status:%08x\n", status);
gmu_core_fault_snapshot(device, GMU_FAULT_PANIC_NONE);
return -ETIMEDOUT;
}
/* Read the RGMU firmware version from registers */
gmu_core_regread(device, A6XX_GMU_GENERAL_0, &rgmu->ver);
return 0;
}
static void a6xx_rgmu_notify_slumber(struct adreno_device *adreno_dev)
{
struct kgsl_device *device = KGSL_DEVICE(adreno_dev);
/* Disable the power counter so that the RGMU is not busy */
gmu_core_regwrite(device, A6XX_GMU_CX_GMU_POWER_COUNTER_ENABLE, 0);
/* BCL OFF Sequence */
a6xx_rgmu_bcl_config(device, false);
}
static void a6xx_rgmu_disable_clks(struct adreno_device *adreno_dev)
{
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
struct kgsl_device *device = KGSL_DEVICE(adreno_dev);
/*
* This is based on the assumption that GMU is the only one controlling
* the GX HS. This code path is the only client voting for GX from linux
* kernel.
*/
if (!a6xx_rgmu_gx_is_on(adreno_dev))
goto done;
/*
* Switch gx gdsc control from GMU to CPU force non-zero reference
* count in clk driver so next disable call will turn off the GDSC
*/
kgsl_pwrctrl_enable_gx_gdsc(device);
kgsl_pwrctrl_disable_gx_gdsc(device);
if (a6xx_rgmu_gx_is_on(adreno_dev))
dev_err(&rgmu->pdev->dev, "gx is stuck on\n");
done:
clk_bulk_disable_unprepare(rgmu->num_clks, rgmu->clks);
/* If gpu_clk is NOT in the bulk list, disable it explicitly */
if (!kgsl_of_clk_by_name(rgmu->clks, rgmu->num_clks, "core"))
clk_disable_unprepare(rgmu->gpu_clk);
}
void a6xx_rgmu_snapshot(struct adreno_device *adreno_dev,
struct kgsl_snapshot *snapshot)
{
struct kgsl_device *device = KGSL_DEVICE(adreno_dev);
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
adreno_snapshot_registers(device, snapshot, a6xx_rgmu_registers,
ARRAY_SIZE(a6xx_rgmu_registers) / 2);
a6xx_snapshot(adreno_dev, snapshot);
gmu_core_regwrite(device, A6XX_GMU_GMU2HOST_INTR_CLR, 0xffffffff);
gmu_core_regwrite(device, A6XX_GMU_GMU2HOST_INTR_MASK,
RGMU_OOB_IRQ_MASK);
if (device->gmu_fault)
rgmu->fault_count++;
}
static void a6xx_rgmu_suspend(struct adreno_device *adreno_dev)
{
struct kgsl_device *device = KGSL_DEVICE(adreno_dev);
a6xx_rgmu_irq_disable(adreno_dev);
a6xx_rgmu_disable_clks(adreno_dev);
kgsl_pwrctrl_disable_cx_gdsc(device);
kgsl_pwrctrl_set_state(KGSL_DEVICE(adreno_dev), KGSL_STATE_NONE);
}
static int a6xx_rgmu_enable_clks(struct adreno_device *adreno_dev)
{
int ret;
struct kgsl_device *device = KGSL_DEVICE(adreno_dev);
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
struct kgsl_pwrctrl *pwr = &device->pwrctrl;
ret = clk_set_rate(rgmu->rgmu_clk, RGMU_CLK_FREQ);
if (ret) {
dev_err(&rgmu->pdev->dev, "Couldn't set the RGMU clock\n");
return ret;
}
ret = clk_set_rate(rgmu->gpu_clk,
pwr->pwrlevels[pwr->default_pwrlevel].gpu_freq);
if (ret) {
dev_err(&rgmu->pdev->dev, "Couldn't set the GPU clock\n");
return ret;
}
ret = clk_bulk_prepare_enable(rgmu->num_clks, rgmu->clks);
if (ret) {
dev_err(&rgmu->pdev->dev, "Failed to enable RGMU clocks\n");
return ret;
}
/* If gpu_clk is NOT in the bulk list, enable it explicitly */
if (!kgsl_of_clk_by_name(rgmu->clks, rgmu->num_clks, "core")) {
ret = clk_prepare_enable(rgmu->gpu_clk);
if (ret) {
dev_err(&rgmu->pdev->dev, "Failed to enable core clock\n");
goto err_bulk_disable;
}
}
device->state = KGSL_STATE_AWARE;
return 0;
err_bulk_disable:
clk_bulk_disable_unprepare(rgmu->num_clks, rgmu->clks);
return ret;
}
/*
* a6xx_rgmu_load_firmware() - Load the ucode into the RGMU TCM
* @adreno_dev: Pointer to adreno device
*/
static int a6xx_rgmu_load_firmware(struct adreno_device *adreno_dev)
{
const struct firmware *fw = NULL;
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
const struct adreno_a6xx_core *a6xx_core = to_a6xx_core(adreno_dev);
int ret;
/* RGMU fw already saved and verified so do nothing new */
if (rgmu->fw_hostptr)
return 0;
ret = adreno_request_firmware(&fw, a6xx_core->gmufw_name,
&rgmu->pdev->dev, true);
if (ret)
return ret;
rgmu->fw_hostptr = devm_kmemdup(&rgmu->pdev->dev, fw->data,
fw->size, GFP_KERNEL);
if (rgmu->fw_hostptr)
rgmu->fw_size = (fw->size / sizeof(u32));
release_firmware(fw);
return rgmu->fw_hostptr ? 0 : -ENOMEM;
}
/* Halt RGMU execution */
static void a6xx_rgmu_halt_execution(struct kgsl_device *device, bool force,
enum gmu_fault_panic_policy gf_policy)
{
struct adreno_device *adreno_dev = ADRENO_DEVICE(device);
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
const struct adreno_gpudev *gpudev = ADRENO_GPU_DEVICE(adreno_dev);
u64 ticks = gpudev->read_alwayson(adreno_dev);
unsigned int index, status, fence;
if (!device->gmu_fault)
return;
/* Mask so there's no interrupt caused by NMI */
gmu_core_regwrite(device, A6XX_GMU_GMU2HOST_INTR_MASK, 0xFFFFFFFF);
/* Make sure the interrupt is masked */
wmb();
gmu_core_regread(device, A6XX_RGMU_CX_PCC_DEBUG, &index);
gmu_core_regread(device, A6XX_RGMU_CX_PCC_STATUS, &status);
gmu_core_regread(device, A6XX_GMU_AO_AHB_FENCE_CTRL, &fence);
dev_err(&rgmu->pdev->dev,
"RGMU Fault PCC_DEBUG:0x%x PCC_STATUS:0x%x FENCE_CTRL:0x%x\n",
index, status, fence);
/*
* Write 0 to halt RGMU execution. We halt it in GMU/GPU fault and
* re start PCC execution in recovery path.
*/
gmu_core_regwrite(device, A6XX_RGMU_CX_PCC_CTRL, 0);
/*
* Ensure that fence is in allow mode after halting RGMU.
* After halting RGMU we dump snapshot.
*/
gmu_core_regwrite(device, A6XX_GMU_AO_AHB_FENCE_CTRL, 0);
KGSL_GMU_CORE_FORCE_PANIC(device->gmu_core.gf_panic, rgmu->pdev, ticks, gf_policy);
}
static void halt_gbif_arb(struct adreno_device *adreno_dev)
{
struct kgsl_device *device = KGSL_DEVICE(adreno_dev);
/* Halt all AXI requests */
kgsl_regwrite(device, A6XX_GBIF_HALT, A6XX_GBIF_ARB_HALT_MASK);
adreno_wait_for_halt_ack(device, A6XX_GBIF_HALT_ACK,
A6XX_GBIF_ARB_HALT_MASK);
/* De-assert the halts */
kgsl_regwrite(device, A6XX_GBIF_HALT, 0x0);
}
/* Caller shall ensure GPU is ready for SLUMBER */
static void a6xx_rgmu_power_off(struct adreno_device *adreno_dev)
{
struct kgsl_device *device = KGSL_DEVICE(adreno_dev);
int ret;
kgsl_pwrctrl_axi(device, false);
if (device->gmu_fault)
return a6xx_rgmu_suspend(adreno_dev);
/* Wait for the lowest idle level we requested */
ret = a6xx_rgmu_wait_for_lowest_idle(adreno_dev);
if (ret)
return a6xx_rgmu_suspend(adreno_dev);
a6xx_rgmu_notify_slumber(adreno_dev);
/* Halt CX traffic and de-assert halt */
halt_gbif_arb(adreno_dev);
a6xx_rgmu_irq_disable(adreno_dev);
a6xx_rgmu_disable_clks(adreno_dev);
kgsl_pwrctrl_disable_cx_gdsc(device);
kgsl_pwrctrl_clear_l3_vote(device);
/* Clear the active OPP state for the device */
if (device->pwrctrl.pwrlevels[0].opp) {
ret = dev_pm_opp_set_opp(&device->pdev->dev, NULL);
if (ret)
dev_err(&device->pdev->dev,
"Failed to clear active OPP state: %d\n", ret);
}
kgsl_pwrctrl_set_state(device, KGSL_STATE_NONE);
}
static int a6xx_rgmu_set_opp(struct kgsl_device *device, struct kgsl_pwrlevel *level)
{
struct device *dev = &device->pdev->dev;
int ret;
/*
* level->opp is initialized with a valid OPP pointer only when the driver
* is probed with standard DT bindings. Use this to distinguish standard
* vs non‑standard kernels here.
*
* On non‑standard kernels (level->opp == NULL), vote the core clock using
* clk_set_rate API. The downstream clock driver internally handles the
* required regulator voting.
*
* On standard kernels (level->opp != NULL), use dev_pm_opp_set_opp() API
* and OPP framework will take care of all required votes.
*/
if (!level->opp) {
struct adreno_device *adreno_dev = ADRENO_DEVICE(device);
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
ret = clk_set_rate(rgmu->gpu_clk, level->gpu_freq);
if (ret)
dev_err(device->dev, "GPU clk freq set failure: %d\n", ret);
return ret;
}
ret = dev_pm_opp_set_opp(dev, level->opp);
if (ret)
dev_err(device->dev, "GPU OPP configure failure: %d\n", ret);
return ret;
}
static int a6xx_rgmu_clock_set(struct adreno_device *adreno_dev,
u32 pwrlevel)
{
struct kgsl_device *device = KGSL_DEVICE(adreno_dev);
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
struct kgsl_pwrctrl *pwr = &device->pwrctrl;
struct kgsl_pwrlevel *level = &pwr->pwrlevels[pwrlevel];
int ret;
if (pwrlevel == INVALID_DCVS_IDX)
return -EINVAL;
return a6xx_rgmu_set_opp(device, level);
}
static int a6xx_gpu_boot(struct adreno_device *adreno_dev)
{
struct kgsl_device *device = KGSL_DEVICE(adreno_dev);
int ret;
adreno_set_active_ctxs_null(adreno_dev);
ret = kgsl_mmu_start(device);
if (ret)
goto err;
ret = a6xx_rgmu_oob_set(device, oob_gpu);
if (ret)
goto err_oob_clear;
/* Clear the busy_data stats - we're starting over from scratch */
memset(&adreno_dev->busy_data, 0, sizeof(adreno_dev->busy_data));
/* Restore performance counter registers with saved values */
adreno_perfcounter_restore(adreno_dev);
a6xx_start(adreno_dev);
/* Re-initialize the coresight registers if applicable */
adreno_coresight_start(adreno_dev);
adreno_perfcounter_start(adreno_dev);
/* Clear FSR here in case it is set from a previous pagefault */
kgsl_mmu_clear_fsr(&device->mmu);
a6xx_enable_gpu_irq(adreno_dev);
ret = a6xx_rb_start(adreno_dev);
if (ret) {
a6xx_disable_gpu_irq(adreno_dev);
adreno_llcc_slice_deactivate(adreno_dev);
goto err_oob_clear;
}
/*
* At this point it is safe to assume that we recovered. Setting
* this field allows us to take a new snapshot for the next failure
* if we are prioritizing the first unrecoverable snapshot.
*/
if (device->snapshot)
device->snapshot->recovered = true;
/* Start the dispatcher */
adreno_dispatcher_start(device);
device->reset_counter++;
a6xx_rgmu_oob_clear(device, oob_gpu);
return 0;
err_oob_clear:
a6xx_rgmu_oob_clear(device, oob_gpu);
err:
a6xx_rgmu_power_off(adreno_dev);
return ret;
}
static int a6xx_rgmu_boot(struct adreno_device *adreno_dev)
{
struct kgsl_device *device = KGSL_DEVICE(adreno_dev);
int ret;
kgsl_pwrctrl_request_state(device, KGSL_STATE_AWARE);
ret = kgsl_pwrctrl_enable_cx_gdsc(device);
if (ret)
return ret;
ret = a6xx_rgmu_enable_clks(adreno_dev);
if (ret) {
kgsl_pwrctrl_disable_cx_gdsc(device);
return ret;
}
a6xx_rgmu_irq_enable(adreno_dev);
/* Clear any GPU faults that might have been left over */
adreno_clear_gpu_fault(adreno_dev);
ret = a6xx_rgmu_fw_start(adreno_dev, GMU_COLD_BOOT);
if (ret)
goto err;
ret = kgsl_pwrctrl_setup_default_votes(device);
if (ret)
goto err;
device->gmu_fault = false;
kgsl_pwrctrl_set_state(device, KGSL_STATE_AWARE);
return 0;
err:
a6xx_rgmu_power_off(adreno_dev);
return ret;
}
static int a6xx_power_off(struct adreno_device *adreno_dev);
static void rgmu_idle_check(struct work_struct *work)
{
struct kgsl_device *device = container_of(work,
struct kgsl_device, idle_check_ws);
struct adreno_device *adreno_dev = ADRENO_DEVICE(device);
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
int ret;
kgsl_mutex_lock(&device->mutex);
if (test_bit(GMU_DISABLE_SLUMBER, &device->gmu_core.flags))
goto done;
if (atomic_read(&device->active_cnt) || time_is_after_jiffies(device->idle_jiffies)) {
kgsl_pwrscale_update(device);
goto done;
}
if (!test_bit(RGMU_PRIV_GPU_STARTED, &rgmu->flags))
goto done;
spin_lock(&device->submit_lock);
if (device->submit_now) {
spin_unlock(&device->submit_lock);
kgsl_pwrscale_update(device);
kgsl_start_idle_timer(device);
goto done;
}
device->skip_inline_submit = true;
spin_unlock(&device->submit_lock);
ret = a6xx_power_off(adreno_dev);
if (ret == -EBUSY) {
kgsl_pwrscale_update(device);
kgsl_start_idle_timer(device);
}
done:
kgsl_mutex_unlock(&device->mutex);
}
static void rgmu_idle_timer(struct timer_list *t)
{
struct kgsl_device *device = container_of(t, struct kgsl_device,
idle_timer);
kgsl_schedule_work(&device->idle_check_ws);
}
static int a6xx_boot(struct adreno_device *adreno_dev)
{
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
struct kgsl_device *device = KGSL_DEVICE(adreno_dev);
int ret;
if (WARN_ON(test_bit(RGMU_PRIV_GPU_STARTED, &rgmu->flags)))
return 0;
kgsl_pwrctrl_request_state(device, KGSL_STATE_ACTIVE);
ret = a6xx_rgmu_boot(adreno_dev);
if (ret)
return ret;
ret = a6xx_gpu_boot(adreno_dev);
if (ret)
return ret;
kgsl_start_idle_timer(device);
kgsl_pwrscale_wake(device);
set_bit(RGMU_PRIV_GPU_STARTED, &rgmu->flags);
device->pwrctrl.last_stat_updated = ktime_get();
kgsl_pwrctrl_set_state(device, KGSL_STATE_ACTIVE);
return 0;
}
static void a6xx_rgmu_touch_wakeup(struct adreno_device *adreno_dev)
{
struct kgsl_device *device = KGSL_DEVICE(adreno_dev);
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
int ret;
/*
* Do not wake up a suspended device or until the first boot sequence
* has been completed.
*/
if (test_bit(RGMU_PRIV_PM_SUSPEND, &rgmu->flags) ||
!test_bit(RGMU_PRIV_FIRST_BOOT_DONE, &rgmu->flags))
return;
if (test_bit(RGMU_PRIV_GPU_STARTED, &rgmu->flags))
goto done;
kgsl_pwrctrl_request_state(device, KGSL_STATE_ACTIVE);
ret = a6xx_rgmu_boot(adreno_dev);
if (ret)
return;
ret = a6xx_gpu_boot(adreno_dev);
if (ret)
return;
kgsl_pwrscale_wake(device);
set_bit(RGMU_PRIV_GPU_STARTED, &rgmu->flags);
device->pwrctrl.last_stat_updated = ktime_get();
kgsl_pwrctrl_set_state(device, KGSL_STATE_ACTIVE);
done:
/*
* When waking up from a touch event we want to stay active long enough
* for the user to send a draw command. The default idle timer timeout
* is shorter than we want so go ahead and push the idle timer out
* further for this special case
*/
mod_timer(&device->idle_timer, jiffies +
msecs_to_jiffies(adreno_wake_timeout));
}
static int a6xx_first_boot(struct adreno_device *adreno_dev)
{
struct kgsl_device *device = KGSL_DEVICE(adreno_dev);
struct a6xx_rgmu_device *rgmu = to_a6xx_rgmu(adreno_dev);
int ret;
if (test_bit(RGMU_PRIV_FIRST_BOOT_DONE, &rgmu->flags)) {
if (!test_bit(RGMU_PRIV_GPU_STARTED, &rgmu->flags))
return a6xx_boot(adreno_dev);
return 0;
}
ret = a6xx_ringbuffer_init(adreno_dev);
if (ret)
return ret;
ret = a6xx_microcode_read(adreno_dev);
if (ret)
return ret;
ret = a6xx_init(adreno_dev);
if (ret)
return ret;