aboutsummaryrefslogtreecommitdiffstats
path: root/common/recipes-kernel/linux/files/linux-yocto-amd-patches.scc
blob: f0addb32f4b6289b2bd8c7337c6f37c3ceb2c8da (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
patch 0001-mmc-sdhci-add-AMD-CZ-device-handling.patch
patch 0001-yocto-amd-staging-add-support-to-enable-and-disable-.patch
patch 0002-yocto-amd-i2c-dev-add-calls-to-enable-and-disable-IM.patch
patch 0004-drm-radeon-disable-dynamic-powering-vce.patch
patch 0005-ACPI-Set-acpi_enforce_resources-to-ENFORCE_RESOURCES.patch
patch 0008-amd-Setup-Jaguar-specific-compile-options.patch
patch 0009-amd-Setup-Steamroller-specific-compile-options.patch
patch 0010-amd-Setup-Excavator-specific-compile-options.patch
patch 0115-drm-amdkfd-Remove-unessary-void-pointer-cast.patch
patch 0116-drm-amdkfd-reformat-some-debug-prints.patch
patch 0117-drm-amdkfd-Use-new-struct-for-asic-specific-ops.patch
patch 0118-drm-amdkfd-make-the-sdma-vm-init-to-be-asic-specific.patch
patch 0119-drm-radeon-Add-init-interrupt-kfd-kgd-interface.patch
patch 0120-drm-amdkfd-Add-interrupt-handling-module.patch
patch 0121-drm-amdkfd-add-events-IOCTL-set-definitions.patch
patch 0122-drm-amdkfd-Add-the-events-module.patch
patch 0123-drm-amdkfd-Add-memory-exception-handling.patch
patch 0124-drm-amdkfd-Add-bad-opcode-exception-handling.patch
patch 0125-drm-amdkfd-Add-module-parameter-of-send_sigterm.patch
patch 0126-drm-amdkfd-Implement-events-IOCTLs.patch
patch 0127-drm-amdkfd-change-driver-version-to-0.7.2.patch
patch 0128-drm-amdkfd-Use-DECLARE_BITMAP.patch
patch 0129-drm-radeon-Add-H-W-debugger-kfd-kgd-functions.patch
patch 0130-drm-amdkfd-add-H-W-debugger-IOCTL-set-definitions.patch
patch 0131-drm-amdkfd-Add-static-user-mode-queues-support.patch
patch 0132-drm-amdkfd-Add-skeleton-H-W-debugger-module-support.patch
patch 0133-drm-amdkfd-Add-wave-control-operation-to-debugger.patch
patch 0134-drm-amdkfd-Add-address-watch-operation-to-debugger.patch
patch 0135-drm-amdkfd-Implement-un-register-debugger-IOCTLs.patch
patch 0136-drm-amdkfd-Implement-wave-control-debugger-IOCTL.patch
patch 0137-drm-amdkfd-Implement-address-watch-debugger-IOCTL.patch
patch 0138-drm-radeon-Add-ATC-VMID-PASID-functions-to-kfd-kgd.patch
patch 0139-drm-amdkfd-Enforce-kill-all-waves-on-process-termina.patch
patch 0141-drm-amdgpu-add-BIF-4.1-register-headers.patch
patch 0142-drm-amdgpu-add-BIF-5.0-register-headers.patch
patch 0143-drm-amdgpu-add-BIF-5.1-register-headers.patch
patch 0144-drm-amdgpu-add-DCE-8.0-register-headers.patch
patch 0145-drm-amdgpu-add-DCE-10.0-register-headers.patch
patch 0146-drm-amdgpu-add-DCE-11.0-register-headers.patch
patch 0147-drm-amdgpu-add-GCA-7.0-register-headers.patch
patch 0148-drm-amdgpu-add-GCA-7.2-register-headers.patch
patch 0149-drm-amdgpu-add-GCA-8.0-register-headers.patch
patch 0150-drm-amdgpu-add-GMC-7.0-register-headers.patch
patch 0151-drm-amdgpu-add-GMC-7.1-register-headers.patch
patch 0152-drm-amdgpu-add-GMC-8.1-register-headers.patch
patch 0153-drm-amdgpu-add-GMC-8.2-register-headers.patch
patch 0154-drm-amdgpu-add-OSS-2.0-register-headers.patch
patch 0155-drm-amdgpu-add-OSS-2.4-register-headers.patch
patch 0156-drm-amdgpu-add-OSS-3.0-register-headers.patch
patch 0157-drm-amdgpu-add-OSS-3.0.1-register-headers.patch
patch 0158-drm-amdgpu-add-SMU-7.0.0-register-headers.patch
patch 0159-drm-amdgpu-add-SMU-7.0.1-register-headers.patch
patch 0160-drm-amdgpu-add-SMU-7.1.0-register-headers.patch
patch 0161-drm-amdgpu-add-SMU-7.1.1-register-headers.patch
patch 0162-drm-amdgpu-add-SMU-7.1.2-register-headers.patch
patch 0163-drm-amdgpu-add-SMU-8.0-register-headers.patch
patch 0164-drm-amdgpu-add-UVD-4.2-register-headers.patch
patch 0165-drm-amdgpu-add-UVD-5.0-register-headers.patch
patch 0166-drm-amdgpu-add-UVD-6.0-register-headers.patch
patch 0167-drm-amdgpu-add-VCE-2.0-register-headers.patch
patch 0168-drm-amdgpu-add-VCE-3.0-register-headers.patch
patch 0169-drm-amdgpu-add-atombios-headers.patch
patch 0170-drm-amdgpu-add-clearstate_defs.h.patch
patch 0171-drm-amdgpu-add-ppsmc.h.patch
patch 0172-drm-amdgpu-add-amdgpu_family.h.patch
patch 0173-drm-amdgpu-add-amdgpu.h-v2.patch
patch 0174-drm-amdgpu-add-core-driver-v4.patch
patch 0175-drm-amdgpu-fix-const-warnings-in-amdgpu_connectors.c.patch
patch 0176-drm-amdgpu-Do-not-directly-dereference-pointers-to-B.patch
patch 0177-drm-amdgpu-Add-support-for-CIK-parts.patch
patch 0178-drm-amdgpu-Add-initial-VI-support.patch
patch 0179-drm-amdgpu-add-CIK-pci-ids.patch
patch 0180-drm-amdgpu-add-VI-pci-ids.patch
patch 0181-drm-amdgpu-drop-ttm-two-ended-allocation.patch
patch 0182-drm-amdgpu-fix-error-check-issue-in-amdgpu_mn_invali.patch
patch 0183-drm-amdgpu-fix-bug-occurs-when-bo_list-is-NULL.patch
patch 0184-drm-amdgpu-let-bo_list-handler-start-from-1.patch
patch 0185-drm-amdgpu-fix-error-handling-in-cz_dpm_hw_fini-cz_d.patch
patch 0186-drm-amdgpu-memset-gds_info-struct-in-info-ioctl.patch
patch 0187-drm-amdgpu-fix-amdgpu.dpm-0-v2.patch
patch 0188-drm-amdgpu-remove-AMDGPU_GEM_CREATE_CPU_GTT_UC.patch
patch 0189-drm-amdgpu-fix-userptr-BO-unpin-bug-v2.patch
patch 0190-drm-amdgpu-fix-userptr-lockup.patch
patch 0191-drm-amdgpu-remove-unsafe-context-releasing.patch
patch 0192-drm-amdgpu-make-the-CTX-ioctl-thread-safe.patch
patch 0193-drm-amdgpu-allow-unaligned-memory-access-v2.patch
patch 0194-drm-amdgpu-add-ctx_id-to-the-WAIT_CS-IOCTL-v4.patch
patch 0195-drm-amdgpu-check-context-id-for-context-switching-v2.patch
patch 0196-drm-amdgpu-add-flags-for-amdgpu_ib-structure.patch
patch 0197-drm-amdgpu-add-CE-preamble-flag-v3.patch
patch 0198-drm-amdgpu-always-emit-GDS-switch.patch
patch 0199-drm-amdgpu-cleanup-HDP-flush-handling.patch
patch 0200-drm-amdgpu-fix-dereference-before-check.patch
patch 0201-drm-amdgpu-fix-context-switch.patch
patch 0202-drm-amdgpu-expose-the-max-virtual-address.patch
patch 0203-drm-amdgpu-do-necessary-NULL-check.patch
patch 0204-drm-amdgpu-switch-to-amdgpu-folder-for-firmware-file.patch
patch 0205-drm-amdgpu-rewording-some-left-radeons.patch
patch 0206-drm-amdgpu-add-new-bonaire-pci-id.patch
patch 0207-drm-amdgpu-add-some-new-tonga-pci-ids.patch
patch 0208-drm-amdgpu-add-and-implement-the-GPU-reset-status-qu.patch
patch 0209-drm-amdgpu-take-the-mode_config-mutex-when-handling-.patch
patch 0210-drm-amdgpu-make-some-DP-parameters-const.patch
patch 0211-drm-amdgpu-simplify-DPCD-debug-output.patch
patch 0212-drm-amdgpu-retry-dcpd-fetch.patch
patch 0213-drm-amdgpu-fix-VM_CONTEXT-_PAGE_TABLE_END_ADDR-handl.patch
patch 0214-drm-amdgpu-enforce-AMDGPU_GEM_CREATE_NO_CPU_ACCESS.patch
patch 0215-drm-amdgpu-validate-amdgpu_vm_bo_map-parameters.patch
patch 0216-drm-amdgpu-actually-use-the-VM-map-parameters.patch
patch 0217-drm-amdgpu-don-t-set-unused-tiling-flags.patch
patch 0218-drm-amdgpu-rework-tiling-flags.patch
patch 0219-drm-amdgpu-remove-unused-TRACE_SYSTEM_STRING-define.patch
patch 0220-drm-amdgpu-recalculate-VCE-firmware-BO-size.patch
patch 0221-drm-amdgpu-implement-VCE-two-instances-support.patch
patch 0222-drm-amdgpu-enable-uvd-dpm-and-powergating.patch
patch 0223-drm-amdgpu-port-fault_reserve_notify-changes-from-ra.patch
patch 0224-drm-amdgpu-drop-AMDGPU_FENCE_SIGNALED_SEQ.patch
patch 0225-drm-amdgpu-rename-amdgpu_ip_funcs-to-amd_ip_funcs-v2.patch
patch 0226-drm-amdgpu-implement-the-allocation-range-v3.patch
patch 0227-drm-amdgpu-fix-bug-of-vm_bo_map-v2.patch
patch 0228-drm-amdgpu-max_pde_used-usage-should-be-under-protec.patch
patch 0229-drm-amdgpu-sync-fence-of-clear_invalids-v2.patch
patch 0230-drm-amdgpu-fence-should-be-added-to-shared-slot.patch
patch 0231-drm-amdgpu-rename-GEM_OP_SET_INITIAL_DOMAIN-GEM_OP_S.patch
patch 0232-drm-amdgpu-remove-all-sh-mem-register-modification-i.patch
patch 0233-drm-amdgpu-fix-description-of-vm_size-module-paramet.patch
patch 0234-drm-amdgpu-remove-mclk_lock.patch
patch 0235-drm-amdgpu-stop-loading-firmware-with-pm.mutex-locke.patch
patch 0236-drm-amdgpu-add-HEVC-H.265-UVD-support.patch
patch 0237-drm-amdgpu-fix-no-hdp-flush-for-compute-ring.patch
patch 0238-drm-amdgpu-add-hdp-flush-for-gfx8-compute-ring.patch
patch 0239-drm-amdgpu-add-max_memory_clock-for-interface-query-.patch
patch 0240-drm-amdgpu-add-ce_ram_size-for-interface-query.patch
patch 0241-drm-amdgpu-add-me-ce-pfp_feature_version-interface-q.patch
patch 0242-drm-amdgpu-add-ib_size-start_alignment-interface-que.patch
patch 0243-drm-amdgpu-add-vram_type-and-vram_bit_width-for-inte.patch
patch 0244-drm-amdgpu-only-support-IBs-in-the-buffer-list-v2.patch
patch 0245-drm-amdgpu-add-zero-timeout-check-in-amdgpu_fence_wa.patch
patch 0246-drm-amdgpu-fix-user-ptr-race-condition.patch
patch 0247-drm-amdgpu-disable-user-fence-interrupt-v2.patch
patch 0248-drm-amdkfd-avoid-CONFIG_-prefix-for-non-Kconfig-symb.patch
patch 0249-drm-amdkfd-add-debug-print-to-kfd_events.c.patch
patch 0250-drm-amdkfd-make-reset-wavefronts-per-process-per-dev.patch
patch 0251-drm-amdkfd-Add-missing-properties-to-CZ-device-info.patch
patch 0252-drm-amdkfd-remove-not-used-defines-from-cik_regs.h.patch
patch 0253-drm-amdgpu-fix-amdgpu_vm_bo_map.patch
patch 0254-drm-amdgpu-fix-saddr-handling-in-amdgpu_vm_bo_unmap.patch
patch 0255-drm-amdgpu-cleanup-VA-IOCTL.patch
patch 0256-drm-amdgpu-also-print-the-pci-revision-when-printing.patch
patch 0257-drm-amdgpu-set-the-gfx-config-properly-for-all-CZ-va.patch
patch 0258-drm-amdgpu-remove-the-VI-hardware-semaphore-in-ring-.patch
patch 0259-drm-amdgpu-fix-the-build-on-big-endian.patch
patch 0260-drm-admgpu-move-XDMA-golden-registers-to-dce-code.patch
patch 0261-drm-amdgpu-whitespace-cleanup-in-gmc8-golden-regs.patch
patch 0262-drm-amdgpu-update-to-latest-gfx8-golden-register-set.patch
patch 0263-drm-amdgpu-cz-don-t-call-smu_init-on-resume.patch
patch 0264-drm-amdgpu-tonga-don-t-call-smu_init-on-resume.patch
patch 0265-drm-amdgpu-iceland-don-t-call-smu_init-on-resume.patch
patch 0266-drm-amdgpu-enable-vce-powergating.patch
patch 0267-drm-amdgpu-fix-UVD-VCE-VM-emulation.patch
patch 0268-drm-amdgpu-don-t-enable-disable-display-twice-on-sus.patch
patch 0269-drm-amdgpu-fix-a-amdgpu_dpm-0-bug.patch
patch 0270-drm-amdkfd-fix-some-range-checks-in-address-watch-io.patch
patch 0271-drm-amdgpu-fix-hpd-range-check-in-dce_v8_0_hpd_irq.patch
patch 0272-drm-amdgpu-Initialize-compute-sdma-and-memory-from-k.patch
patch 0273-drm-amdgpu-Configure-doorbell-to-maximum-slots.patch
patch 0274-drm-amdgpu-simplify-fence-debugfs-output-a-bit.patch
patch 0275-drm-amdgpu-add-BO-map-unmap-trace-point.patch
patch 0276-drm-amdgpu-add-amdgpu_bo_list_set-trace-point.patch
patch 0277-drm-amdgpu-print-the-bo_list-in-the-CS-trace-point-a.patch
patch 0278-drm-amdgpu-fix-wrong-type.patch
patch 0279-drm-amdgpu-silence-invalid-error-message.patch
patch 0280-drm-amdgpu-check-VCE-relocation-buffer-range.patch
patch 0281-drm-amdgpu-make-VCE-handle-check-more-strict.patch
patch 0282-drm-amdgpu-check-VCE-feedback-and-bitstream-index.patch
patch 0283-drm-amdgpu-reset-wptr-at-cp-compute-resume-v2.patch
patch 0284-drm-amdgpu-fix-crash-on-invalid-CS-IOCTL.patch
patch 0285-drm-amdgpu-add-chunk-id-validity-check.patch
patch 0286-drm-amdgpu-use-kzalloc-for-allocating-one-thing.patch
patch 0287-drm-amdgpu-remove-unnecessary-check-before-kfree.patch
patch 0288-drm-amdgpu-allocate-ip_block_enabled-memory-in-commo.patch
patch 0289-drm-amdgpu-correct-define-SMU_EnabledFeatureScoreboa.patch
patch 0290-drm-amdgpu-disable-enable_nb_ps_policy-temporarily.patch
patch 0291-gpu-drm-amdgpu-Fix-build-when-CONFIG_DEBUG_FS-is-not.patch
patch 0292-drm-amdgpu-recreate-fence-from-user-seq.patch
patch 0293-drm-amdgpu-add-optional-dependencies-to-the-CS-IOCTL.patch
patch 0294-drm-amdgpu-add-flag-to-delay-VM-updates.patch
patch 0295-drm-amdgpu-Handle-irqs-only-based-on-irq-ring-not-ir.patch
patch 0296-drm-amdkfd-validate-pdd-where-it-acquired-first.patch
patch 0297-drm-amdgpu-fix-timeout-calculation.patch
patch 0298-drm-amdgpu-validate-the-context-id-in-the-dependenci.patch
patch 0299-drm-amdgpu-stop-context-leak-in-the-error-path.patch
patch 0300-drm-amdgpu-disable-the-IP-module-if-early_init-retur.patch
patch 0301-drm-amdgpu-set-proper-index-data-pair-for-smc-regs-o.patch
patch 0302-drm-amdgpu-remove-bogus-check-in-gfx8-rb-setup.patch
patch 0303-drm-amdgpu-cz-unforce-dpm-levels-before-forcing-to-l.patch
patch 0304-drm-amdgpu-cz-store-the-forced-dpm-level.patch
patch 0305-drm-amdgpu-cz-silence-some-dpm-debug-output.patch
patch 0306-drm-amdgpu-dce8-Re-set-VBLANK-interrupt-state-when-e.patch
patch 0308-drm-amdgpu-Add-H-W-agnostic-amdgpu-amdkfd-interface.patch
patch 0309-drm-amdgpu-add-amdgpu-amdkfd-gfx7-interface.patch
patch 0310-drm-amdgpu-Add-amdgpu-amdkfd-gfx8-interface.patch
patch 0311-drm-amdkfd-Add-dependency-of-DRM_AMDGPU-to-Kconfig.patch
patch 0312-drm-amdkfd-add-supported-CZ-devices-PCI-IDs-to-amdkf.patch
patch 0313-drm-amdkfd-add-CP-HWS-packet-headers-for-VI.patch
patch 0314-drm-amdkfd-add-support-for-VI-in-MQD-manager.patch
patch 0315-drm-amdkfd-Add-support-for-VI-in-DQM.patch
patch 0316-drm-amdkfd-fix-runlist-length-calculation.patch
patch 0317-drm-amdkfd-Implement-create_map_queues-for-Carrizo.patch
patch 0318-drm-amdkfd-Use-generic-defines-in-new-amd-headers.patch
patch 0319-drm-amdkfd-Set-correct-doorbell-packet-type-for-Carr.patch
patch 0320-drm-amdgpu-dce11-Re-set-VBLANK-interrupt-state-when-.patch
patch 0321-drm-amdgpu-dce10-Re-set-VBLANK-interrupt-state-when-.patch
patch 0322-drm-amdgpu-implement-VCE-3.0-harvesting-support-v4.patch
patch 0323-drm-amdgpu-add-VCE-harvesting-instance-query.patch
patch 0324-drm-amdgpu-cz-implement-voltage-validation-properly.patch
patch 0325-drm-amdgpu-cz-dpm-properly-report-UVD-and-VCE-clock-.patch
patch 0326-drm-amdgpu-clean-up-init-sequence-for-failures.patch
patch 0327-drm-amdgpu-information-leak-in-amdgpu_info_ioctl.patch
patch 0328-drm-amdgpu-different-emit_ib-for-gfx-and-compute.patch
patch 0329-drm-amdgpu-hdp_flush-is-not-needed-for-inside-IB.patch
patch 0330-drm-amdgpu-add-new-parameter-to-seperate-map-and-unm.patch
patch 0331-drm-amdgpu-fix-bug-when-amdkfd-destroys-hqd.patch
patch 0332-drm-amdkfd-fix-bug-when-initializing-sdma-vm.patch
patch 0333-drm-amdgpu-fix-rb-setting-for-CZ.patch
patch 0334-drm-amdgpu-increment-queue-when-iterating-on-this-va.patch
patch 0335-drm-amdgpu-add-feature-version-for-RLC-and-MEC-v2.patch
patch 0336-drm-amdgpu-add-feature-version-for-SDMA-ucode.patch
patch 0337-drm-amdgpu-set-fw_version-and-feature_version-for-sm.patch
patch 0338-drm-amdgpu-Use-new-drm_fb_helper-functions.patch
patch 0339-drm-amdgpu-add-context-buffer-size-check-for-HEVC.patch
patch 0340-Revert-drm-amdgpu-Configure-doorbell-to-maximum-slot.patch
patch 0341-drm-amdgpu-fix-one-warning-message.patch
patch 0342-drm-amd-Add-CGS-interfaces.patch
patch 0343-drm-amdgpu-Implement-mmio-callbacks-for-CGS.patch
patch 0344-drm-amdgpu-Implement-the-pciconfig-callbacks-for-CGS.patch
patch 0345-drm-amdgpu-Implement-irq-interfaces-for-CGS.patch
patch 0346-drm-amdgpu-add-atom-interfaces-for-CGS.patch
patch 0347-drm-amdgpu-implement-cgs-gpu-memory-callbacks.patch
patch 0348-drm-amdgpu-add-cgs_get_firmware_info-interface-v2.patch
patch 0349-drm-amdgpu-fix-some-typo-for-cgs-definitions.patch
patch 0350-drm-amdgpu-add-cgs_interface-for-pg-and-cg.patch
patch 0351-drm-amdgpu-cleanup-context-structure-v2.patch
patch 0352-drm-amdgpu-deal-with-foreign-fences-in-amdgpu_sync.patch
patch 0353-drm-amdgpu-add-user-fence-context-map-v2.patch
patch 0354-drm-amdgpu-remove-amdgpu_fence_recreate.patch
patch 0355-drm-amdgpu-fix-context-memory-leak.patch
patch 0356-drm-amdgpu-fix-signed-overrun-in-amdgpu_ctx_get_fenc.patch
patch 0357-drm-amdgpu-no-updates-shouldn-t-cause-vm-flush-v2.patch
patch 0358-drm-amdgpu-rework-vm_grab_id-interface.patch
patch 0359-drm-amdgpu-always-enable-EOP-interrupt-v2.patch
patch 0360-drm-amdgpu-add-fence-suspend-resume-functions.patch
patch 0361-drm-amdgpu-fix-UVD-VCE-fence-handling.patch
patch 0362-drm-amdgpu-move-some-atombios-definitions-to-common-.patch
patch 0363-drm-amdgpu-allow-userspace-to-read-more-debug-regist.patch
patch 0364-drm-amdgpu-add-some-common-definitions-to-amd_shared.patch
patch 0365-drm-amdgpu-add-some-pptable-definitions.patch
patch 0366-drm-amdgpu-merge-amdgpu_family.h-into-amd_shared.h-v.patch
patch 0367-drm-amdgpu-optimize-amdgpu_parser_init.patch
patch 0368-drm-amdgpu-handle-conditional-support-for-CIK-proper.patch
patch 0369-drm-amdgpu-Add-Fiji-DID-0x7300-common-support.patch
patch 0370-drm-amdgpu-Add-Fiji-support-to-the-GMC-8.5-IP-module.patch
patch 0371-drm-amdgpu-Add-Fiji-support-to-IH-module.patch
patch 0372-drm-amdgpu-Add-Fiji-smu-7.1.3-headers-v2.patch
patch 0373-drm-amdgpu-Add-Fiji-support-to-SMC-and-DPM-v2.patch
patch 0374-drm-amdgpu-Add-Fiji-support-to-the-DCE-10.0-IP-modul.patch
patch 0375-drm-amdgpu-Add-Fiji-support-to-the-GFX-8.0-IP-module.patch
patch 0376-drm-amdgpu-Add-Fiji-support-to-the-SDMA-3.0-IP-modul.patch
patch 0377-drm-amdgpu-Add-Fiji-support-to-the-UVD-6.0-IP-module.patch
patch 0378-drm-amdgpu-add-support-for-VCE-3.x-on-Fiji.patch
patch 0379-drm-amdgpu-remove-VM-workaround-for-Fiji.patch
patch 0380-drm-amdgpu-Enable-the-Fiji-DID-0x7300-support.patch
patch 0381-drm-amd-add-basic-scheduling-framework.patch
patch 0382-drm-amdgpu-add-scheduler-initialization.patch
patch 0383-drm-amdgpu-add-context-entity-init.patch
patch 0384-drm-amdgpu-disable-hw-semaphore-with-scheduler.patch
patch 0385-drm-amdgpu-add-backend-implementation-of-gpu-schedul.patch
patch 0386-drm-amdgpu-add-bo-list-copy.patch
patch 0387-drm-amdgpu-dispatch-jobs-in-cs.patch
patch 0388-drm-amdgpu-use-scheduler-user-seq-instead-of-previou.patch
patch 0389-drm-amdgpu-make-sure-the-fence-is-emitted-before-rin.patch
patch 0390-drm-amdgpu-prepare-job-before-push-to-sw-queue-for-p.patch
patch 0391-drm-amdgpu-add-kernel-ctx-support-v2.patch
patch 0392-drm-amdgpu-dispatch-job-for-vm.patch
patch 0393-drm-amdgpu-add-sched-isr-to-fence-process.patch
patch 0394-drm-amdgpu-protect-fence_process-from-multiple-conte.patch
patch 0395-drm-amdgpu-add-enable_scheduler-module-option.patch
patch 0396-drm-amdgpu-add-check-for-callback.patch
patch 0397-drm-amdgpu-fix-syncing-to-VM-updates.patch
patch 0398-drm-amdgpu-silent-the-message-for-GPU-scheduler-crea.patch
patch 0399-drm-amdgpu-add-amdgpu.sched_jobs-option.patch
patch 0400-drm-amdgpu-add-amdgpu.sched_hw_submission-option.patch
patch 0401-drm-amdgpu-wait-forever-for-wait-emit.patch
patch 0402-drm-amdgpu-fix-seq-in-ctx_add_fence.patch
patch 0403-drm-amdgpu-add-helper-function-for-kernel-submission.patch
patch 0404-drm-amdgpu-Use-gpu-scheduler-for-gfx-ring-ib-test.patch
patch 0405-drm-amdgpu-use-gpu-scheduler-for-sdma-ib-test.patch
patch 0406-drm-amdgpu-use-scheduler-for-UVD-ib-test.patch
patch 0407-drm-amdgpu-use-scheduler-for-VCE-ib-test.patch
patch 0408-drm-amdgpu-use-kernel-fence-interface-when-possible.patch
patch 0409-drm-amdgpu-new-implement-for-fence_wait_any-v2.patch
patch 0410-drm-amdgpu-re-implement-fence_default_wait.patch
patch 0411-drm-amdgpu-move-wait_queue_head-from-adev-to-ring-v2.patch
patch 0412-drm-amdgpu-stop-using-addr-to-check-for-BO-move-v3.patch
patch 0413-drm-amdgpu-clean-up-amd-sched-wait_ts-and-wait_signa.patch
patch 0414-drm-amdgpu-use-kernel-fence-diretly-in-amdgpu_bo_fen.patch
patch 0415-drm-amdgpu-use-kernel-fence-for-last_pt_update.patch
patch 0416-drm-amdgpu-change-uvd-ib-test-to-use-kernel-fence-di.patch
patch 0417-drm-amdgpu-use-kernel-fence-for-vce-ib-test.patch
patch 0418-drm-amdgpu-use-kernel-fence-in-amdgpu_test.patch
patch 0419-drm-amdgpu-use-kernel-fence-for-gfx-ib-test.patch
patch 0420-drm-amdgpu-use-kernel-fence-for-sdma-ib-test.patch
patch 0421-drm-amdgpu-add-kernel-fence-in-ib_submit_kernel_help.patch
patch 0422-drm-amdgpu-fix-null-pointer-by-previous-cleanup.patch
patch 0423-drm-amdgpu-some-code-refinement-v2.patch
patch 0424-drm-amdgpu-return-new-seq_no-for-amd_sched_push_job.patch
patch 0425-drm-amdgpu-add-amd_sched_commit.patch
patch 0426-drm-amdgpu-make-last_handled_seq-atomic.patch
patch 0427-drm-amdgpu-add-amd_sched_next_queued_seq-function.patch
patch 0428-drm-amdgpu-move-sched-job-process-from-isr-to-fence-.patch
patch 0429-drm-amdgpu-reorder-the-code-to-avoid-forward-declera.patch
patch 0430-drm-amdgpu-fix-bo-list-handling-in-CS.patch
patch 0431-drm-amdgpu-cleanup-ctx_mgr-init-fini.patch
patch 0432-drm-amdgpu-stop-leaking-the-ctx-id-into-the-schedule.patch
patch 0433-drm-amdgpu-cleanup-amdgpu_ctx-inti-fini-v2.patch
patch 0434-Revert-drm-amdgpu-return-new-seq_no-for-amd_sched_pu.patch
patch 0435-drm-amdgpu-process-sched-job-exactly-triggered-by-fe.patch
patch 0436-drm-amdgpu-remove-unused-parent-entity.patch
patch 0437-drm-amdgpu-fix-coding-style-in-a-couple-of-places.patch
patch 0438-drm-amdgpu-merge-amd_sched_entity-and-amd_context_en.patch
patch 0439-drm-amdgpu-cleanup-and-fix-scheduler-fence-handling-.patch
patch 0440-drm-amdgpu-use-amd_sched_job-in-its-backend-ops.patch
patch 0441-drm-amdgpu-use-kernel-submit-helper-in-vm.patch
patch 0442-drm-amd-add-scheduler-fence-implementation-v2.patch
patch 0443-drm-amdgpu-remove-amdgpu_fence_signaled.patch
patch 0444-drm-amdgpu-use-the-reservation-obj-wait-for-the-UVD-.patch
patch 0445-drm-amdgpu-remove-amdgpu_fence_wait.patch
patch 0446-drm-amdgpu-remove-duplicate-amdgpu_fence_process-imp.patch
patch 0447-drm-amdgpu-cleanup-amdgpu_fence_ring_wait_seq.patch
patch 0448-drm-amdgpu-remove-VI-hw-bug-workaround-v3.patch
patch 0449-drm-amdgpu-Don-t-take-dev-struct_mutex-in-bo_force_d.patch
patch 0450-drm-amdgpu-don-t-grab-dev-struct_mutex-in-pm-functio.patch
patch 0451-drm-amdgpu-fix-scheduler-fence-implementation.patch
patch 0452-drm-amdgpu-remove-unecessary-scheduler-fence-callbac.patch
patch 0453-drm-amdgpu-remove-amd_sched_wait_emit-v2.patch
patch 0454-drm-amdgpu-remove-scheduler-fence-list-v2.patch
patch 0455-drm-amdgpu-fix-UVD-return-code-checking.patch
patch 0456-drm-amdgpu-fix-waiting-for-all-fences-before-flippin.patch
patch 0457-drm-amdgpu-add-reference-for-fence.patch
patch 0458-drm-amdgpu-fix-type-mismatch-error.patch
patch 0459-drm-amdgpu-disable-GPU-reset-by-default.patch
patch 0460-drm-amdgpu-drop-bo_list_clone-when-no-scheduler.patch
patch 0461-drm-amdgpu-fix-duplicated-mapping-invoke-bug.patch
patch 0462-drm-amdgpu-fix-unnecessary-wake-up.patch
patch 0463-drm-amdgpu-move-prepare-work-out-of-scheduler-to-cs_.patch
patch 0464-drm-amdgpu-cleanup-sheduler-rq-handling-v2.patch
patch 0465-drm-amdgpu-wait-on-page-directory-changes.-v2.patch
patch 0466-drm-amdgpu-bump-the-DRM-version-for-new-allowed-mem-.patch
patch 0467-drm-amdgpu-abstract-amdgpu_job-for-scheduler.patch
patch 0468-drm-amdgpu-prepare-job-should-be-common-code-path.patch
patch 0469-drm-amdgpu-some-clean-up-for-cs_ioctl.patch
patch 0470-drm-amdgpu-don-t-need-to-use-bo_list_clone-any-more.patch
patch 0471-drm-amdgpu-use-a-spinlock-instead-of-a-mutex-for-the.patch
patch 0472-drm-amdgpu-free-the-job-immediately-after-dispatchin.patch
patch 0473-drm-amdgpu-fix-zeroing-all-IB-fields-manually-v2.patch
patch 0474-drm-amdgpu-fix-CS-error-handling-v2.patch
patch 0475-drm-amdgpu-Don-t-link-train-DisplayPort-on-HPD-until.patch
patch 0476-drm-amdgpu-fix-IH-ring-allocation-for-bus-addresses-.patch
patch 0477-drm-amdgpu-modify-amdgpu_fence_wait_any-to-amdgpu_fe.patch
patch 0478-drm-amdgpu-improve-sa_bo-fence-by-kernel-fence.patch
patch 0479-drm-amdgpu-remove-v_seq-handling-from-the-scheduler-.patch
patch 0480-drm-amdgpu-rework-scheduler-submission-handling.patch
patch 0481-drm-amdgpu-fix-fence-wait-in-sync_fence-instead-shou.patch
patch 0482-drm-amdgpu-fix-user-fences-when-scheduler-is-enabled.patch
patch 0483-drm-amdgpu-remove-some-more-unused-entity-members-v2.patch
patch 0484-drm-amdgpu-cleanup-entity-picking.patch
patch 0485-drm-amdgpu-fix-entity-wakeup-race-condition.patch
patch 0486-drm-amdgpu-fix-scheduler-thread-creation-error-check.patch
patch 0487-drm-amdgpu-reorder-scheduler-functions.patch
patch 0488-drm-amdgpu-cleanup-a-scheduler-function-name.patch
patch 0489-drm-amdgpu-remove-prepare_job-callback.patch
patch 0490-drm-amdgpu-remove-sched_lock.patch
patch 0491-drm-amdgpu-remove-unused-parameters-to-amd_sched_cre.patch
patch 0492-drm-amdgpu-remove-the-context-from-amdgpu_job.patch
patch 0493-drm-amdgpu-remove-amdgpu_bo_list_clone.patch
patch 0494-drm-amdgpu-fix-and-cleanup-amd_sched_entity_push_job.patch
patch 0495-drm-amdgpu-remove-entity-reference-from-sched-fence.patch
patch 0496-drm-amdgpu-add-owner-for-sched-fence.patch
patch 0497-drm-amdgpu-add-priv-data-to-sched.patch
patch 0498-drm-amdgpu-fix-last_vm_update-fence-is-not-effetive-.patch
patch 0499-drm-amdgpu-fix-no-sync_wait-in-copy_buffer.patch
patch 0500-drm-amdgpu-adjust-the-judgement-of-removing-fence-ca.patch
patch 0501-drm-amdgpu-use-IB-for-copy-buffer-of-eviction.patch
patch 0502-drm-amdgpu-fix-postclose-order.patch
patch 0503-drm-amdgpu-remove-entity-idle-timeout-v2.patch
patch 0504-drm-amdgpu-wake-up-scheduler-only-when-neccessary.patch
patch 0505-drm-amdgpu-remove-extra-parameters-from-scheduler-ca.patch
patch 0506-drm-amdgpu-fix-wait-queue-handling-in-the-scheduler.patch
patch 0507-drm-amdgpu-let-the-scheduler-work-more-with-jobs-v2.patch
patch 0508-drm-amdgpu-add-scheduler-dependency-callback-v2.patch
patch 0509-drm-amdgpu-stop-trying-to-suspend-UVD-sessions-v2.patch
patch 0510-drm-amdgpu-use-IB-for-fill_buffer-instead-of-direct-.patch
patch 0511-amdkfd-use-linux-mman.h-instead-of-uapi-asm-generic-.patch
patch 0512-drm-amdgpu-atom-Send-out-the-full-AUX-address.patch
patch 0513-drm-amdgpu-re-work-sync_resv.patch
patch 0514-drm-amdgpu-partially-revert-modify-amdgpu_fence_wait.patch
patch 0515-drm-amdgpu-fix-amdgpu_bo_unreserve-order-in-GEM_OP-I.patch
patch 0516-drm-amdgpu-make-wait_event-uninterruptible-in-push_j.patch
patch 0517-drm-amdgpu-use-PT-for-VM-sync-on-unmap.patch
patch 0518-drm-amdgpu-add-count-field-for-the-SDMA-NOP-packet-v.patch
patch 0519-drm-amdgpu-add-burst_nop-flag-for-sdma.patch
patch 0520-drm-amdgpu-add-AMDGPU_MAX_SDMA_INSTANCES.patch
patch 0521-drm-amdgpu-add-amdgpu_get_sdma_instance-helper-funct.patch
patch 0522-drm-amdgpu-add-insert_nop-ring-func-and-default-impl.patch
patch 0523-drm-amdgpu-implement-burst-NOP-for-SDMA.patch
patch 0524-drm-amdgpu-set-MEC-doorbell-range-for-Fiji.patch
patch 0525-drm-amdgpu-be-explicit-about-cpu-vram-access-for-dri.patch
patch 0526-drm-amdgpu-use-top-down-allocation-for-non-CPU-acces.patch
patch 0527-drm-amdgpu-fix-typo-in-dce10-watermark-setup.patch
patch 0528-drm-amdgpu-fix-typo-in-dce11-watermark-setup.patch
patch 0529-drm-amdgpu-cz-fix-cz_dpm_update_low_memory_pstate-lo.patch
patch 0530-drm-amdgpu-fix-buffer-placement-under-memory-pressur.patch
patch 0531-drm-amdgpu-fix-warning-in-scheduler.patch
patch 0532-drm-amdgpu-properly-enable-VM-fault-interrupts.patch
patch 0533-drm-amdgpu-remove-ib-test-for-the-second-VCE-Ring.patch
patch 0534-drm-amdgpu-fix-vce3-instance-handling.patch
patch 0535-drm-amdgpu-rename-gmc_v8_0_init_compute_vmid.patch
patch 0536-drm-amdgpu-add-option-to-disable-semaphores.patch
patch 0537-drm-amdgpu-execution-barrier-after-fence-v2.patch
patch 0538-drm-amdgpu-use-write-confirm-for-vm_flush.patch
patch 0539-drm-amdgpu-add-tracepoint-for-scheduler-v2.patch
patch 0540-drm-amdgpu-signal-scheduler-fence-when-hw-submission.patch
patch 0541-drm-amdgpu-move-scheduler-fence-callback-into-fence-.patch
patch 0542-drm-amdgpu-remove-process_job-callback-from-the-sche.patch
patch 0543-drm-amdgpu-fix-overflow-on-32bit-systems.patch
patch 0544-drm-amdgpu-export-reservation_object-from-dmabuf-to-.patch
patch 0545-drm-amdgpu-validate-duplicates-in-the-CS-as-well.patch
patch 0546-drm-amdgpu-use-only-one-reservation-object-for-each-.patch
patch 0547-drm-amdgpu-refine-the-job-naming-for-amdgpu_job-and-.patch
patch 0548-drm-amdgpu-refine-the-scheduler-job-type-conversion.patch
patch 0549-drm-amdgpu-cleanup-entity-init.patch
patch 0550-drm-amdgpu-rename-fence-scheduler-to-sched-v2.patch
patch 0551-drm-amdgpu-cleanup-fence-queue-init-v2.patch
patch 0552-drm-amdgpu-more-scheduler-cleanups-v2.patch
patch 0553-drm-amdgpu-Disable-UVD-PG.patch
patch 0554-drm-amdgpu-make-UVD-handle-checking-more-strict.patch
patch 0555-drm-amdgpu-fix-the-UVD-suspend-sequence-order.patch
patch 0556-drm-amdgpu-fix-UVD-suspend-and-resume-for-VI-APU.patch
patch 0557-drm-amdgpu-use-kmemdup-rather-than-duplicating-its-i.patch
patch 0558-drm-amdgpu-Fix-max_vblank_count-value-for-current-di.patch
patch 0559-drm-amdgpu-unwind-properly-in-amdgpu_cs_parser_init.patch
patch 0560-drm-amdgpu-integer-overflow-in-amdgpu_info_ioctl.patch
patch 0561-drm-amdgpu-info-leak-in-amdgpu_gem_metadata_ioctl.patch
patch 0562-drm-amdgpu-integer-overflow-in-amdgpu_mode_dumb_crea.patch
patch 0563-drm-amdgpu-sync-ce-and-me-with-SWITCH_BUFFER-2.patch
patch 0564-drm-amdgpu-Sprinkle-drm_modeset_lock_all-to-appease-.patch
patch 0565-drm-Move-timestamping-constants-into-drm_vblank_crtc.patch
patch 0566-drm-Stop-using-linedur_ns-and-pixeldur_ns-for-vblank.patch
patch 0567-drm-amdgpu-signedness-bug-in-amdgpu_cs_parser_init.patch
patch 0568-drm-amdgpu-Restore-LCD-backlight-level-on-resume.patch
patch 0569-drm-amdgpu-cgs-remove-import_gpu_mem.patch
patch 0570-drm-amdgpu-only-print-meaningful-VM-faults.patch
patch 0571-drm-amdgpu-Spell-vga_switcheroo-consistently.patch
patch 0572-drm-amdgpu-add-pm-sysfs-files-late.patch
patch 0573-drm-amdgpu-restore-the-fbdev-mode-in-lastclose.patch
patch 0574-drm-amdgpu-fix-num_crtc-on-CZ.patch
patch 0575-drm-irq-Use-unsigned-int-pipe-in-public-API.patch
patch 0576-drm-amdgpu-check-before-checking-pci-bridge-register.patch
patch 0577-drm-amdgpu-flag-iceland-as-experimental.patch
patch 0578-drm-amdgpu-fix-32-bit-compiler-warning.patch
patch 0579-drm-amdgpu-split-gfx8-gpu-init-into-sw-and-hw-parts.patch
patch 0580-drm-amdgpu-add-vram-usage-into-debugfs.patch
patch 0581-drm-amdgpu-add-TOPDOWN-flag-to-the-whole-vram.patch
patch 0582-drm-amdgpu-enable-scheduler-by-default.patch
patch 0583-drm-amdgpu-disable-hw-semaphores-by-default.patch
patch 0584-drm-amdgpu-fix-memory-leak-in-amdgpu_vm_update_page_.patch
patch 0585-drm-amdgpu-atom-implement-debug-opcode.patch
patch 0586-drm-amdgpu-atom-add-support-for-process-ds-opcode.patch
patch 0587-drm-amdgpu-atom-add-support-for-new-mul32-opcodes-v2.patch
patch 0588-drm-amdgpu-atom-add-support-for-new-div32-opcodes-v3.patch
patch 0589-drm-amdgpu-dce10-Use-cursor_set2-hook-for-enabling-d.patch
patch 0590-drm-amdgpu-dce10-Re-show-the-cursor-after-a-modeset-.patch
patch 0591-drm-amdgpu-dce10-Move-hotspot-handling-out-of-set_cu.patch
patch 0592-drm-amdgpu-dce10-Clean-up-reference-counting-and-pin.patch
patch 0593-drm-amdgpu-dce10-Fold-set_cursor-into-show_cursor.patch
patch 0594-drm-amdgpu-dce11-Use-cursor_set2-hook-for-enabling-d.patch
patch 0595-drm-amdgpu-dce11-Re-show-the-cursor-after-a-modeset-.patch
patch 0596-drm-amdgpu-dce11-Move-hotspot-handling-out-of-set_cu.patch
patch 0597-drm-amdgpu-dce11-Clean-up-reference-counting-and-pin.patch
patch 0598-drm-amdgpu-dce11-Fold-set_cursor-into-show_cursor.patch
patch 0599-drm-amdgpu-dce8-Use-cursor_set2-hook-for-enabling-di.patch
patch 0600-drm-amdgpu-dce8-Re-show-the-cursor-after-a-modeset-v.patch
patch 0601-drm-amdgpu-dce8-Move-hotspot-handling-out-of-set_cur.patch
patch 0602-drm-amdgpu-dce8-Clean-up-reference-counting-and-pinn.patch
patch 0603-drm-amdgpu-dce8-Fold-set_cursor-into-show_cursor.patch
patch 0604-drm-amdgpu-unpin-cursor-BOs-on-suspend-and-pin-them-.patch
patch 0605-drm-amdgpu-rework-sdma-structures.patch
patch 0606-drm-amdgpu-clean-up-pageflip-interrupt-handling.patch
patch 0607-drm-amdgpu-Drop-unnecessary-include-linux-vga_switch.patch
patch 0608-drm-amdgpu-also-trace-already-allocated-VMIDs.patch
patch 0610-drm-amdgpu-add-option-to-stop-on-VM-fault.patch
patch 0611-drm-amdgpu-add-option-to-clear-VM-page-tables-after-.patch
patch 0612-drm-amdgpu-add-VM-CS-mapping-trace-point.patch
patch 0613-drm-amdgpu-add-timer-to-fence-to-detect-scheduler-lo.patch
patch 0614-drm-amdgpu-fix-lockup-when-clean-pending-fences.patch
patch 0615-drm-amdgpu-adjust-default-dispclk-v2.patch
patch 0616-drm-amdgpu-Keep-the-pflip-interrupts-always-enabled-.patch
patch 0617-drm-drivers-Drop-DRM_UNLOCKED-from-modeset-drivers.patch
patch 0618-drm-amdgpu-gfx8-set-TC_WB_ACTION_EN-in-RELEASE_MEM-p.patch
patch 0619-drm-amdgpu-dce-simplify-suspend-resume.patch
patch 0620-drm-amdgpu-dpm-don-t-add-pwm-attributes-if-DPM-is-di.patch
patch 0621-drm-amdgpu-add-missing-dpm-check-for-KV-dpm-late-ini.patch
patch 0622-vga_switcheroo-Constify-vga_switcheroo_handler.patch
patch 0623-drm-fix-trivial-typos.patch
patch 0624-drm-amdgpu-remove-old-lockup-detection-infrastructur.patch
patch 0625-drm-amdgpu-remove-the-exclusive-lock.patch
patch 0626-drm-amdgpu-remove-the-unnecessary-parameter-adev-for.patch
patch 0627-drm-amdgpu-fix-the-broken-vm-mutex-V2.patch
patch 0628-drm-amdgpu-add-Stoney-chip-family.patch
patch 0629-drm-amdgpu-add-GMC-support-for-Stoney.patch
patch 0630-drm-amdgpu-Update-SMC-DPM-for-Stoney.patch
patch 0631-drm-amdgpu-add-DCE-support-for-Stoney.patch
patch 0632-drm-amdgpu-add-SDMA-support-for-Stoney-v2.patch
patch 0633-drm-amdgpu-add-GFX-support-for-Stoney-v2.patch
patch 0634-drm-amdgpu-add-UVD-support-for-Stoney.patch
patch 0635-drm-amdgpu-add-VCE-support-for-Stoney-v2.patch
patch 0636-drm-amdgpu-update-the-core-VI-support-for-Stoney.patch
patch 0637-drm-amdgpu-add-Stoney-pci-ids.patch
patch 0638-drm-amdgpu-change-VM-size-default-to-64GB.patch
patch 0639-drm-amdgpu-stop-leaking-page-flip-fence.patch
patch 0640-drm-amdgpu-don-t-try-to-recreate-sysfs-entries-on-re.patch
patch 0641-drm-amdgpu-dce8-optimize-pageflip.patch
patch 0642-drm-amdgpu-dce10-optimize-pageflip.patch
patch 0643-drm-amdgpu-dce11-optimize-pageflip.patch
patch 0644-drm-amdgpu-add-some-additional-CZ-revisions.patch
patch 0645-drm-amdgpu-add-GFX-8.1-register-headers.patch
patch 0646-drm-amdgpu-ignore-scheduler-fences-from-the-same-ent.patch
patch 0647-drm-amdgpu-remove-unneeded-fence-functions.patch
patch 0648-drm-amdgpu-switch-to-common-fence_wait_any_timeout-v.patch
patch 0649-drm-amdgpu-move-ring_from_fence-to-common-code.patch
patch 0650-drm-amdgpu-use-common-fences-for-VMID-management-v2.patch
patch 0651-drm-amdgpu-use-the-new-fence_is_later.patch
patch 0652-drm-amdgpu-use-common-fence-for-sync.patch
patch 0653-drm-amdgpu-remove-amdgpu_fence_ref-unref.patch
patch 0654-drm-amdgpu-Make-amdgpu_mn-functions-inline.patch
patch 0655-drm-amdgpu-don-t-VT-switch-on-suspend.patch
patch 0656-drm-amdgpu-don-t-oops-on-failure-to-load-v2.patch
patch 0657-drm-amd-scheduler-don-t-oops-on-failure-to-load.patch
patch 0658-drm-amdgpu-extract-common-code-in-vi_common_early_in.patch
patch 0659-drm-amdgpu-update-Fiji-s-rev-id.patch
patch 0660-drm-amdgpu-update-Fiji-s-Golden-setting.patch
patch 0661-drm-amdgpu-cleanup-on-error-in-amdgpu_cs_ioctl.patch
patch 0662-drm-amdgpu-fix-stoping-the-scheduler-timeout.patch
patch 0663-drm-amdgpu-fix-fence-fallback-check.patch
patch 0664-drm-amdgpu-remove-now-unused-fence-functions.patch
patch 0665-drm-amdgpu-remove-AMDGPU_FENCE_OWNER_MOVE.patch
patch 0666-drm-amdgpu-group-together-common-fence-implementatio.patch
patch 0667-drm-amdgpu-update-Fiji-s-mmPA_SC_RASTER_CONFIG-value.patch
patch 0668-drm-amdgpu-remove-fence-trace-points.patch
patch 0669-drm-amdgpu-use-a-timer-for-fence-fallback.patch
patch 0670-drm-amdgpu-use-fence_is_later-for-vm_flush-as-well-v.patch
patch 0671-drm-amdgpu-use-common-fence-for-amdgpu_vm_fence.patch
patch 0672-drm-amdgpu-update-fiji_mgcg_cgcg_init-table.patch
patch 0673-drm-amdgpu-add-kmem-cache-for-amdgpu-fence.patch
patch 0674-drm-amd-add-kmem-cache-for-sched-fence.patch
patch 0675-drm-amdgpu-fix-leaking-the-IBs-on-error.patch
patch 0676-drm-amdgpu-cleanup-amdgpu_cs_parser-handling.patch
patch 0677-drm-amdgpu-Fix-default-page-access-routing.patch
patch 0678-drm-amdgpu-fix-seq_printf-format-string.patch
patch 0679-drm-amdgpu-fix-bug-that-can-t-enter-thermal-interrup.patch
patch 0680-drm-amdgpu-update-Fiji-s-tiling-mode-table.patch
patch 0681-drm-amdgpu-add-command-submission-workflow-tracepoin.patch
patch 0682-drm-amdgpu-cleanup-scheduler-fence-get-put-dance.patch
patch 0683-drm-amdgpu-fix-incorrect-mutex-usage-v3.patch
patch 0684-drm-amdgpu-fix-handling-order-in-scheduler-CS.patch
patch 0685-drm-amdgpu-update-pd-while-updating-vm-as-well.patch
patch 0686-drm-amdgpu-wait-interruptible-when-semaphores-are-di.patch
patch 0687-drm-amdgpu-remove-the-unnecessary-parameter-adev-for.patch
patch 0688-drm-amdgpu-fix-typo-in-firmware-name.patch
patch 0689-drm-amdgpu-cleanup-scheduler-command-submission.patch
patch 0690-drm-amdgpu-remove-unused-VM-manager-field.patch
patch 0691-drm-amdgpu-cleanup-VM-coding-style.patch
patch 0692-drm-amdgpu-move-VM-manager-clean-into-the-VM-code-ag.patch
patch 0693-drm-amdgpu-keep-the-owner-for-VMIDs.patch
patch 0694-drm-amdgpu-add-lock-for-interval-tree-in-vm.patch
patch 0695-drm-amdgpu-move-bo_reserve-out-of-amdgpu_vm_clear_bo.patch
patch 0696-drm-amdgpu-reserve-unreserve-objects-out-of-map-unma.patch
patch 0697-drm-amdgpu-reset-vce-trap-interrupt-flag.patch
patch 0698-drm-amdgpu-vce-use-multiple-cache-surface-starting-f.patch
patch 0699-drm-amdgpu-adapt-vce-session-create-interface-change.patch
patch 0700-drm-amdgpu-add-mutex-for-ba_va-valids-invalids.patch
patch 0701-drm-amdgpu-remove-vm-mutex.patch
patch 0702-drm-amdgpu-optimize-scheduler-fence-handling.patch
patch 0703-drm-amdgpu-move-dependency-handling-out-of-atomic-se.patch
patch 0704-drm-amdgpu-fix-userptr-flags-check.patch
patch 0705-drm-amdgpu-fix-VM-page-table-reference-counting.patch
patch 0706-drm-amdgpu-add-err-check-for-pin-userptr.patch
patch 0707-drm-amdgpu-fix-race-condition-in-amd_sched_entity_pu.patch
patch 0708-drm-amdgpu-set-snooped-flags-only-on-system-addresse.patch
patch 0709-drm-amdgpu-take-a-BO-reference-in-the-display-code.patch
patch 0710-drm-amdgpu-take-a-BO-reference-for-the-user-fence.patch
patch 0711-drm-amdgpu-partially-revert-drm-amdgpu-fix-VM_CONTEX.patch
patch 0712-drm-amdgpu-add-spin-lock-to-protect-freed-list-in-vm.patch
patch 0713-drm-amdgpu-Fixup-hw-vblank-counter-ts-for-new-drm_up.patch
patch 0714-drm-amdgpu-fix-the-lost-duplicates-checking.patch
patch 0715-drm-amdgpu-fix-user-fence-handling.patch
patch 0716-drm-amdgpu-call-hpd_irq_event-on-resume.patch
patch 0717-drm-amdgpu-use-src-in-Makefile-v2.patch
patch 0718-drm-amdgpu-add-a-callback-for-reading-the-bios-from-.patch
patch 0719-drm-amdgpu-add-read_bios_from_rom-callback-for-CI-pa.patch
patch 0720-drm-amdgpu-add-read_bios_from_rom-callback-for-VI-pa.patch
patch 0721-drm-amdgpu-Use-new-read-bios-from-rom-callback.patch
patch 0722-drm-amdgpu-Use-unlocked-gem-unreferencing.patch
patch 0723-drm-amd-add-new-gfx8-register-definitions-for-EDC.patch
patch 0724-drm-amdgpu-add-EDC-support-for-CZ-v3.patch
patch 0725-drm-amd-abstract-kernel-rq-and-normal-rq-to-priority.patch
patch 0726-amdgpu-gfxv8-Add-missing-break-to-switch-statement-f.patch
patch 0727-amdgpu-gfxv8-Cleanup-of-gfx_v8_0_tiling_mode_table_i.patch
patch 0728-amdgpu-gfxv8-Simplification-of-gfx_v8_0_create_bitma.patch
patch 0729-amdgpu-gfxv8-Simplification-in-gfx_v8_0_enable_gui_i.patch
patch 0730-amdgpu-gfxv8-Remove-magic-numbers-from-function-gfx_.patch
patch 0731-drm-amdgpu-gfx8-Enable-interrupt-on-ME1_PIPE3.patch
patch 0732-drm-amdgpu-gfx8-update-PA_SC_RASTER_CONFIG-PKR_MAP-o.patch
patch 0733-drm-amdgpu-update-rev-id-register-for-VI.patch
patch 0734-drm-amdgpu-add-more-debugging-output-for-driver-fail.patch
patch 0735-drm-amdgpu-add-entity-only-when-first-job-come.patch
patch 0736-drm-amdgpu-handle-error-case-for-ctx.patch
patch 0737-drm-amdgpu-unify-AMDGPU_CTX_MAX_CS_PENDING-and-amdgp.patch
patch 0738-drm-amdgpu-change-default-sched-jobs-to-32.patch
patch 0739-drm-amdgpu-limit-visible-vram-if-it-s-smaller-than-t.patch
patch 0740-drm-amdgpu-restrict-the-sched-jobs-number-to-power-o.patch
patch 0741-drm-amdgpu-put-VM-page-tables-directly-into-duplicat.patch
patch 0742-drm-amdgpu-split-VM-PD-and-PT-handling-during-CS.patch
patch 0743-drm-amdgpu-keep-the-PTs-validation-list-in-the-VM-v2.patch
patch 0744-drm-amdgpu-fix-dp-link-rate-selection-v2.patch
patch 0745-drm-amdgpu-Fix-off-by-one-errors-in-amdgpu_vm_bo_map.patch
patch 0746-drm-amdgpu-share-struct-amdgpu_pm_state_type-with-po.patch
patch 0747-drm-amdgpu-mv-some-definition-from-amdgpu_acpi.c-to-.patch
patch 0748-drm-amdgpu-mv-amdgpu_acpi.h-to-amd-include-amd_acpi..patch
patch 0749-drm-amdgpu-implement-new-cgs-interface-for-acpi-func.patch
patch 0750-drm-amdgpu-implement-cgs-interface-to-query-system-i.patch
patch 0751-drm-amdgpu-add-new-cgs-interface-to-get-display-info.patch
patch 0752-drm-amd-powerplay-add-basic-powerplay-framework.patch
patch 0753-drm-amdgpu-disable-legacy-path-of-firmware-check-if-.patch
patch 0754-drm-amdgpu-export-amd_powerplay_func-to-amdgpu-and-o.patch
patch 0755-drm-amd-powerplay-add-SMU-manager-sub-component.patch
patch 0756-drm-amd-powerplay-add-hardware-manager-sub-component.patch
patch 0757-drm-amd-powerplay-add-Carrizo-smu-support.patch
patch 0758-drm-amd-powerplay-add-Carrizo-dpm-support.patch
patch 0759-drm-amd-powerplay-add-CG-and-PG-support-for-carrizo.patch
patch 0760-drm-amd-powerplay-add-event-manager-sub-component.patch
patch 0761-drm-amd-powerplay-implement-functions-of-amd_powerpl.patch
patch 0762-drm-amd-powerplay-Add-ixSWRST_COMMAND_1-in-bif_5_0_d.patch
patch 0763-drm-amd-powerplay-Move-smu7-.h-from-amdgpu-to-powerp.patch
patch 0764-drm-amd-powerplay-add-header-file-for-tonga-smu-and-.patch
patch 0765-drm-amd-powerplay-Add-Tonga-SMU-support.patch
patch 0766-drm-amd-powerplay-add-Tonga-dpm-support-v3.patch
patch 0767-drm-amd-powerplay-add-update-headers-for-Fiji-SMU-an.patch
patch 0768-drm-amd-powerplay-update-atomctrl-for-fiji.patch
patch 0769-drm-amd-powerplay-add-Fiji-SMU-support.patch
patch 0770-drm-amd-powerplay-add-Fiji-DPM-support.patch
patch 0771-drm-amdgpu-add-amdgpu.powerplay-module-option.patch
patch 0772-drm-amd-amdgpu-enable-powerplay-and-smc-firmware-loa.patch
patch 0773-drm-amdgpu-powerplay-add-function-point-in-hwmgr_fun.patch
patch 0774-drm-amdgpu-poweprlay-export-program-display-gap-func.patch
patch 0775-drm-amdgpu-powerplay-implement-pem_task-for-display_.patch
patch 0776-drm-amdgpu-powerplay-program-display-gap-for-tonga.patch
patch 0777-drm-amdgpu-enable-powerplay-module-by-default-for-to.patch
patch 0778-drm-amdgpu-enable-powerplay-module-by-default-for-fi.patch
patch 0779-drm-amdgpu-powerplay-add-some-definition-for-other-i.patch
patch 0780-drm-amd-powerplay-add-new-function-point-in-hwmgr_fu.patch
patch 0781-drm-amd-powerplay-Add-CG-and-PG-support-for-tonga.patch
patch 0782-drm-amdgpu-powerplay-add-new-function-point-in-hwmgr.patch
patch 0783-drm-amdgpu-powerplay-mv-ppinterrupt.h-to-inc-folder-.patch
patch 0784-drm-amdgpu-powerplay-add-thermal-control-interface-i.patch
patch 0785-drm-amdgpu-powerplay-enable-thermal-interrupt-task-i.patch
patch 0786-drm-amdgpu-powerplay-implement-thermal-control-for-t.patch
patch 0787-drm-amdgpu-powerplay-implement-fan-control-interface.patch
patch 0788-drm-amdgpu-export-fan-control-functions-to-amdgpu.patch
patch 0789-drm-amdgpu-enable-sysfs-interface-for-powerplay.patch
patch 0790-drm-amdgpu-support-per-device-powerplay-enablement-v.patch
patch 0791-drm-amd-powerplay-add-and-export-hwmgr-interface-to-.patch
patch 0792-drm-amd-powerplay-implement-new-funcs-to-check-curre.patch
patch 0793-drm-amd-powerplay-refine-the-logic-of-whether-need-t.patch
patch 0794-drm-amd-powerplay-tonga-enable-pcie-and-mclk-forcing.patch
patch 0795-drm-amd-powerplay-fiji-enable-pcie-and-mclk-forcing-.patch
patch 0796-drm-amdgpu-extract-pcie-helpers-to-common-header.patch
patch 0797-drm-amdgpu-store-pcie-gen-mask-and-link-width.patch
patch 0798-drm-amdgpu-cgs-add-sys-info-query-for-pcie-gen-and-l.patch
patch 0799-drm-amdgpu-powerplay-tonga-query-supported-pcie-info.patch
patch 0800-drm-amdgpu-powerplay-fiji-query-supported-pcie-info-.patch
patch 0801-drm-amd-powerplay-fix-boolreturn.cocci-warnings.patch
patch 0802-drm-amd-powerplay-tonga-Add-UVD-DPM-init.patch
patch 0803-drm-amd-amdgpu-add-gfx-clock-gating-support-for-Fiji.patch
patch 0804-drm-amd-amdgpu-add-gmc-clock-gating-support-for-Fiji.patch
patch 0805-drm-amdgpu-add-sdma-clock-gating-support-for-Fiji.patch
patch 0806-drm-amd-powerplay-add-parts-of-system-clock-gating-s.patch
patch 0807-drm-amd-powerplay-enable-clock-gating-for-Fiji.patch
patch 0808-drm-amd-powerplay-add-atomctrl-function-to-calculate.patch
patch 0809-drm-amd-powerplay-implement-smc-state-upload-for-CZ.patch
patch 0810-drm-amd-powerplay-fix-warning-of-cast-to-pointer-fro.patch
patch 0811-drm-amd-powerplay-fix-warning-of-cast-to-pointer-fro.patch
patch 0812-amdgpu-powerplay-Add-Stoney-to-list-of-early-init-ca.patch
patch 0813-drm-amd-powerplay-add-new-function-point-in-hwmgr.patch
patch 0814-drm-amd-powerplay-add-smc-msg-for-NB-P-State-switch.patch
patch 0815-drm-amd-powerplay-export-interface-to-DAL-to-init-ch.patch
patch 0816-drm-amd-powerplay-enable-set_cpu_power_state-task.-v.patch
patch 0817-drm-amd-powerplay-enable-disable-NB-pstate-feature-f.patch
patch 0818-drm-amd-powerplay-Add-PPLib-debug-print-macro.patch
patch 0819-drm-amdgpu-rename-tonga_smumgr.h-to-tonga_smum.h.patch
patch 0820-drm-amdgpu-rename-fiji_smumgr.h-to-fiji_smum.h.patch
patch 0821-drm-amd-powerplay-add-multimedia-power-gating-suppor.patch
patch 0822-drm-amd-amdgpu-add-uvd6.0-clock-gating-support.-v2.patch
patch 0823-drm-amd-amdgpu-add-vce3.0-clock-gating-support.-v2.patch
patch 0824-drm-amd-amdgpu-enable-uvd-vce-clock-gating-for-Fiji.patch
patch 0825-drm-amdgpu-Prepare-DKMS-build-for-powerplay-module.patch
patch 0826-drm-amd-powerplay-add-display-configeration-changed-.patch
patch 0827-drm-amd-powerplay-Add-thermal-protection-support-for.patch
patch 0828-drm-amd-powerplay-Fix-a-bug-in-fan-control-setting-d.patch
patch 0829-drm-amd-powerplay-add-functions-set-get_fan_control_.patch
patch 0830-drm-amd-powerplay-add-functions-set-get_fan_control_.patch
patch 0831-drm-amd-powerplay-fix-boolreturn.cocci-warnings.patch
patch 0832-drm-amd-powerplay-fix-bug-that-dpm-funcs-in-debugfs-.patch
patch 0833-drm-amd-powerplay-check-whether-enable-dpm-in-powerp.patch
patch 0834-drm-amd-powerplay-move-shared-function-of-vi-to-hwmg.patch
patch 0835-drm-amdgpu-powerplay-enable-sysfs-and-debugfs-interf.patch
patch 0836-drm-amd-powerplay-display-gpu-load-when-print-perfor.patch
patch 0837-amd-powerplay-Implement-get-dal-power-level.patch
patch 0838-amd-powerplay-Fix-get-dal-power-level.patch
patch 0839-amd-powerplay-Add-structures-required-to-report-conf.patch
patch 0840-drm-powerplay-add-debugging-output-to-tonga_processp.patch
patch 0841-drm-powerplay-add-debugging-output-to-processpptable.patch
patch 0842-drm-powerplay-hwmgr-log-errors-in-tonga_hwmgr_backen.patch
patch 0843-drm-amd-powerplay-Don-t-return-an-error-if-fan-table.patch
patch 0844-drm-amdgpu-powerplay-Program-a-calculated-value-as-D.patch
patch 0845-drm-amd-powerplay-add-point-check-to-avoid-NULL-poin.patch
patch 0846-drm-amd-powerplay-check-whether-need-to-enable-therm.patch
patch 0847-drm-amd-powerplay-show-gpu-load-when-print-gpu-perfo.patch
patch 0848-amd-powerplay-don-t-enable-ucode-fan-control-if-vbio.patch
patch 0849-amd-powerplay-disable-powerplay-by-default-initially.patch
patch 0850-amd-powerplay-fix-copy-paste-typo-in-hardwaremanager.patch
patch 0851-drm-powerplay-use-div64_s64-instead-of-do_div.patch
patch 0852-drm-amd-powerplay-fix-a-reversed-condition.patch
patch 0853-drm-amdgpu-cgs-cleanup-some-indenting.patch
patch 0854-drm-amd-powerplay-precedence-bug-in-init_non_clock_f.patch
patch 0855-drm-amdgpu-fix-NULL-in-vm_grab_id-while-S3-back.patch
patch 0856-amdgpu-vce3-Cleanup-harvest-config-function.patch
patch 0857-amdgpu-vce3-Simplify-idle-and-wait-for-idle-code.patch
patch 0858-amdgpu-vce3-Simplify-vce_v3_0_soft_reset.patch
patch 0859-amdgpu-vce3-Simplify-vce_v3_0_process_interrupt.patch
patch 0860-amdgpu-vce3-Remove-magic-constants-from-harvest-regi.patch
patch 0861-amdgpu-vce3-Simplify-vce_v3_0_hw_init-and-ensure-bot.patch
patch 0862-amdgpu-dce11-Remove-division-from-dce_v11_0_vblank_w.patch
patch 0863-amdgpu-dce11-Add-test-for-crtc-0-to-various-DCEv11-f.patch
patch 0864-drm-amd-powerplay-fix-bug-that-NULL-checks-are-rever.patch
patch 0865-drm-amd-powerplay-fix-Smatch-static-checker-warnings.patch
patch 0866-drm-amd-powerplay-fix-Smatch-static-checker-warnings.patch
patch 0867-drm-amd-powerplay-add-powerplay-valid-check-to-avoid.patch
patch 0868-drm-amd-powerplay-Reload-and-initialize-the-smc-firm.patch
patch 0869-drm-amdgpu-Show-gpu-load-when-display-gpu-performanc.patch
patch 0870-drm-amdgpu-Show-gpu-load-when-display-gpu-performanc.patch
patch 0871-drm-amdgpu-fix-hex-decimal-bug-when-show-gpu-load.patch
patch 0872-drm-amd-powerplay-add-thermal-control-task-when-resu.patch
patch 0873-drm-amd-powerplay-enable-set-boot-state-task.patch
patch 0874-drm-amd-powerplay-enable-power-down-asic-task.-v2.patch
patch 0875-drm-amd-powerplay-implement-power-down-asic-task-for.patch
patch 0876-drm-amdgpu-add-warning-to-amdgpu_bo_gpu_offset-v2.patch
patch 0877-drm-amdgpu-powerplay-include-asm-div64.h-for-do_div.patch
patch 0878-drm-amdgpu-cgs-add-an-interface-to-access-PCI-resour.patch
patch 0879-drm-amdgpu-add-irq-domain-support.patch
patch 0880-drm-amd-powerplay-fix-static-checker-warning-for-ret.patch
patch 0881-drm-amdgpu-fix-lost-sync_to-if-scheduler-is-enabled.patch
patch 0882-drm-amdgpu-cz-add-code-to-enable-forcing-UVD-clocks.patch
patch 0883-drm-amdgpu-cz-add-code-to-enable-forcing-VCE-clocks.patch
patch 0884-drm-amdgpu-cz-force-uvd-clocks-when-sclks-are-forced.patch
patch 0885-drm-amdgpu-cz-force-vce-clocks-when-sclks-are-forced.patch
patch 0886-drm-amdgpu-use-kobj_to_dev.patch
patch 0887-drm-amdgpu-move-VM-page-tables-to-the-LRU-end-on-CS-.patch
patch 0888-drm-amdgpu-validate-duplicates-first.patch
patch 0889-drm-amdgpu-fix-tonga-smu-resume.patch
patch 0890-drm-amdgpu-Add-some-tweaks-to-gfx-8-soft-reset.patch
patch 0891-drm-amdgpu-Use-drm_calloc_large-for-VM-page_tables-a.patch
patch 0892-drm-amdgpu-Allow-the-driver-to-load-if-amdgpu.powerp.patch
patch 0893-drm-amd-amdgpu-Improve-amdgpu_dpm-macros-to-avoid-un.patch
patch 0894-drm-amdgpu-fix-amdgpu_bo_pin_restricted-VRAM-placing.patch
patch 0895-drm-amdgpu-add-a-message-to-indicate-when-powerplay-.patch
patch 0896-drm-amdgpu-fix-next_rptr-handling-for-debugfs.patch
patch 0897-drm-amdgpu-don-t-init-fbdev-if-we-don-t-have-any-con.patch
patch 0898-drm-amd-powerplay-Update-SMU-firmware-loading-for-St.patch
patch 0899-drm-amdgpu-only-move-pt-bos-in-LRU-list-on-success.patch
patch 0900-drm-amdgpu-fix-non-ANSI-declaration-of-amdgpu_amdkfd.patch
patch 0901-drm-amdkfd-Remove-unnecessary-cast-in-kfree.patch
patch 0902-drm-amdgpu-no-need-to-load-MC-firmware-on-fiji.patch
patch 0903-drm-amdgpu-mask-out-WC-from-BO-on-unsupported-arches.patch
patch 0904-drm-amdgpu-gfx8-enable-cp-inst-reg-error-interrupts.patch
patch 0905-drm-amdgpu-gfx7-enable-cp-inst-reg-error-interrupts.patch
patch 0906-drm-amdgpu-move-gmc7-support-out-of-CIK-dependency.patch
patch 0907-drm-amdgpu-iceland-use-CI-based-MC-IP.patch
patch 0908-drm-amdgpu-The-VI-specific-EXE-bit-should-only-apply.patch
patch 0909-drm-amdgpu-pull-topaz-gmc-bits-into-gmc_v7.patch
patch 0910-drm-amdgpu-drop-topaz-support-from-gmc8-module.patch
patch 0911-drm-amdgpu-don-t-load-MEC2-on-topaz.patch
patch 0912-drm-amdgpu-load-MEC-ucode-manually-on-iceland.patch
patch 0913-drm-amdgpu-remove-exp-hardware-support-from-iceland.patch
patch 0914-drm-amdgpu-disable-uvd-and-vce-clockgating-on-Fiji.patch
patch 0915-drm-amdgpu-add-pcie-cap-module-parameters-v2.patch
patch 0916-drm-amdgpu-cik-don-t-mess-with-aspm-if-gpu-is-root-b.patch
patch 0917-drm-amdgpu-dpm-ci-switch-over-to-the-common-pcie-cap.patch
patch 0918-drm-amdgpu-handle-uvd-pg-flags-properly.patch
patch 0919-drm-amdgpu-handle-vce-pg-flags-properly.patch
patch 0920-drm-amdgpu-clean-up-vce-pg-flags-for-cz-st.patch
patch 0921-drm-amdgpu-be-consistent-with-uvd-cg-flags.patch
patch 0922-drm-amd-powerplay-cz-disable-uvd-pg.patch
patch 0923-drm-amd-powerplay-cz-disable-vce-pg.patch
patch 0924-drm-amd-powerplay-tonga-disable-uvd-pg.patch
patch 0925-drm-amd-powerplay-tonga-disable-vce-pg.patch
patch 0926-drm-amdgpu-add-a-cgs-interface-to-fetch-cg-and-pg-fl.patch
patch 0927-drm-amdgpu-remove-unused-cg-defines.patch
patch 0928-drma-dmgpu-move-cg-and-pg-flags-into-shared-headers.patch
patch 0929-drm-amdgpu-tonga-plumb-pg-flags-through-to-powerplay.patch
patch 0930-drm-amdgpu-cz-plumb-pg-flags-through-to-powerplay.patch
patch 0931-drm-amdgpu-fix-s4-resume.patch
patch 0932-drm-amdgpu-hold-reference-to-fences-in-amdgpu_sa_bo_.patch
patch 0933-drm-amdgpu-remove-unnecessary-forward-declaration.patch
patch 0934-drm-amdgpu-fix-issue-with-overlapping-userptrs.patch
patch 0935-drm-amdgpu-use-post-decrement-in-error-handling.patch
patch 0936-drm-amdgpu-Don-t-hang-in-amdgpu_flip_work_func-on-di.patch
patch 0937-drm-amdgpu-gfx8-fix-priv-reg-interrupt-enable.patch
patch 0938-drm-amdgpu-fix-locking-in-force-performance-level.patch
patch 0939-drm-amdgpu-pm-add-some-checks-for-PX.patch
patch 0940-drm-amdgpu-pm-adjust-display-configuration-after-pow.patch
patch 0941-amdgpu-fix-NULL-pointer-dereference-at-tonga_check_s.patch
patch 0942-drm-amdgpu-disable-direct-VM-updates-when-vm_debug-i.patch
patch 0943-drm-amdgpu-pm-update-current-crtc-info-after-setting.patch
patch 0944-drm-amd-powerplay-export-AMD_PP_EVENT_COMPLETE_INIT-.patch
patch 0945-drm-amd-powerplay-send-event-to-notify-powerplay-all.patch
patch 0946-drm-amdgpu-apply-gfx_v8-fixes-to-gfx_v7-as-well.patch
patch 0947-drm-amdgpu-gfx8-specify-which-engine-to-wait-before-.patch
patch 0948-drm-amdgpu-cz-enable-disable-vce-dpm-even-if-vce-pg-.patch
patch 0949-drm-amdgpu-powerplay-cz-enable-disable-vce-dpm-indep.patch
patch 0950-drm-amdgpu-cz-remove-commented-out-call-to-enable-vc.patch
patch 0951-drm-amd-powerplay-indent-a-couple-if-statements.patch
patch 0952-drm-amdgpu-fix-amdgpu_cs_get_threshold_for_moves-han.patch
patch 0953-drm-amdgpu-cleanup-amdgpu_cs_list_validate.patch
patch 0954-drm-amdgpu-group-VM-mapping-tree-with-its-lock-v2.patch
patch 0955-drm-amdgpu-cleanup-amdgpu_cs_parser-structure.patch
patch 0956-drm-amdgpu-cleanup-amdgpu_cs_parser_relocs.patch
patch 0957-drm-amdgpu-cleanup-bo-list-bucket-handling.patch
patch 0958-drm-amdgpu-keep-the-prefered-allowed-domains-in-the-.patch
patch 0959-drm-amdgpu-search-only-the-BO-list-for-VM-mappings.patch
patch 0960-drm-amdgpu-try-to-find-BO-VAs-only-for-the-BOs-in-th.patch
patch 0961-drm-amdgpu-clean-up-hw-semaphore-support-in-driver.patch
patch 0962-drm-amdgpu-cleanup-amdgpu_sync_rings-V2.patch
patch 0963-drm-amdgpu-clean-up-non-scheduler-code-path-v2.patch
patch 0964-drm-amdgpu-remove-some-more-semaphore-leftovers.patch
patch 0965-drm-amdgpu-remove-sync_to-from-sync-obj-v2.patch
patch 0966-drm-amdgpu-cleanup-sync_seq-handling.patch
patch 0967-drm-amdgpu-clean-up-asic-level-reset-for-CI.patch
patch 0968-drm-amdgpu-clean-up-asic-level-reset-for-VI.patch
patch 0969-drm-amdgpu-post-card-after-hard-reset.patch
patch 0970-drm-amdgpu-add-a-debugfs-property-to-trigger-a-GPU-r.patch
patch 0971-drm-amdgpu-drop-hard_reset-module-parameter.patch
patch 0972-drm-amdgpu-add-VM-pointer-to-id-trace.patch
patch 0973-drm-amdgpu-grab-VMID-before-submitting-job-v5.patch
patch 0974-drm-amdgpu-merge-vm_grab_id-and-vm_fence-v2.patch
patch 0975-drm-amdgpu-use-a-global-LRU-list-for-VMIDs.patch
patch 0976-drm-amdgpu-remove-the-ring-lock-v2.patch
patch 0977-drm-amdgpu-remove-rptr-checking.patch
patch 0978-drm-amd-powerplay-add-some-sysfs-interfaces-for-powe.patch
patch 0979-drm-amd-powerplay-add-hwmgr-s-functions-for-Fiji-sys.patch
patch 0980-drm-amd-powerplay-add-some-hwmgr-functions-for-sysfs.patch
patch 0981-drm-amd-powerplay-add-some-hwmgr-functions-for-sysfs.patch
patch 0982-drm-amd-add-dce8-enum-register-header.patch
patch 0983-drm-amdgpu-drop-a-dummy-wakeup-scheduler.patch
patch 0984-drm-amdgpu-use-WARN_ON_ONCE-instead-of-BUG_ON-in-the.patch
patch 0985-drm-amdgpu-remove-nonsense-IB-size-checks.patch
patch 0986-drm-amdgpu-move-more-logic-into-amdgpu_vm_map_gart-v.patch
patch 0987-drm-amdgpu-use-BOs-GART-instance-for-mapping-address.patch
patch 0988-drm-amdgpu-split-VM-mappings-into-smaller-operations.patch
patch 0989-drm-amdgpu-optimize-VM-fencing.patch
patch 0990-drm-amdgpu-cleanup-comments-in-VM-code.patch
patch 0991-drm-amdgpu-optimize-amdgpu_vm_update_ptes-a-bit.patch
patch 0992-drm-amdgpu-remove-power-of-two-limit-for-vramlimit.patch
patch 0993-drm-amd-add-ACP-driver-support.patch
patch 0994-drm-amd-add-pm-domain-for-ACP-IP-sub-blocks.patch
patch 0995-drm-amdgpu-remove-unused-function.patch
patch 0996-drm-amdgpu-add-check-for-atombios-GPU-virtualization.patch
patch 0997-drm-amdgpu-track-whether-the-asic-supports-SR-IOV.patch
patch 0998-drm-amdgpu-always-repost-cards-that-support-SR-IOV.patch
patch 0999-drm-amdgpu-gmc8-skip-MC-ucode-loading-on-SR-IOV-capa.patch
patch 1000-drm-amdgpu-smu-skip-SMC-ucode-loading-on-SR-IOV-capa.patch
patch 1001-drm-amdgpu-fix-size-estimation-for-clear-IB.patch
patch 1002-drm-amdgpu-add-amdgpu_set_ib_value-helper-v2.patch
patch 1003-drm-amdgpu-separate-pushing-CS-to-scheduler.patch
patch 1004-drm-amdgpu-gfx-minor-code-cleanup.patch
patch 1005-drm-amdgpu-check-userptrs-mm-earlier.patch
patch 1006-drm-amdgpu-remove-adev-and-fence-from-amdgpu_sync_fr.patch
patch 1007-drm-amdgpu-remove-AMDGPU_NUM_SYNCS.patch
patch 1008-drm-amdgpu-fix-num_ibs-check.patch
patch 1009-drm-amdgpu-add-proper-job-alloc-free-functions.patch
patch 1010-drm-amdgpu-cleanup-user-fence-handling-in-the-CS.patch
patch 1011-drm-amdgpu-make-pad_ib-a-ring-function-v3.patch
patch 1012-drm-amdgpu-move-ring-from-IBs-into-job.patch
patch 1013-drm-amdgpu-directly-return-fence-from-ib_schedule.patch
patch 1014-drm-amdgpu-send-SDMA-GFX-IB-tests-directly-to-the-ri.patch
patch 1015-drm-amdgpu-cleanup-in-kernel-job-submission.patch
patch 1016-drm-amdgpu-rename-amdgpu_sched.c-to-amdgpu_job.c.patch
patch 1017-drm-amdgpu-send-UVD-IB-tests-directly-to-the-ring-ag.patch
patch 1018-drm-amdgpu-send-VCE-IB-tests-directly-to-the-ring-ag.patch
patch 1019-drm-amdgpu-move-sync-into-job-object.patch
patch 1020-drm-amdgpu-Don-t-crash-system-if-we-can-t-get-crtc.patch
patch 1021-drm-amdgpu-Move-MMIO-flip-out-of-spinlocked-region.patch
patch 1022-drm-amd-Adding-IVSRC-register-headers.patch
patch 1023-drm-amd-powerplay-change-struct-name.patch
patch 1024-drm-amd-powerplay-export-interface-to-DAL.patch
patch 1025-drm-amd-powerplay-implement-functions-in-carrizo-for.patch
patch 1026-drm-amd-powerplay-Make-declarations-of-functions-exp.patch
patch 1027-drm-amd-powerplay-Use-engine-clock-limit-calculated-.patch
patch 1028-drm-amd-powerplay-get-real-display-device-num-by-cgs.patch
patch 1029-drm-amd-powerplay-Use-correct-clock-in-cz_apply_stat.patch
patch 1030-drm-amd-powerplay-Enable-low-mem-pstate-when-cancel_.patch
patch 1031-drm-amd-powerplay-add-powerplay-valid-check-to-avoid.patch
patch 1032-drm-amdgpu-gfx7-Reduce-linecount-in-table-init.patch
patch 1033-drm-amdgpu-gfx7-Simplify-bitmask-creation.patch
patch 1034-drm-amdgpu-gfx7-LOC-reduction-in-gfx_v7_0_setup_rb.patch
patch 1035-drm-amdgpu-gfx7-Simplify-wptr-rptr-functions.patch
patch 1036-drm-amdgpu-gfx7-Fix-whitespace.patch
patch 1037-drm-amd-include-Update-dce-8-headers-for-dal.patch
patch 1038-drm-amdgpu-remove-the-userptr-rmn-lock.patch
patch 1039-drm-amdgpu-use-per-VM-entity-for-page-table-updates-.patch
patch 1040-drm-amdgpu-remove-is_pte_ring.patch
patch 1041-drm-amdgpu-use-SDMA-round-robin-for-VM-updates-v3.patch
patch 1042-drm-amdgpu-use-separate-scheduler-entitiy-for-buffer.patch
patch 1043-drm-amdgpu-use-separate-scheduler-entity-for-UVD-sub.patch
patch 1044-drm-amdgpu-use-separate-scheduler-entity-for-VCE-sub.patch
patch 1045-drm-amdgpu-nuke-the-kernel-context.patch
patch 1046-drm-amdgpu-fix-coding-style-in-amdgpu_ctx.c.patch
patch 1047-drm-amdgpu-gfx-clean-up-harvest-configuration-v2.patch
patch 1048-drm-amdgpu-gfx7-rework-gpu_init.patch
patch 1049-drm-amdgpu-cik-move-sdma-tiling-config-setup-into-sd.patch
patch 1050-drm-amdgpu-cik-move-uvd-tiling-config-setup-into-uvd.patch
patch 1051-drm-amdgpu-vi-move-sdma-tiling-config-setup-into-sdm.patch
patch 1052-drm-amdgpu-vi-move-uvd-tiling-config-setup-into-uvd-.patch
patch 1053-drm-amdgpu-Fix-race-condition-in-MMU-notifier-releas.patch
patch 1054-drm-amdgpu-remove-fence-reset-detection-leftovers.patch
patch 1055-drm-amdgpu-stop-calling-amdgpu_gpu_reset-from-the-fl.patch
patch 1056-drm-amdgpu-stop-blocking-for-page-filp-fences.patch
patch 1057-drm-amdgpu-remove-page-flip-work-queue-v3.patch
patch 1058-drm-amdgpu-print-pid-as-integer.patch
patch 1059-drm-amdgpu-print-the-BO-size-only-once-in-amdgpu_gem.patch
patch 1060-drm-amdgpu-optionally-print-the-pin-count-in-gem_inf.patch
patch 1061-drm-amdgpu-print-the-GPU-offset-as-well-in-gem_info.patch
patch 1062-drm-amdgpu-rework-GEM-info-printing.patch
patch 1063-drm-amdgpu-cleanup-gem-init-finit.patch
patch 1064-drm-amdgpu-Fix-race-condition-in-amdgpu_mn_unregiste.patch
patch 1065-drm-amdgpu-Don-t-call-interval_tree_remove-in-amdgpu.patch
patch 1066-drm-amdgpu-gfx-fix-off-by-one-in-rb-rework-v2.patch
patch 1067-drm-amd-Do-not-make-DRM_AMD_ACP-default-to-y.patch
patch 1068-drm-amd-powerplay-fix-code-style-warning.patch
patch 1069-drm-amdgpu-fix-error-handling-in-amdgpu_bo_list_set.patch
patch 1070-drm-amd-cleanup-get_mfd_cell_dev.patch
patch 1071-drm-amdgpu-update-radeon-acpi-header.patch
patch 1072-drm-amdgpu-fix-VM-faults-caused-by-vm_grab_id-v4.patch
patch 1073-drm-amdgpu-trace-the-pd_addr-in-vm_grab_id-as-well.patch
patch 1074-drm-amdgpu-fix-rb-bitmap-cu-bitmap-calculation.patch
patch 1075-drm-amd-dal-Add-dal-display-driver.patch
patch 1076-drm-amd-dal-Adding-amdgpu_dm-for-dal-v2.patch
patch 1077-drm-amdgpu-Use-dal-driver-for-CZ.patch
patch 1078-drm-amdgpu-fix-build-failure-with-DAL-integrated.patch
patch 1079-drm-amd-dal-Fix-64-bit-division-for-32-bit-systems.patch
patch 1080-drm-amd-dal-Use-fixed-types-instead-of-int-long-long.patch
patch 1081-drm-amd-dal-delay-mst-detection-start-till-first-drm.patch
patch 1082-drm-amd-dal-Allocate-encoder-possible_crtc-mask-corr.patch
patch 1083-drm-amd-dal-Reorganize-link-encoder-and-stream-encod.patch
patch 1084-drm-amd-dal-Assign-stream-encoder-in-MST-use-case.patch
patch 1085-drm-amd-dal-Clean-up-Link-Stream-Encoder.patch
patch 1086-drm-amd-dal-atomic-validate-fix.patch
patch 1087-drm-amd-dal-fix-mem_input-naming-and-function-order.patch
patch 1088-drm-amd-dal-Pass-in-adapter_service-to-stream-encode.patch
patch 1089-drm-amd-dal-add-missed-mst-callback-implementation.patch
patch 1090-drm-amd-dal-Pass-in-Bios-Parser-instead-of-Adapter-S.patch
patch 1091-drm-amd-dal-MST-two-monitors-light-up-add-PHY-payloa.patch
patch 1092-drm-amd-dal-merged-wm-programming-merged-pixel-durat.patch
patch 1093-drm-amd-dal-MST-two-monitors-light-up-clean-up-2.patch
patch 1094-drm-amd-dal-reduce-input-for-mem_input_program_surfa.patch
patch 1095-drm-amd-dal-Clean-up-Stream-Encoder.patch
patch 1096-drm-amd-dal-Move-scaling-param-to-commit-surface-and.patch
patch 1097-drm-amd-dal-Add-delay-for-MST-after-LT.patch
patch 1098-drm-amd-dal-Don-t-retrain-the-link-when-enabling-2nd.patch
patch 1099-drm-amd-dal-Use-correct-index-when-iterating-enabled.patch
patch 1100-drm-amd-dal-Reset-DPCD-sink-count-on-disconnect.patch
patch 1101-drm-amd-dal-refactor-helpers-to-use-dc-types.patch
patch 1102-drm-amd-dal-keep-streams-in-public-target.patch
patch 1103-drm-amd-dal-Add-PPLib-interfaces-to-get-Static-Clock.patch
patch 1104-drm-amd-dal-Fix-engine_id-usage-in-update_mst_stream.patch
patch 1105-drm-amd-dal-Fix-bug-for-DP-MST-audio.patch
patch 1106-drm-amd-dal-add-active-dongle-downstream-hotplug-han.patch
patch 1107-drm-amd-dal-small-refactoring-in-DP-related-code.patch
patch 1108-drm-amd-dal-fix-bug-in-dc_link_remove_sink.patch
patch 1109-drm-amd-dal-fix-pflip-issue-with-mst-displays.patch
patch 1110-drm-amd-dal-simplify-atomic-gamma-programming-code.patch
patch 1111-drm-amd-dal-temporary-fix-in-headless-processing-cod.patch
patch 1112-drm-amd-dal-fix-bug-in-edid_read-break-window-usage.patch
patch 1113-drm-amd-dal-Refactor-DCE11-to-split-HW-agnostic-code.patch
patch 1114-drm-amd-dal-Register-offset-cleanup-on-Link-and-Stre.patch
patch 1115-drm-amd-dal-clean-DP-MST-payload-alloc-and-dealloc-f.patch
patch 1116-drm-amd-dal-Don-t-access-const-sink.patch
patch 1117-drm-amd-dal-Fix-minor-fomatting-issue-and-dependenci.patch
patch 1118-drm-amd-dal-Fix-Offset-bug.patch
patch 1119-drm-amd-dal-Treat-warnings-as-errors.patch
patch 1120-drm-amd-dal-Simplify-return-value-for-HW-programming.patch
patch 1121-drm-amd-dal-expand-dc_services-struct-definition-for.patch
patch 1122-drm-amd-dal-Pass-stream-instead-of-sink-to-MST-helpe.patch
patch 1123-drm-amd-dal-Call-stream-as-it-is-in-payload-table.patch
patch 1124-drm-amd-dal-fix-compilation-error-if-PPLib-is-not-en.patch
patch 1125-drm-amd-dal-use-new-state-in-atomic_check.patch
patch 1126-drm-amd-dal-Fail-validation-if-YCbCr-420-since-curre.patch
patch 1127-drm-amd-dal-expand-pplib_post_set_mode-to-more-close.patch
patch 1128-drm-amd-dal-Fix-DCE80-bandwidth-programming-model-to.patch
patch 1129-drm-amd-dal-Bool-to-Void-on-Link-Encoder-Programming.patch
patch 1130-drm-amd-dal-Move-enabling-of-stream-link-to-dc_link.patch
patch 1131-drm-amd-dal-Move-disabling-of-link-stream-to-dc_link.patch
patch 1132-drm-amd-dal-Fix-issue-where-2nd-MST-display-didn-t-l.patch
patch 1133-drm-amd-dal-fix-incorrect-cursor-error-msg.patch
patch 1134-drm-amd-dal-Add-support-for-flip-immediate.patch
patch 1135-drm-amd-dal-Modified-service-interface-for-pplib.patch
patch 1136-drm-amd-dal-fix-hotplug-of-HDMI-display-with-DP-MST.patch
patch 1137-drm-amd-dal-temporary-fix-for-MST-chaing-disconnect.patch
patch 1138-drm-amd-dal-add-single-display-infor-to-notify-pplib.patch
patch 1139-drm-amd-dal-Call-atomic-dpms-function-for-MST.patch
patch 1140-drm-amd-dal-amd-dc-Implement-get-memory-and-engine-c.patch
patch 1141-drm-amd-dal-Fix-compile-errors.patch
patch 1142-drm-amd-dal-Add-unit-mhz-to-clock-members-in-bw-cals.patch
patch 1143-drm-amd-dal-Add-implementation-for-get-clock-levels-.patch
patch 1144-drm-amd-dal-Fix-compile-error-for-case-CONFIG_DRM_AM.patch
patch 1145-drm-amd-dal-Fix-issue-where-unused-HW-is-not-powered.patch
patch 1146-drm-amd-dal-prototype-change-of-detection-scheme.patch
patch 1147-drm-amd-dal-Add-callback-to-DM-for-aux-access.patch
patch 1148-drm-amd-dal-Clean-up-some-comments.patch
patch 1149-drm-amd-dal-Fix-up-HDMI-1080p-light-up-on-discrete-A.patch
patch 1150-drm-amd-dal-Clean-up-aux-access-layer-in-DM.patch
patch 1151-drm-amd-dal-Fix-uint64-vs-int64-warnings.patch
patch 1152-drm-amdgpu-add-semaphore-to-connector-for-mst-syncro.patch
patch 1153-drm-amdgpu-make-DC-target-const.patch
patch 1154-drm-amd-dal-Prepare-support-for-next-Asic-generation.patch
patch 1155-drm-amd-dal-clean-up-watermark-structs.patch
patch 1156-drm-amd-dal-Define-debug-DPCD-registers.patch
patch 1157-drm-amd-dal-fix-issue-when-removing-sinks-where-arra.patch
patch 1158-drm-amd-dal-do-not-use-MST-sink-for-regular-connecto.patch
patch 1159-drm-amd-dal-use-const-for-new-link-sink-mgmt-interfa.patch
patch 1160-drm-amd-dal-do-not-remove-MST-sinks-in-DC.patch
patch 1161-drm-amd-dal-find-proper-connector-in-reset-case.patch
patch 1162-drm-amd-dal-remove-mst-sink-from-connector-and-link.patch
patch 1163-drm-amd-dal-do-not-remove-MST-connector-until-reset-.patch
patch 1164-drm-amd-dal-notify-userspace-on-MST-branch-disconnec.patch
patch 1165-drm-amd-dal-Prepare-DP-support-for-next-ASIC-generat.patch
patch 1166-drm-amd-dal-use-more-robust-locking-for-MST.patch
patch 1167-drm-amd-dal-add-bpp-from-dc_stream-for-payload-calcu.patch
patch 1168-drm-amd-dal-refactor-initial-detection.patch
patch 1169-drm-amd-dal-Fix-regamma-code-path.patch
patch 1170-drm-amd-dal-pass-configuration-data-from-dc-to-dm.patch
patch 1171-drm-amd-dal-Log-connector-signal-at-creation.patch
patch 1172-drm-amd-dal-share-initialization-between-connectors.patch
patch 1173-drm-amd-dal-use-DRM-helper-to-update-legacy-state.patch
patch 1174-drm-amd-dal-split-selection-of-connector-in-commit.patch
patch 1175-drm-amd-dal-clean-MST-payload-hw-table-on-update.patch
patch 1176-drm-amd-dal-remove-SW-payload-row-on-reset.patch
patch 1177-drm-amd-dal-do-not-clean-dc_link-on-MST-disconnect.patch
patch 1178-drm-amd-dal-Integrate-amd_powerplay_get_clock_by_typ.patch
patch 1179-drm-amd-dal-check-stream-on-payload-table-update.patch
patch 1180-drm-amd-dal-validate-MST-connector-modes.patch
patch 1181-drm-amd-dal-clean-up-MST-sem-usage.patch
patch 1182-drm-amd-dal-guard-drm-mst-manager-usage.patch
patch 1183-drm-amd-dal-Validate-required-clocks-against-PPLib-V.patch
patch 1184-drm-amd-dal-Prepare-bring-up-off-next-ASIC-generatio.patch
patch 1185-drm-amd-dal-adjust-DVI-signal-type-based-on-pixel-cl.patch
patch 1186-drm-amd-dal-updated-bandwidth-formula.patch
patch 1187-drm-amd-dal-Fix-IRQ-sources-for-HPD-control-config.patch
patch 1188-drm-amd-dal-Unblanking-logic-change-in-DM-DC.patch
patch 1189-drm-amd-dal-Add-new-gamma-ramp-interface-to-dc.patch
patch 1190-drm-amd-dal-fix-edp-detection-segfault.patch
patch 1191-drm-amd-dal-fix-yclk-value.patch
patch 1192-drm-amd-dal-remove-MST-get_modes-flush_work.patch
patch 1193-drm-amd-dal-create-actual-number-of-CRTCs.patch
patch 1194-drm-amd-dal-remove-sink-from-MST-link.patch
patch 1195-drm-amd-dal-return-actual-contollers-number-in-caps.patch
patch 1196-drm-amd-dal-fix-reset-mode-warning-msg.patch
patch 1197-drm-amd-dal-attach-tile-MST-connector-property.patch
patch 1198-drm-amd-dal-change-in-MST-connector-detection.patch
patch 1199-drm-amd-dal-set-scaling-to-2-taps-until-proper-story.patch
patch 1200-drm-amd-dal-Switch-from-MST-state-to-our-own-flag-si.patch
patch 1201-drm-amd-dal-Modifed-check-conditions-for-switch-dp-c.patch
patch 1202-drm-amd-dal-Do-not-dereference-NULL-sink-at-the-end-.patch
patch 1203-drm-amd-dal-Fix-NULL-pointer-derefference-on-set-mod.patch
patch 1204-drm-amd-dal-get-modes-in-get_modes-instead-of-cachin.patch
patch 1205-drm-amd-dal-set-gamma-flag-in-future-state.patch
patch 1206-drm-amd-dal-Remove-dead-headers.patch
patch 1207-drm-amd-dal-DP-MST-Detection.patch
patch 1208-drm-amd-dal-destroy-mst-connector-after-reset-mode.patch
patch 1209-drm-amd-dal-Refactor-link-encoder-interface.patch
patch 1210-drm-amd-dal-Swap-enable_stream-and-enable_link-call-.patch
patch 1211-drm-amd-dal-Refactor-timing-generator-fix-set_early_.patch
patch 1212-drm-amd-dal-Properly-handle-sink-removal.patch
patch 1213-amdgpu-fix-fbcon-S3-resume-with-dal_enabled.patch
patch 1214-drm-amd-dal-Remove-registration-of-Poll-for-connecto.patch
patch 1215-drm-amd-dal-Refactor-timing-generator.patch
patch 1216-drm-amd-dal-remove-mst-semaphore.patch
patch 1217-drm-amd-dal-Start-Stop-MST-Topology-only-for-root-co.patch
patch 1218-drm-amd-dal-Skip-unrelated-MST-connectors-in-payload.patch
patch 1219-drm-amd-dal-Fixed-DVI-passive-dongle-not-lightup-iss.patch
patch 1220-drm-amd-dal-Guard-against-seg-fault-when-register-co.patch
patch 1221-drm-amd-dal-Fix-bug-when-cleaning-up-dc-ctx.patch
patch 1222-drm-amd-dal-underscan-test-corruption-fix.patch
patch 1223-drm-amd-dal-add-bw_result-logging.patch
patch 1224-drm-amd-dal-Guard-ASIC-specific-functions-in-display.patch
patch 1225-drm-amd-dal-Remove-connector.patch
patch 1226-drm-amd-dal-Refactor-DCE11-timing-generator.patch
patch 1227-amdgpu-dce8-Update-IP-tables-to-enable-DAL-on-bonair.patch
patch 1228-drm-amd-dal-Fix-and-refactor-DCE8.0-resource.patch
patch 1229-drm-amd-dal-save-MST-connection-type-in-link.patch
patch 1230-drm-amd-dal-Enable-Bonaire-on-Linux.patch
patch 1231-drm-amd-dal-Clean-up-payload-allocation-table-creati.patch
patch 1232-drm-amd-dal-Deallocate-dc-ctx-upon-destruct.patch
patch 1233-drm-amd-dal-Compute-x-y-for-MST-in-dc_link.patch
patch 1234-drm-amd-dal-Balance-dc-surface-reference-count.patch
patch 1235-drm-amd-dal-Reuse-MST-connectors-to-resolve-headless.patch
patch 1236-drm-amd-dal-Fix-eDP-to-use-non-mst-codepath-for-link.patch
patch 1237-drm-amd-dal-disable-BM-calcs-log-by-default.patch
patch 1238-drm-amd-dal-Avoid-edid-mem-leak-by-deferring-edid-po.patch
patch 1239-drm-amd-dal-Fix-header-guard.patch
patch 1240-drm-amd-dal-fix-in-stream-encoder-allocation.patch
patch 1241-drm-amd-dal-Release-sink-for-MST-connector-when-rese.patch
patch 1242-drm-amd-dal-Fix-issue-with-sink-being-added-to-link-.patch
patch 1243-drm-amd-dal-disable-hpd-filtering-on-DP-connectors.patch
patch 1244-drm-amd-dal-MST-get-stream-hadle-refact.patch
patch 1245-drm-amd-dal-Refactor-Stream-Encoder-for-DCE8-11.patch
patch 1246-drm-amd-dal-virtual-link-and-sink-support.patch
patch 1247-drm-amd-dal-Split-sinks-into-physical-sink-pointer-a.patch
patch 1248-drm-amd-dal-Define-interface-for-External-VBIOS-part.patch
patch 1249-drm-amd-dal-Don-t-handle-DP-short-pulse-until-necess.patch
patch 1250-drm-amd-dal-Avoid-flood-kernel-with-storm-of-work-it.patch
patch 1251-drm-amd-dal-Skip-OS-notification-for-MST-connectors.patch
patch 1252-drm-amd-dal-Don-t-deallocate-payloads-when-whole-cha.patch
patch 1253-drm-amd-dal-remove-incorrect-assert.patch
patch 1254-drm-amdgpu-Use-non-polling-user-mode-notification-fo.patch
patch 1255-drm-amdgpu-Initial-Tonga-Light-up.patch
patch 1256-drm-amd-dal-Defer-MST-start-to-after-HPD_RX-enabled-.patch
patch 1257-drm-amd-dal-Define-interface-for-External-VBIOS-part.patch
patch 1258-drm-amd-dal-S3-implementation-using-atomic-commit.patch
patch 1259-drm-amd-dal-Fixed-active-dongle-bug.patch
patch 1260-drm-amd-dal-Re-enable-interrupt-after-hotplug-notify.patch
patch 1261-drm-amd-dal-Fix-waiting-on-mmDP_MSE_SAT_UPDATE-to-co.patch
patch 1262-drm-amd-dal-Add-simple-logger-of-DPCD-tx-rx-traffic.patch
patch 1263-drm-amd-dal-Refactor-mem_input.patch
patch 1264-drm-amd-dal-restyle-transorm-remove-redundant-code.patch
patch 1265-drm-amd-dal-added-dc_link_add_sink-interface-for-man.patch
patch 1266-drm-amd-dal-xfm-register-naming-refactor.patch
patch 1267-drm-amd-dal-remove-dce_base-duplicates-dc-core.patch
patch 1268-drm-amd-powerplay-refine-the-dmesg-info.patch
patch 1269-drm-amd-dal-Override-some-virtual-functions-for-Diag.patch
patch 1270-drm-amd-dal-optimize-out-dc-validation-on-flip.patch
patch 1271-drm-amd-dal-IPP-refactoring-part.patch
patch 1272-drm-amd-dal-Reset-DP_MSE_SAT-when-disabling-MST-disp.patch
patch 1273-drm-amd-dal-Log-MST-branch-connect-disconnect.patch
patch 1274-drm-amd-dal-Refactor-Link-Encoder.patch
patch 1275-drm-amd-dal-Add-PreModeChange-event-to-PPLIB.patch
patch 1276-drm-amd-dal-tonga-initial-light-up.patch
patch 1277-drm-amd-dal-Fix-issue-with-pipe-powergating-not-call.patch
patch 1278-drm-amd-dal-Do-not-access-mmMC_HUB_RDREQ_DMIF_LIMIT-.patch
patch 1279-drm-amd-dal-create-dce100-resource.patch
patch 1280-drm-amd-dal-Removed-dce_version-from-dc_context.patch
patch 1281-drm-amd-dal-add-virtual-link-and-stream-encoders.patch
patch 1282-drm-amd-dal-Remove-the-CZ_BRINGUP-flag.patch
patch 1283-drm-amd-dal-Re-use-link-encoder-programming-between-.patch
patch 1284-drm-amd-dal-Re-use-stream-encoder-programming-betwee.patch
patch 1285-drm-amd-dal-update-core-link-mst-stream-allocation-t.patch
patch 1286-drm-amd-dal-Clean-up-unused-TG-types-move-to-dc-inc.patch
patch 1287-drm-amd-dal-Clean-up-encoder_types.patch
patch 1288-drm-amd-dal-Clean-up-set_mode_interface-and-adjustme.patch
patch 1289-drm-amd-dal-dc-clean-up-remove-dvo-related.patch
patch 1290-drm-amd-dal-Fix-up-register-includes-for-encoder.patch
patch 1291-drm-amd-dal-Fix-issue-with-pipe-powergating-sequence.patch
patch 1292-drm-amd-dal-Remove-display_service_types.patch
patch 1293-drm-amd-dal-Split-encoder_types-into-link-and-stream.patch
patch 1294-drm-amd-dal-OPP-refactoring.patch
patch 1295-drm-amd-dal-Make-use-of-amdgpu_crtc-cursor_addr.patch
patch 1296-drm-amd-dal-Remove-plane_types.patch
patch 1297-drm-amd-dal-Add-DCE10-HW-Sequencer.patch
patch 1298-drm-amd-dal-dce-resoure-missing-register-instancee-m.patch
patch 1299-drm-amd-dal-Disable-dithering-for-Diagnostics-enviro.patch
patch 1300-drm-amd-dal-Add-DCE10-config-option.patch
patch 1301-drm-amdgpu-remove-double-drm_vblank_init-call.patch
patch 1302-drm-amd-dal-Block-commit-surfaces-to-targets-that-ha.patch
patch 1303-drm-amd-dal-remove-dal_services.h.patch
patch 1304-drm-amd-dal-refactor-clock-sources.patch
patch 1305-drm-amd-dal-Clean-up-dc_temp.h.patch
patch 1306-drm-amd-dal-Fixed-page-flip-handle-issue.patch
patch 1307-drm-amd-dal-refactor-hw_sequencer.patch
patch 1308-drm-amd-dal-Fixed-DCE100-audio-issue.patch
patch 1309-drm-amd-dal-remove-warning-in-bios-makefile.patch
patch 1310-drm-amd-dal-small-clean-up-in-cursor-code.patch
patch 1311-drm-amd-dal-Relocate-dcs-to-core.patch
patch 1312-drm-amd-dal-Use-max-clocks-safemarks-for-dce10.patch
patch 1313-drm-amd-dal-Abstract-tiling_info-params.patch
patch 1314-drm-amd-dal-Reset-clock-when-refcount-drops-to-0.patch
patch 1315-drm-amd-dal-Don-t-try-to-do-bandwidth-validation-on-.patch
patch 1316-drm-amd-dal-Set-correct-dentist-clock-value.patch
patch 1317-drm-amd-dal-Rename-dc_services-helpers-to-dm_service.patch
patch 1318-drm-amd-dal-reg-logger-trace-caller.patch
patch 1319-drm-amd-dal-Make-DCE-10-HWSS-independent-of-DCE-8.patch
patch 1320-drm-amd-dal-Clean-up-MST-stream-on-our-ASIC.patch
patch 1321-drm-amd-dal-add-kernel-version-control-for-mst.patch
patch 1322-drm-amd-dal-Delete-unused-clock-source-file.patch
patch 1323-drm-amd-dal-Fix-building-with-C-compiler.patch
patch 1324-drm-amd-dal-Prevent-access-to-PTE-registers-for-FPGA.patch
patch 1325-drm-amd-dal-Remove-double-call-to-write-payload-allo.patch
patch 1326-drm-amd-dal-Fix-DKMS-compilation-for-kernel-3.19.patch
patch 1327-drm-amd-dal-Add-dce10-in-dal_adapter_service_get_dce.patch
patch 1328-drm-amd-dal-Expose-dig-index-display_signal-and-ddc-.patch
patch 1329-drm-amd-dal-Add-hpd-filter-delay-for-DP-hotplug.patch
patch 1330-drm-amd-dal-Add-gpio-types-compile-dependency-on-in-.patch
patch 1331-drm-amd-dal-only-poll-for-ACT-when-needed.patch
patch 1332-drm-amd-dal-add-HBR3-definitions.patch
patch 1333-drm-amd-dal-Rename-allocate-mem-input-interface.patch
patch 1334-drm-amd-dal-fix-azalia-audio-does-not-work-on-some-b.patch
patch 1335-drm-amd-dal-Use-ENGINE_ID_UNKNOWN-for-engine_id.patch
patch 1336-drm-amd-dal-Force-bw-programming-for-DCE-10-until-we.patch
patch 1337-drm-amd-dal-remove-dm_services_types.h-from-DC-heade.patch
patch 1338-drm-amd-dal-Move-link-settings-to-public-interface.patch
patch 1339-drm-amd-dal-Create-transform-for-underlay-pipe.patch
patch 1340-drm-amd-dal-Fix-Bandwidth-Calculations-for-up-to-6-d.patch
patch 1341-drm-amd-dal-fix-build-breakage-due-to-rebase.patch
patch 1342-drm-amd-dal-Refactor-link_settings-to-public.patch
patch 1343-drm-amd-dal-fix-dependency-on-DC.patch
patch 1344-drm-amd-dal-Add-timing-generator-for-underlay-pipe.patch
patch 1345-drm-amd-dal-Remove-unused-definitions-from-Transform.patch
patch 1346-drm-amd-dal-enable-HBR3-link-training.patch
patch 1347-drm-amd-dal-Create-interface-for-Virtual-HW-programm.patch
patch 1348-drm-amd-dal-Temporary-disable-PLL-sharing-for-DCE-10.patch
patch 1349-drm-amd-dal-Add-set_blender_mode-handling-for-underl.patch
patch 1350-drm-amd-dal-Refactor-opp-gamma-related.patch
patch 1351-drm-amd-dal-Use-reg-offset-to-handle-blndv-programmi.patch
patch 1352-drm-amd-dal-Consolidate-safe-and-generic-watermark-p.patch
patch 1353-drm-amd-amdgpu-Fall-back-to-non-dal-driver-on-Bonair.patch
patch 1354-drm-amd-amdgpu-Remove-has_dal_support-macro.patch
patch 1355-drm-amd-dal-non-destructive-validate.patch
patch 1356-drm-amd-dal-Instantiate-Underlay-version-of-Timing-G.patch
patch 1357-drm-amd-dal-opp-for-underlay.patch
patch 1358-drm-amd-dal-Instantiate-Underlay-version-of-Memory-I.patch
patch 1359-drm-amd-dal-implement-ipp-opp-bypass.patch
patch 1360-drm-amd-dal-Correctly-interpret-rotation-as-bit-set.patch
patch 1361-drm-amd-dal-fix-flip-clean-up-state.patch
patch 1362-drm-amd-dal-register-eDP-short-pulse-interrupt.patch
patch 1363-drm-amd-dal-add-HIGH3-rates-to-fallback-table.patch
patch 1364-drm-amd-dal-return-link-init-in-surface-status.patch
patch 1365-drm-amd-dal-Remove-generic-i2c-hw-engine.patch
patch 1366-drm-amd-dal-fix-some-missing-hawaii-cases-in-dm.patch
patch 1367-drm-amdgpu-export-some-dce-functions-to-share-with-D.patch
patch 1368-drm-amd-dal-dm-use-existing-dce-functions-for-some-t.patch
patch 1369-drm-amd-dal-Adding-Hawaii-and-Bonaire-support-to-DAL.patch
patch 1370-drm-amd-amdgpu-Enabling-DAL-for-Bonaire-ASICs.patch
patch 1371-drm-amd-dal-Change-DEMODE-bit-in-blank-screen-settin.patch
patch 1372-drm-amd-dal-Reset-unreference-clock-when-switching-s.patch
patch 1373-drm-amd-dal-Use-verified-link-caps-to-cal-bw.patch
patch 1374-drm-amd-dal-Only-run-detection-on-shortpulse-when-de.patch
patch 1375-drm-amd-dal-fix-EXT-clock-source-creation.patch
patch 1376-drm-amd-dal-allow-non-audio-DP-HDMI-light-up.patch
patch 1377-drm-amd-dal-refactor-ipp-header-for-HW-pseudo-code.patch
patch 1378-drm-amd-dal-Fixed-HDMI-DVI-dongle-not-light-up-issue.patch
patch 1379-drm-amd-dal-Implement-power-control-of-COL_MAN-Gamma.patch
patch 1380-drm-amd-dal-hack-in-CZ-mpo-start-support.patch
patch 1381-drm-amd-dal-Ungate-Underlay-pipe-clock.patch
patch 1382-drm-amd-dal-Refactor-opp-xfm-ipp-headers-incremental.patch
patch 1383-drm-amd-dal-blanking-fix.patch
patch 1384-drm-amd-dal-delete-dead-code.patch
patch 1385-drm-amd-dal-refactor-ipp_degamma_mode-for-HW-diag.patch
patch 1386-drm-amd-dal-Define-new-ipp-functions-for-diags.patch
patch 1387-drm-amd-dal-simplify-OPP-header-include-dependency.patch
patch 1388-drm-amd-dal-refactor-transform-header-for-HW-pseudoc.patch
patch 1389-drm-amd-dal-Correctly-attach-surfaces-to-context-at-.patch
patch 1390-drm-amd-dal-fix-stack-corruption-during-timing-sync.patch
patch 1391-drm-amd-amdgpu-Route-dal-i2c-through-drm-s-i2cadapte.patch
patch 1392-drm-amd-dal-address-missed-change-from-ipp-refactor.patch
patch 1393-drm-amd-dal-Route-i2c-through-drm-s-i2cadapter.patch
patch 1394-drm-amd-dal-Remove-wait_for_vblanks-call-on-atomic_c.patch
patch 1395-drm-amd-dal-Minor-dm_helper-type-and-include-fixup.patch
patch 1396-drm-amd-dal-destruct-validation-context-on-change.patch
patch 1397-drm-amdgpu-add-stoney-to-dal-check.patch
patch 1398-drm-amd-dal-fix-some-missing-stoney-cases-in-dm.patch
patch 1399-drm-amdgpu-dal-dm-fix-compilation-when-CIK-support-i.patch
patch 1400-drm-amd-amdgpu-resume-displays-after-cursor-pin.patch
patch 1401-drm-amd-dal-allow-DP-non-external-clock-source-shari.patch
patch 1402-drm-amd-dal-Interface-change-to-commit-multiple-surf.patch
patch 1403-drm-amd-dal-fix-4k-DP-displays-link-training.patch
patch 1404-drm-amd-dal-minor-mpo-fixes.patch
patch 1405-drm-amd-dal-Address-HW-team-feedback-on-ipp.patch
patch 1406-drm-amd-dal-fix-ref-count-issue-on-validate-failure.patch
patch 1407-drm-amd-dal-fix-lb-alpha-programming.patch
patch 1408-drm-amd-dal-fix-memory-leaks-in-I2C-code.patch
patch 1409-drm-amd-dal-temporary-fix-for-black-screen-on-tonga.patch
patch 1410-drm-amd-dal-add-input-csc-for-underlay.patch
patch 1411-drm-amd-dal-fix-4th-display-cursor.patch
patch 1412-drm-amd-dal-Prevent-underflow-lock.patch
patch 1413-drm-amd-dal-Refactor-PPLib-interfaces.patch
patch 1414-drm-amd-dal-Remove-public-interfaces-for-target_memo.patch
patch 1415-drm-amd-dal-Get-rid-of-dal_types.h-in-dc.h.patch
patch 1416-drm-amd-dal-rename-struct-dc-to-struct-core_dc.patch
patch 1417-drm-amd-dal-move-virtual-hardware-header-files-to-in.patch
patch 1418-drm-amd-dal-Fix-mem-input-build-error.patch
patch 1419-drm-amd-dal-Fix-amdgpu-build-error.patch
patch 1420-drm-amd-dal-Remove-ctx-from-dm_alloc-free.patch
patch 1421-drm-amd-dal-fix-memory-during-fail-link-creation.patch
patch 1422-drm-amd-dal-Refactor-DC-creation-merge-dc-and-dal-in.patch
patch 1423-drm-amd-dal-Use-native-memset-directly.patch
patch 1424-drm-amd-dal-Use-native-memmove-directly.patch
patch 1425-drm-amd-dal-Use-native-memcmp-directly.patch
patch 1426-drm-amd-dal-Use-native-strncmp-directly.patch
patch 1427-drm-amd-dal-simplify-clock-sources-allocation.patch
patch 1428-drm-amd-dal-fix-HW-I2C-channel-status.patch
patch 1429-drm-amd-dal-Remove-delay_in_nanoseconds.patch
patch 1430-drm-amd-dal-Create-struct-dc-as-public-version-of-dc.patch
patch 1431-drm-amd-dal-Fix-DCE110-not-initializing-number-of-cl.patch
patch 1432-drm-amd-dal-Don-t-include-audio-type-in-dc.h.patch
patch 1433-drm-amd-dal-Fix-surface-flip-pending-polling.patch
patch 1434-drm-amd-dal-simplify-clock-source-creation-by-unroll.patch
patch 1435-drm-amd-dal-clean-up-resource.h-with-proper-prefix.patch
patch 1436-drm-amd-dal-remove-unused-type-ovl_csc_adjustment.patch
patch 1437-drm-amd-dal-Remove-unnecessary-SIGTRAP.patch
patch 1438-drm-amd-dal-Fix-HSYNC-flip-for-DCE8-10.patch
patch 1439-drm-amd-dal-Use-usleep-for-microsecond-sleep.patch
patch 1440-drm-amd-dal-Temporarily-disable-HW-i2c-on-DCE80.patch
patch 1441-drm-amd-amdgpu-Don-t-proceed-in-audio_fini-in-DCEv11.patch
patch 1442-drm-amd-amdgpu-Whitespace-typo-fix-in-sw_init-DCEv11.patch
patch 1443-drm-amd-amdgpu-Move-init-flag-to-after-init-in-sw_in.patch
patch 1444-drm-amd-amdgpu-Make-afmt_init-cleanup-if-alloc-fails.patch
patch 1445-drm-amd-amdgpu-Fix-indentation-in-dce_v11_0_crtc_do_.patch
patch 1446-drm-amd-amdgpu-Don-t-proceed-in-audio_fini-if-disabl.patch
patch 1447-drm-amd-amdgpu-Move-initialized-flag-to-bottom-of-sw.patch
patch 1448-drm-amd-amdgpu-Make-afmt_init-cleanup-if-alloc-fails.patch
patch 1449-drm-amd-amdgpu-Fix-identation-in-do_set_base-DCEv10.patch
patch 1450-drm-amd-amdgpu-Don-t-proceed-into-audio_fini-if-audi.patch
patch 1451-drm-amd-amdgpu-Move-config-init-flag-to-bottom-of-sw.patch
patch 1452-drm-amd-amdgpu-make-afmt_init-cleanup-if-alloc-fails.patch
patch 1453-drm-amd-amdgpu-Fix-indentation-in-do_set_base-DCEv8.patch
patch 1454-drm-amdgpu-wait-engine-idle-before-vm-flush-for-sdma.patch
patch 1455-drm-amdgpu-add-hdp_invalidate-function.patch
patch 1456-drm-amdgpu-add-hdp-invalidation-for-gfx7.patch
patch 1457-drm-amdgpu-add-hdp-invalidation-for-gfx8.patch
patch 1458-drm-amdgpu-add-hdp-invalidation-for-cik-sdma.patch
patch 1459-drm-amdgpu-add-hdp-invalidation-for-sdma-v2_4.patch
patch 1460-drm-amdgpu-add-hdp-invalidation-for-sdma-v3_0.patch
patch 1461-drm-amdgpu-Clear-HDP_MISC_CNTL.HDP_FLUSH_INVALIDATE_.patch
patch 1462-drm-amdgpu-sync-to-the-active-user-on-reusing-a-VMID.patch
patch 1463-drm-amdgpu-group-userptr-in-the-BO-list-v2.patch
patch 1464-drm-amdgpu-prevent-get_user_pages-recursion.patch
patch 1465-drm-amd-dal-Parse-asic-ID-in-dc-rather-than-AS.patch
patch 1466-drm-amd-dal-Add-print-to-indicate-DC-creation.patch
patch 1467-drm-amd-dal-Return-dc_version-directly-from-parse_as.patch
patch 1468-drm-amd-dal-Start-calling-create_links-for-diag.patch
patch 1469-drm-amdgpu-cleanup-the-sync-code.patch
patch 1470-drm-amdgpu-remove-HW-fence-owner.patch
patch 1471-drm-amdgpu-add-slap-cache-for-sync-objects-as-well.patch
patch 1472-drm-amdgpu-return-the-common-fence-from-amdgpu_fence.patch
patch 1473-drm-amdgpu-move-the-GDS-switch-into-vm-flush-as-well.patch
patch 1474-drm-amdgpu-switch-the-GDS-only-on-demand-v2.patch
patch 1475-drm-amdgpu-split-pipeline-sync-and-vm-flush.patch
patch 1476-drm-amdgpu-if-a-GDS-switch-is-needed-emit-a-pipeline.patch
patch 1477-drm-amdgpu-move-get_user_pages-out-of-amdgpu_ttm_tt_.patch
patch 1478-drm-amdgpu-Fix-two-bugs-in-amdgpu_vm_bo_split_mappin.patch
patch 1479-drm-amdgpu-dp-add-back-special-handling-for-NUTMEG.patch
patch 1480-drm-amdgpu-ci-drop-some-old-thermal-setup.patch
patch 1481-drm-amdgpu-ci-remove-redundant-pcie-setup.patch
patch 1482-drm-amdgpu-ci-sync-up-with-dpm-changes-from-radeon.patch
patch 1483-drm-amdgpu-delete-set-but-not-read-member-has_uvd-fr.patch
patch 1484-drm-amd-dal-dm-fix-crtc-count-for-STONEY.patch
patch 1485-drm-amd-dal-Add-variadic-register-update-set-functio.patch
patch 1486-drm-amd-dal-merge-same-map_clock_resources.patch
patch 1487-drm-amd-dal-Move-hw_init-into-hwss.patch
patch 1488-drm-amd-dal-add-logic-to-handle-hw-and-sw-state-inco.patch
patch 1489-drm-amd-dal-Fix-variadic-register-update-set-functio.patch
patch 1490-drm-amd-dal-Move-link-encoder-destroy-from-resource-.patch
patch 1491-drm-amd-dal-Call-BP-directly-to-check-for-accelerate.patch
patch 1492-drm-amd-dal-Fixed-active-dongle-not-light-up-issue.patch
patch 1493-drm-amd-dal-Move-crtc-timing-definitions-to-dc_hw_ty.patch
patch 1494-drm-amdgpu-disable-runtime-pm-on-PX-laptops-without-.patch
patch 1495-drm-amdgpu-split-pipeline-sync-out-of-SDMA-vm_flush-.patch
patch 1496-drm-amd-dal-skip-MST-fake-connectors-on-resume.patch
patch 1497-drm-amd-dal-Allow-for-ASIC-specific-bw_calcs.patch
patch 1498-drm-amd-dal-initial-framework-for-s3-debugging.patch
patch 1499-drm-amd-dal-Use-fine-grained-watermarks-for-support-.patch
patch 1500-drm-amd-dal-enable-hpd-rx-irqs-earlier-on-resume.patch
patch 1501-drm-amd-dal-Fixed-DP-passive-dongle-not-light-up-iss.patch
patch 1502-drm-amdgpu-always-wait-before-kmap-a-BO.patch
patch 1503-drm-amdgpu-stop-waiting-on-UVD-messages-before-mappi.patch
patch 1504-drm-amdgpu-stop-using-the-ring-index-in-the-SA.patch
patch 1505-drm-amdgpu-remove-amdgpu_ring_from_fence.patch
patch 1506-drm-amdgpu-remove-amdgpu_fence_wait_next.patch
patch 1507-drm-amdgpu-move-fence-structure-into-amdgpu_fence.c.patch
patch 1508-drm-amd-powerplay-mv-avfs-status-to-smumgr.h.patch
patch 1509-drm-amd-powerplay-add-a-common-pp-endian-header.patch
patch 1510-drm-amd-powerplay-use-pp_endian.h-for-Fiji.patch
patch 1511-drm-amd-powerplay-use-pp_endian.h-for-Tonga.patch
patch 1512-drm-amdgpu-cleanup-amdgpu_fence_activity.patch
patch 1513-drm-amdgpu-merge-amdgpu_fence_process-and-_activity.patch
patch 1514-drm-amdgpu-RCU-protected-amdgpu_fence_release.patch
patch 1515-drm-amdgpu-RCU-protected-amd_sched_fence_release.patch
patch 1516-drm-amd-dal-allocate-structures-in-temp_params-separ.patch
patch 1517-drm-amd-dal-simplify-suspend-resume-sequence.patch
patch 1518-drm-amd-dal-zero-out-current-context-on-suspend.patch
patch 1519-drm-amd-dal-zero-current-context-after-powerdown.patch
patch 1520-drm-amdgpu-add-number-of-hardware-submissions-to-amd.patch
patch 1521-drm-amdgpu-keep-all-fences-in-an-RCU-protected-array.patch
patch 1522-drm-amdgpu-cleanup-amdgpu_fence_wait_empty-v2.patch
patch 1523-drm-amdgpu-signal-fences-directly-in-amdgpu_fence_pr.patch
patch 1524-drm-amdgpu-drop-the-extra-fence-range-check-v2.patch
patch 1525-drm-amdgpu-remove-amdgpu_fence_is_signaled.patch
patch 1526-drm-amdgpu-switch-back-to-32bit-hw-fences-v2.patch
patch 1527-drm-amdgpu-allow-write-access-to-mapped-userptrs.patch
patch 1528-drm-amdgpu-clean-up-path-handling-for-powerplay.patch
patch 1529-drm-amdgpu-remove-duplicated-error-message.patch
patch 1530-drm-amd-dal-dm-update-hw_mode-in-amdgpu_dm_atomic_co.patch
patch 1531-drm-amdgpu-Remove-is_mst_connector-flag-from-amdgpu_.patch
patch 1532-drm-amd-dal-dm-add-missing-version-check.patch
patch 1533-drm-amdgpu-move-all-Kconfig-options-to-amdgpu-Kconfi.patch
patch 1534-drm-amd-powerplay-add-uvd-vce-dpm-enabling-flag-to-f.patch
patch 1535-drm-amdgpu-include-the-right-version-of-gmc-header-f.patch
patch 1536-drm-amd-dal-on-resume-do-not-set-mode-on-disconnecte.patch
patch 1537-drm-amd-dal-Avoid-mutex-aquire-while-holding-spinloc.patch
patch 1538-drm-amd-dal-Avoid-mutex-aquire-while-holding-spinloc.patch
patch 1539-drm-amd-dal-bw-calculations-fixed-for-displays-4-6.patch
patch 1540-drm-amd-dal-fix-warnings-with-msc-in-Xorg.patch
patch 1541-drm-amd-dal-micro-refactoring-in-DM-and-DC.patch
patch 1542-drm-amd-dal-fix-division-by-0-on-boot-for-dce80.patch
patch 1543-drm-amdgpu-give-a-fence-param-to-ib_free.patch
patch 1544-drm-amdgpu-move-ib.fence-to-job.fence.patch
patch 1545-drm-amdgpu-use-sched-fence-if-possible.patch
patch 1546-drm-amd-powerplay-show-uvd-vce-power-gate-info-for-f.patch
patch 1547-drm-amd-powerplay-show-uvd-vce-power-gate-enablement.patch
patch 1548-drm-amdgpu-gfx7-add-MTYPE-definition.patch
patch 1549-drm-amdgpu-release_pages-requires-linux-pagemap.h.patch
patch 1550-drm-amd-powerplay-fix-memory-leak-of-tdp_table.patch
patch 1551-drm-amdgpu-Revert-remove-the-userptr-rmn-lock.patch
patch 1552-drm-amdgpu-add-invalidate_page-callback-for-userptrs.patch
patch 1553-drm-amdgpu-delete-unused-struct-member-suspend-from-.patch
patch 1554-drm-amdgpu-do-not-store-bios_header_start-in-amdgpu_.patch
patch 1555-drm-amdgpu-mark-amdgpu_allowed_register_entry-tables.patch
patch 1556-drm-amdgpu-improve-vmid-assigment-V2.patch
patch 1557-drm-amdgpu-support-cond-exec.patch
patch 1558-drm-amdgpu-patch-cond-exec-for-SDMA.patch
patch 1559-drm-amdgpu-use-sched_job_init-to-initialize-sched_jo.patch
patch 1560-drm-amdgpu-dce11-fix-vertical-bars-appear-on-monitor.patch
patch 1561-drm-amdgpu-delay-job-free-to-when-it-s-finished-v2.patch
patch 1562-drm-amdgpu-put-job-to-list-before-done.patch
patch 1563-drm-amdgpu-get-rid-of-incorrect-TDR.patch
patch 1564-drm-amdgpu-rework-TDR-in-scheduler-v2.patch
patch 1565-drm-amdgpu-use-ref-to-keep-job-alive.patch
patch 1566-resolve-drm-dependencies-for-amdgpu.patch
patch 1567-drm-amdgpu-handle-more-than-10-UVD-sessions-V2.patch
patch 1568-Audio-code-as-per-4-1-0-kernel.patch
patch 1569-ACP-code-as-per-4-1-0-kernel.patch
patch 1570-4-1-0-kernel-s-drivers-I2C-directory.patch
patch 1571-Add-support-for-amd-gnb-bus.patch
patch 1572-drm-amdgpu-fix-num_rbs-exposed-to-userspace.patch
patch 1573-Add-power-gating-initialization-support-for-GFX8.0.patch
patch 0300-amd-powerplay-handle-power-management-state-based-on.patch
patch 0001-ALSA-hda-add-AMD-Stoney-PCI-ID-with-proper-driver-ca.patch
patch 0001-amdgpu-fix-various-compilation-issues.patch
patch 0001-fs-prioritize-ext4-rootfs-type.patch