aboutsummaryrefslogtreecommitdiffstats
path: root/common/recipes-kernel/linux/linux-yocto-4.14.71/amdgpu-patches.scc
blob: c1af921518360ee58b9a2ad639c5aee0652bf702 (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
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
patch 0001-drm-ttm-Add-DMA-map-unmap-tracepoint-v3.patch
patch 0002-drm-amdgpu-support-polaris10-11-12-new-cp-firmwares.patch
patch 0003-drm-amd-amdgpu-Remove-AMDGPU-tracepoint-and-use-new-.patch
patch 0004-drm-amd-include-Add-hdmi_redriver_set-to-atomfirmwar.patch
patch 0005-drm-ttm-Add-helper-functions-to-populate-map-in-one-.patch
patch 0006-drm-amd-amdgpu-Use-new-TTM-populate-map-helper-funct.patch
patch 0007-drm-radeon-use-new-TTM-populate-dma-map-helper-funct.patch
patch 0008-drm-amdgpu-Add-debugfs-file-for-VBIOS-and-version.patch
patch 0009-drm-amdgpu-Move-VBIOS-version-to-sysfs.patch
patch 0010-drm-amdgpu-fix-amdgpu_vm_bo_map-trace-point.patch
patch 0011-drm-amdgpu-fix-and-cleanup-VM-ready-check.patch
patch 0012-drm-amdgpu-cleanup-GWS-GDS-and-OA-allocation.patch
patch 0013-drm-amdgpu-powerplay-vega10-fix-typo-in-register-bas.patch
patch 0014-drm-amdgpu-gfx8-apply-dynamic-cu-mask-to-APUs-as-wel.patch
patch 0015-drm-amdgpu-gfx8-drop-cz-mqd.patch
patch 0016-drm-amdgpu-gfx9-update-mqd-to-include-dynamic-CU-mas.patch
patch 0017-drm-amdgpu-gfx9-adjust-mqd-allocation-size.patch
patch 0018-drm-amd-amdgpu-Added-asic_type-as-ACP-DMA-driver-pla.patch
patch 0019-drm-amdgpu-Moving-amdgpu-asic-types-to-a-separate-fi.patch
patch 0020-drm-amd-dc-Add-dc-display-driver-v2.patch
patch 0021-drm-amd-display-drop-set_vga_render_state.patch
patch 0022-drm-amd-display-drop-resume-stop_mc_access.patch
patch 0023-drm-amd-dc-dm-remove-redundant-display-structs.patch
patch 0024-drm-amd-display-Fix-hdmi-not-lighting-up-on-Hawaii.patch
patch 0025-drm-amd-display-Fix-bugs-causing-Hawaii-and-Bonaire-.patch
patch 0026-drm-amd-display-Fix-memory-corruption-issue.patch
patch 0027-drm-amd-display-Block-3D-Timings.patch
patch 0028-drm-amd-display-Update-rgb-limited-range-csc-matrix-.patch
patch 0029-drm-amd-display-Removing-extra-newline.patch
patch 0030-drm-amd-display-Remove-obsolete-LATEST_ATOM_BIOS_SUP.patch
patch 0031-drm-amd-display-fix-REG_SET_5-macro.patch
patch 0032-drm-amd-display-refactor-DCE11-DVVM.patch
patch 0033-drm-amd-display-Add-missing-GRPH-register-definition.patch
patch 0034-drm-amd-display-remove-dead-display-clock-code.patch
patch 0035-drm-amd-display-restyle-display-clock-calls-part-1.patch
patch 0036-drm-amd-display-restyle-display-clock-calls-part-2.patch
patch 0037-drm-amd-display-remove-store-clock-state.patch
patch 0038-drm-amd-display-remove-get_min_clocks_state.patch
patch 0039-drm-amd-display-remove-clocks_state-enum.patch
patch 0040-drm-amd-display-consolidate-dce8-11.2-display-clock-.patch
patch 0041-drm-amd-display-add-newline-to-generic_reg_wait-time.patch
patch 0042-drm-amd-display-fix-display-clock-integrated-info-re.patch
patch 0043-drm-amd-display-use-rgb-full-range-as-default-quanti.patch
patch 0044-drm-amd-display-create-scratch_val_ctx-as-temp-w-a.patch
patch 0045-drm-amd-display-Fix-compile-error-about-incompatible.patch
patch 0046-drm-amd-display-Temporarily-blocking-interlacing-mod.patch
patch 0047-drm-amd-display-moving-remaining-functionality-from-.patch
patch 0048-drm-amd-display-remove-DM_NOT_IMPL-messages.patch
patch 0049-drm-amd-display-Fix-bunch-of-warnings-in-DC.patch
patch 0050-drm-amd-display-Fix-warning-in-freesync-module.patch
patch 0051-drm-amd-display-Fix-warning.-Set-MAX_SURFACES-to-3.patch
patch 0052-drm-amd-display-fix-indexing-bug.patch
patch 0053-drm-amd-display-avoid-apply_clk_constraints-for-addr.patch
patch 0054-drm-amd-display-Fix-refcount-over-dc_sink.patch
patch 0055-drm-amd-display-fix-up-construction-of-scratch_val_c.patch
patch 0056-drm-amd-display-Added-timing-sync-trace.patch
patch 0057-drm-amd-display-Fix-Gamma-Adjustment.patch
patch 0058-drm-amd-display-Change-locking-of-registers-when-fli.patch
patch 0059-drm-amd-display-Retrieve-windowed-fullscreen-state.patch
patch 0060-drm-amd-display-Fix-HDMI-scaling-corruption-issue.patch
patch 0061-drm-amd-display-re-gamma-programming.patch
patch 0062-drm-amd-display-Moved-swizzle-parameter-translation-.patch
patch 0063-drm-amd-display-Add-in-out-transfer-functions-to-DC.patch
patch 0064-drm-amd-dal-Add-POLARIS12-support-v2.patch
patch 0065-drm-amdgpu-remove-some-redundent-DC-checks.patch
patch 0066-drm-amd-display-Resolved-HDMI-assert-in-dal.patch
patch 0067-drm-amd-display-Refactor-to-move-color-helper-into-m.patch
patch 0068-drm-amd-display-Add-debug-option-to-disable-dmcu.patch
patch 0069-drm-amd-display-fix-hotplug-regression-after-code-re.patch
patch 0070-drm-amd-display-Refactor-output-transfer-function-to.patch
patch 0071-drm-amd-display-define-reg-helpers-to-update-registe.patch
patch 0072-drm-amd-display-Refactor-to-move-gamma-correction-to.patch
patch 0073-drm-amd-display-Implement-PQ-curve-based-on-output-t.patch
patch 0074-drm-amd-display-OPP-refactor-and-consolidation-for-D.patch
patch 0075-drm-amd-display-Fix-distribution-of-segments-for-PQ.patch
patch 0076-drm-amd-display-Fix-programming-of-gamma-end-points.patch
patch 0077-drm-amd-display-remove-dc-hub-this-seems-unused.patch
patch 0078-drm-amd-display-remove-some-unused-wrappers.patch
patch 0079-drm-amd-display-drop-register-logger-and-pid-tgid-ge.patch
patch 0080-drm-amd-display-drop-get-platform-info.patch
patch 0081-drm-amd-display-drop-setmode-complete-notifier.patch
patch 0082-drm-amd-display-Move-dpcd-structs-into-dp_types-head.patch
patch 0083-drm-amd-display-port-to-using-drm-dpcd-defines.patch
patch 0084-drm-amd-display-assign-correct-enum-for-edp-revision.patch
patch 0085-drm-amd-display-Framework-for-degamma-and-regramma-t.patch
patch 0086-drm-amd-display-Fix-Regamma-end-point.patch
patch 0087-drm-amd-display-4k-split-black-out-due-to-incorrect-.patch
patch 0088-drm-amd-display-add-pitch-to-cursor-attributes.patch
patch 0089-drm-amd-display-minor-clock-source-refactor.patch
patch 0090-drm-amd-display-Add-dcc-param-to-surface.patch
patch 0091-drm-amd-display-track-cursor-width-in-ipp.patch
patch 0092-drm-amd-display-Reset-gamma-to-NULL-after-release.patch
patch 0093-drm-amd-display-Implement-gamma-correction-using-inp.patch
patch 0094-drm-amd-display-don-t-crash-if-stream-is-NULL-when-t.patch
patch 0095-drm-amd-display-reset-transfer_func-to-NULL-on-relea.patch
patch 0096-drm-amd-display-Fixed-crash.patch
patch 0097-drm-amd-display-Fix-licensing-header.patch
patch 0098-drm-amd-display-Fixed-split-update-bug.patch
patch 0099-drm-amd-display-Fixed-crash-caused-by-unnecessary-cl.patch
patch 0100-drm-amd-display-Add-refcount-debug-assert.patch
patch 0101-drm-amd-display-Pass-adev-to-fill_plane_attr.patch
patch 0102-drm-amd-display-Allow-multiple-instance-of-DTO-regs.patch
patch 0103-drm-amd-display-DAL3-HDR10-Infoframe-encoding.patch
patch 0104-drm-amd-display-debug-opt-disable-hdmi-deep-color.patch
patch 0105-drm-amd-display-debug-option-to-disable-color-module.patch
patch 0106-drm-amd-display-Don-t-use-target-before-null-check.patch
patch 0107-drm-amd-display-Add-missing-function-to-fix-crash-fo.patch
patch 0108-drm-amd-display-Set-gamma-to-NULL-at-release.patch
patch 0109-drm-amd-display-set-HBR3-and-TPS4-capable-flags.patch
patch 0110-drm-amd-display-Fix-color-module-crash-when-hotplug-.patch
patch 0111-drm-amd-display-enable-option-to-disable-HDR-related.patch
patch 0112-drm-amd-display-Remove-unused-color-and-power-module.patch
patch 0113-drm-amd-display-Fix-link-retraining-hw-sequence.patch
patch 0114-drm-amd-display-Fix-link-retraining-hw-sequence-for-.patch
patch 0115-drm-amd-display-simplify-link_encoder.patch
patch 0116-drm-amd-display-limit-HBR3-support-to-Polaris-and-up.patch
patch 0117-drm-amd-display-fix-gamma-for-dpms-usecase.patch
patch 0118-drm-amd-display-Fix-DP-PHY-test-pre-emphasis-not-set.patch
patch 0119-drm-amd-display-MST-Fix-startup-sequence-v3.patch
patch 0120-drm-amd-display-Fix-vblank-IRQ-refcount-in-DM.patch
patch 0121-drm-amd-display-Remove-unused-function-in-gamma_calc.patch
patch 0122-drm-amd-display-Fix-misleading-indentation-bug-in-li.patch
patch 0123-drm-amd-display-Fix-warnings-in-DC.patch
patch 0124-drm-amd-display-Fix-wrong-index-bug-in-set_avi_info_.patch
patch 0125-drm-amd-display-Check-hdr-support-before-setting.patch
patch 0126-drm-amd-display-fix-Infoframe-byte-28-31-doesn-t-get.patch
patch 0127-drm-amd-display-remove-HDMI-deep-color-debug-flag.patch
patch 0128-drm-amd-display-Don-t-fail-validation-for-SIGNAL_TYP.patch
patch 0129-drm-amdgpu-virt-disable-dc.patch
patch 0130-drm-amd-display-fix-cursor-disappearing-after-resume.patch
patch 0131-drm-amd-display-blank-mechanism-for-supporting-MPO.patch
patch 0132-drm-amd-display-set-blank-functionality.patch
patch 0133-drm-amd-display-When-signal-type-of-sink-is-none-use.patch
patch 0134-drm-amd-display-Support-64-bit-Polaris11-5k-VSR.patch
patch 0135-drm-amd-display-drop-min-max-wrappers.patch
patch 0136-drm-amd-display-start-using-linux-hdmi-header.patch
patch 0137-drm-amd-display-Use-DTO-as-clock-on-DP-if-not.patch
patch 0138-drm-amd-display-Add-Polaris12-to-bw_calc.patch
patch 0139-drm-amd-display-Pass-visible-flag-into-surface-progr.patch
patch 0140-drm-amd-display-Remove-dc_target-object.patch
patch 0141-drm-amd-display-Null-check-clock-source.patch
patch 0142-drm-amd-display-Output-Transfer-Function-Regamma-Ref.patch
patch 0143-drm-amd-display-Disable-Modules-at-Runtime.patch
patch 0144-drm-amd-display-Fixing-some-fallout-from-dc_target-r.patch
patch 0145-drm-amd-display-No-audio-output-heard-from-DP-panel.patch
patch 0146-drm-amd-display-Use-pflip-prepare-and-submit-parts-v.patch
patch 0147-drm-amd-display-mode-change-without-breaking-unaffec.patch
patch 0148-drm-amd-display-assert-if-mask-is-0-in-set_reg_field.patch
patch 0149-drm-amd-display-remove-un-used-defines-and-dead-code.patch
patch 0150-drm-amd-display-remove-hw_crtc_timing.patch
patch 0151-drm-amd-display-remove-hw_info_frame.patch
patch 0152-drm-amd-display-remove-SIGNAL_TYPE_WIRELESS.patch
patch 0153-drm-amd-display-remove-dead-code.patch
patch 0154-drm-amd-display-remove-calculate_adjustments-in-conv.patch
patch 0155-drm-amd-display-enable-clock-gating-and-dchubp-power.patch
patch 0156-drm-amd-display-Set-default-degamma-to-sRGB-instead-.patch
patch 0157-drm-amd-display-HDR-Enablement-For-Applications.patch
patch 0158-drm-amd-display-refactor-clk_resync-to-avoid-asserti.patch
patch 0159-drm-amd-display-Remove-meta_pitch.patch
patch 0160-drm-amd-display-rename-BGRA8888-to-ABGR8888.patch
patch 0161-drm-amd-display-Fix-missing-conditions-in-hw-sequenc.patch
patch 0162-drm-amd-display-Add-missing-MI-masks.patch
patch 0163-drm-amd-display-Add-interrupt-entries-for-VBLANK-isr.patch
patch 0164-drm-amd-display-Register-on-VLBLANK-ISR.patch
patch 0165-drm-amd-display-Clean-index-in-irq-init-loop.patch
patch 0166-drm-amd-display-add-missing-dcc-update-on-flip-call.patch
patch 0167-drm-amd-display-Don-t-reserve-pipe-for-underlay-on-A.patch
patch 0168-drm-amd-display-Remove-power-gating-debug-flags.patch
patch 0169-drm-amd-display-check-surface-size-is-at-least-as-la.patch
patch 0170-drm-amd-display-Proper-de-allocation-of-OPP.patch
patch 0171-drm-amd-display-Change-update-surface-condition-fix-.patch
patch 0172-drm-amd-display-prevent-setting-cursor-position-with.patch
patch 0173-drm-amd-display-improve-debug-ability.patch
patch 0174-drm-amd-display-refactor-dc_update_surfaces_for_stre.patch
patch 0175-drm-amd-display-clean-up-redundant-logic.patch
patch 0176-drm-amd-display-Check-we-got-a-stream-in-update_info.patch
patch 0177-drm-amd-display-Fixed-4K-black-issue-by-refactor-upd.patch
patch 0178-drm-amd-display-enable-color-gamma-programming.patch
patch 0179-drm-amd-display-Fix-Warnings.patch
patch 0180-drm-amd-display-fix-timing-trace-debug-print.patch
patch 0181-drm-amd-display-Make-sure-to-update-address-without-.patch
patch 0182-drm-amd-display-Rename-atomic_commit-parameter.patch
patch 0183-drm-amd-display-Fix-compile-warnings.patch
patch 0184-drm-amd-display-Expose-hw-sequencer-gamma-function.patch
patch 0185-drm-amd-display-DP-compliance-automation-test-fixes.patch
patch 0186-drm-amd-display-Change-power-gating-off-sequence-to-.patch
patch 0187-drm-amd-display-DMCU-Compile-and-Load.patch
patch 0188-drm-amd-display-Move-backlight-from-encoder-to-ABM.patch
patch 0189-drm-amd-display-Make-new-pixel-clock-more-obvious.patch
patch 0190-drm-amd-display-Support-ABM-without-PPlib.patch
patch 0191-drm-amd-display-Debug-option-to-force-enable-ABM.patch
patch 0192-drm-amd-display-add-dcfclk-reporting-to-pplib.patch
patch 0193-drm-amd-display-surface-validation-on-dce100.patch
patch 0194-drm-amd-display-remove-CV-specific-timing-standard.patch
patch 0195-drm-amd-display-Fix-64-bit-division.patch
patch 0196-drm-amd-display-mclk-level-can-t-be-0.patch
patch 0197-drm-amd-display-Clear-test-pattern-when-enabling-str.patch
patch 0198-drm-amd-display-Fix-YCbCr-pixel-format-shows-green-i.patch
patch 0199-drm-amd-display-HDMI-YCbCr422-12bpc-pixel-format-iss.patch
patch 0200-drm-amd-display-Adding-10-bpcc-video-P010-format.patch
patch 0201-drm-amd-display-Fixed-color-temperature-corruption.patch
patch 0202-drm-amd-display-fix-crash-with-modesetting-driver.patch
patch 0203-drm-amd-display-Fix-MST-physical-ports-always-discon.patch
patch 0204-drm-amd-display-use-disp-clock-value-in-context-rath.patch
patch 0205-drm-amd-display-fix-psr-status-wait.patch
patch 0206-drm-amd-display-Audio-is-not-switching-to-DP-when-HD.patch
patch 0207-drm-amd-display-handle-unsupported-sink-types.patch
patch 0208-drm-amd-display-Enable-regamma-25-segments-and-use-d.patch
patch 0209-drm-amd-display-Set-ignore_msa_timing-flag-for-frees.patch
patch 0210-drm-amd-display-Fix-program-pix-clk-logic-to-unblock.patch
patch 0211-drm-amd-display-report-cursor-size-base-on-the-ASIC.patch
patch 0212-drm-amd-display-color-distortion-after-DPMS-backgrou.patch
patch 0213-drm-amd-display-Fix-logic-that-causes-segfault-on-DP.patch
patch 0214-drm-amd-display-Fix-missing-fcn-pointer-on-DCE8.patch
patch 0215-drm-amd-dc-fix-semicolon.cocci-warnings.patch
patch 0216-drm-amd-dc-fix-semicolon.cocci-warnings.patch
patch 0217-drm-amd-dc-hw_sequencer-fix-semicolon.cocci-warnings.patch
patch 0218-drm-amd-display-Fix-64-bit-division-yet-again.patch
patch 0219-drm-amd-display-Don-t-attempt-to-program-missing-reg.patch
patch 0220-drm-amd-display-Remove-LINUX_VERSION_CODE-check.patch
patch 0221-drm-amd-display-fix-dc_commit_surfaces_to_stream-for.patch
patch 0222-drm-amd-display-Add-bypass-case-for-PQ-transfer-func.patch
patch 0223-drm-amd-display-Add-query_ddc_data-function.patch
patch 0224-drm-amd-display-Fix-error-where-wrong-payload-size-i.patch
patch 0225-drm-amd-display-audio-bug-fix-part-1-Add-missing-aud.patch
patch 0226-drm-amd-display-fix-12bpc-truncate-to-10bpc.patch
patch 0227-drm-amd-display-fix-incorrect-programming-for-YCbCr4.patch
patch 0228-drm-amdgpu-Expose-mode_config-functions-for-DM.patch
patch 0229-drm-amdgpu-Add-a-few-members-to-support-DAL-atomic-r.patch
patch 0230-drm-amd-display-rename-bandwidth_calcs.c-to-dce_calc.patch
patch 0231-drm-amd-display-HDMI-deep-color-mode-audio-issue.patch
patch 0232-drm-amd-display-420-clock-divided-by-2-twice.patch
patch 0233-drm-amd-display-DMCU-PSR-Refactor.patch
patch 0234-drm-amd-display-Fix-gamma-colour-corruption-for-10-b.patch
patch 0235-drm-amd-display-add-scaler-coefficients-for-64-phase.patch
patch 0236-drm-amd-display-Surface-Validation-Fixes-Audio-Mask.patch
patch 0237-drm-amd-display-Fix-warnings-in-amdgpu_dm.patch
patch 0238-drm-amd-display-Fix-warnings-in-DC.patch
patch 0239-drm-amd-display-remove-apply_clk_constraints-used-va.patch
patch 0240-drm-amd-display-bandwidth-update-fix.patch
patch 0241-drm-amd-display-move-visual-confirm-recout-adjustmen.patch
patch 0242-drm-amd-display-Some-more-warning-fixes.patch
patch 0243-drm-amd-display-fix-dce100_validate_bandwidth-return.patch
patch 0244-drm-amd-display-Use-amdgpu-mode-funcs-statically.patch
patch 0245-drm-amd-display-Use-atomic-helpers-for-gamma.patch
patch 0246-drm-amd-display-Remove-unused-define-from-amdgpu_dm_.patch
patch 0247-drm-amd-display-freesync-pipe-split-VTotal_Min_Mask-.patch
patch 0248-drm-amd-display-We-don-t-support-interlace-and-doubl.patch
patch 0249-drm-amd-display-extended-the-programming-sequence-to.patch
patch 0250-drm-amd-display-Refactor-atomic-commit-implementatio.patch
patch 0251-drm-amd-display-Refactor-headless-to-use-atomic-comm.patch
patch 0252-drm-amd-display-Remove-page_fleep_needed-function.patch
patch 0253-drm-amd-display-clean-up-and-simply-locking-logic.patch
patch 0254-drm-amd-display-remove-independent-lock-as-we-have-n.patch
patch 0255-drm-amd-display-sometime-VtotalMin-less-than-VTotal-.patch
patch 0256-drm-amd-display-Adding-FastUpdate-functionality.patch
patch 0257-drm-amd-display-Simplify-some-DMCU-waits.patch
patch 0258-drm-amd-display-refclock-from-bios-firmwareInfoTable.patch
patch 0259-drm-amd-display-Memory-leak-fix-during-disable.patch
patch 0260-drm-amd-display-move-refclk-from-dc-to-resource_pool.patch
patch 0261-drm-amd-display-TPS4-logic-typo-fix.patch
patch 0262-drm-amd-display-After-program-backend-also-program-f.patch
patch 0263-drm-amd-display-Do-not-copy-bottom-pipe-when-map-res.patch
patch 0264-drm-amd-display-Switch-to-DRM-helpers-in-s3.patch
patch 0265-drm-amd-display-Refactor-on-dc_sink-structure.patch
patch 0266-drm-amd-display-add-init-calculation-to-scaler-param.patch
patch 0267-drm-amd-display-fix-hsplit-viewport-calculation-for-.patch
patch 0268-drm-amd-display-fix-viewport-adjustment-on-rotated-s.patch
patch 0269-drm-amd-display-Less-log-spam.patch
patch 0270-drm-amd-display-fix-incorrect-vp-adjustment.patch
patch 0271-drm-amdgpu-get-display-info-from-DC-when-DC-enabled.patch
patch 0272-drm-amd-display-Add-DCE12-bios-parser-support.patch
patch 0273-drm-amd-display-Add-DCE12-gpio-support.patch
patch 0274-drm-amd-display-Add-DCE12-i2c-aux-support.patch
patch 0275-drm-amd-display-Add-DCE12-irq-support.patch
patch 0276-drm-amd-display-Add-DCE12-core-support.patch
patch 0277-drm-amd-display-Enable-DCE12-support.patch
patch 0278-drm-amd-display-need-to-handle-DCE_Info-table-ver4.2.patch
patch 0279-drm-amd-display-Less-log-spam.patch
patch 0280-drm-amd-display-Remove-DCE12-guards.patch
patch 0281-drm-amdgpu-soc15-enable-dc-on-vega10.patch
patch 0282-drm-amd-display-adding-new-dc_update_surfaces_and_st.patch
patch 0283-drm-amd-display-Fixed-bandwidth-calculation-error-wh.patch
patch 0284-drm-amd-display-fix-bw-calc-internal-initialization-.patch
patch 0285-drm-amd-display-changing-the-dc_update_surfaces_and_.patch
patch 0286-drm-amd-display-use-extended-receiver-cap-for-dpcd-v.patch
patch 0287-drm-amd-display-remove-dc_pre_update_surfaces_to_str.patch
patch 0288-drm-amd-display-Use-stream_enc-to-get-head-pipe.patch
patch 0289-drm-amd-display-support-CP2520-pattern-2-for-HBR2-co.patch
patch 0290-drm-amd-display-support-PHY-compliance-automation-fo.patch
patch 0291-drm-amd-display-Fix-the-NULL-pointer.-v2.patch
patch 0292-drm-amd-display-Fix-gfx9-parameters-reading-for-DC.patch
patch 0293-drm-amd-display-Unhardcode-acrtc-max_cursor_-height-.patch
patch 0294-drm-amd-display-Unhardcode-cursor-size-reported-back.patch
patch 0295-drm-amd-display-Set-cursor-pitch-to-cursor-width-in-.patch
patch 0296-drm-amd-display-Fix-applying-surface-to-underlay-pip.patch
patch 0297-drm-amd-display-DP-is-hotplugged-HDMI-with-4-2-0-cor.patch
patch 0298-drm-amd-display-remove-redundant-check.patch
patch 0299-drm-amd-display-using-calculated-values-for-VReady-S.patch
patch 0300-drm-amd-display-Add-audio-video-ContainerId-implemen.patch
patch 0301-drm-amd-display-Power-on-front-end-during-set-mode.patch
patch 0302-drm-amd-display-Rename-bandwidth_calcs.h-to-dce_calc.patch
patch 0303-drm-amd-display-use-CRTC_VERTICAL_INTERRUPT0-as-VBLA.patch
patch 0304-drm-amd-display-use-CRTC_VERTICAL_INTERRUPT0-as-a-tr.patch
patch 0305-drm-amd-display-voltage-request-related-change.patch
patch 0306-drm-amd-display-increase-timeout-for-dmif-dealloc.patch
patch 0307-drm-amd-display-Fix-MPO-exit-and-cursor-issue.patch
patch 0308-drm-amd-display-use-CP2520-3-for-PHY-compliance-auto.patch
patch 0309-drm-amd-display-stereo-support.patch
patch 0310-drm-amd-display-obtain-usHBR3En-bit-from-BP-1.patch
patch 0311-drm-amd-display-decouple-per-crtc-plane-model.patch
patch 0312-drm-amd-display-Fix-cleanup-in-amdgpu_dm_initialize_.patch
patch 0313-drm-amd-display-update-plane-functionalities.patch
patch 0314-drm-amd-display-remove-surface-validation-against-st.patch
patch 0315-drm-amd-display-refactor-member-referencing-to-impro.patch
patch 0316-drm-amd-display-Temporary-disable-PSR-for-HBR2-HBR3.patch
patch 0317-drm-amd-display-fix-dce_calc-surface-pitch-setting-f.patch
patch 0318-drm-amd-display-Remove-get_connector_for_link.patch
patch 0319-drm-amd-display-Remove-get_connector_for_sink.patch
patch 0320-drm-amd-display-Fix-i2c-write-flag.patch
patch 0321-drm-amd-display-Refactor-edid-read.patch
patch 0322-drm-amd-display-PSR-Aux-Channel-and-Static-Screen-Su.patch
patch 0323-drm-amd-display-Fill-in-vrefresh-and-min_vblank_time.patch
patch 0324-drm-amd-display-Ignore-visible-flag-when-check-surfa.patch
patch 0325-drm-amd-display-Log-clock-source-in-error-condition.patch
patch 0326-drm-amd-display-Fix-s3-hang-on-resume.patch
patch 0327-drm-amd-display-fix-nullptr-on-vega-initialization.patch
patch 0328-drm-dp-helper-DP_TEST_MISC1-should-be-DP_TEST_MISC0.patch
patch 0329-drm-amd-display-Allow-planes-on-all-crtcs.patch
patch 0330-drm-amd-display-Add-lock-around-updating-freesync-pr.patch
patch 0331-drm-amd-display-Fallback-on-legacy-properties-in-ato.patch
patch 0332-drm-amd-display-get_atomic_property-missing-for-drm_.patch
patch 0333-drm-amd-display-Fix-race-between-vblank-irq-and-page.patch
patch 0334-drm-amd-display-Prevent-premature-pageflip-when-comi.patch
patch 0335-drm-amd-display-adding-FCLK-and-DPPCLK-clock-types.patch
patch 0336-drm-amd-display-Fix-hotspot-programming-during-set-c.patch
patch 0337-drm-amd-display-Memory-was-freed-twice-during-disabl.patch
patch 0338-drm-amd-display-Adding-dm-controlled-signal-type-in-.patch
patch 0339-drm-amd-display-Add-same-check-as-reset-pipes-for-pr.patch
patch 0340-drm-amd-display-change-mpo-surface-update-check-cond.patch
patch 0341-drm-amd-display-set-NULL-value-during-removal-for-re.patch
patch 0342-drm-amd-display-Fix-for-tile-MST.patch
patch 0343-drm-amd-display-Fix-missing-irq-refactor-causing-pot.patch
patch 0344-drm-amd-display-use-full-surface-update-when-stream-.patch
patch 0345-drm-amd-display-Parse-scanline-registers.patch
patch 0346-drm-amd-display-Add-support-for-programming-stereo-s.patch
patch 0347-drm-amd-display-FreeSync-LFC-MIN-MAX-update-on-curre.patch
patch 0348-drm-amd-display-Remove-unused-scratch_val_ctx.patch
patch 0349-drm-amd-display-Get-rid-of-temp_flip_context.patch
patch 0350-drm-amd-display-update-dce8-10-bw-programming.patch
patch 0351-drm-amd-display-pull-commit_surfaces-out-of-atomic_c.patch
patch 0352-drm-amd-display-Copy-ctx-to-current_context-instead-.patch
patch 0353-drm-amd-display-Move-resource_validate_ctx_destruct-.patch
patch 0354-drm-amd-display-Return-context-from-validate_context.patch
patch 0355-drm-amd-display-initialize-YUV-plane-capabilities.patch
patch 0356-drm-amdgpu-drop-experimental-flag-for-vega10.patch
patch 0357-drm-amd-display-update-the-YUV-plane-offsets.patch
patch 0358-drm-amd-display-make-dc_commit_surfaces_to_stream-re.patch
patch 0359-drm-amd-display-Block-YCbCr-formats-for-eDP.-Revert-.patch
patch 0360-drm-amd-display-Fix-memory-leak-in-post_update_surfa.patch
patch 0361-drm-amd-display-remove-unnecessary-allocation-for-re.patch
patch 0362-drm-amd-display-set-correct-v_total_min-and-v_total_.patch
patch 0363-drm-amd-display-fix-memory-leak.patch
patch 0364-drm-amd-display-always-retrieve-PSR-cap.patch
patch 0365-drm-amd-display-Make-sure-v_total_min-and-max-not-le.patch
patch 0366-drm-amd-display-USB-c-DP-HDMI-dongle-shows-garbage-o.patch
patch 0367-drm-amd-display-improve-cursor-programming-reliabili.patch
patch 0368-drm-amd-display-Make-dc_link-param-const-in-set_driv.patch
patch 0369-drm-amd-display-PSR-Refactor.patch
patch 0370-drm-amd-display-move-tg_color-to-dc_hw_types.patch
patch 0371-drm-amd-display-clarify-delay-param-for-REG_WAIT.patch
patch 0372-drm-amd-display-dce120-to-dce-ipp-refactor.patch
patch 0373-drm-amd-display-dce80-100-110-and-112-to-dce-ipp-ref.patch
patch 0374-drm-amd-display-no-need-for-return-value-from-ipp_pr.patch
patch 0375-drm-amd-display-FreeSync-Auto-Sweep-Support.patch
patch 0376-drm-amd-display-decouple-resource_pool-from-resource.patch
patch 0377-drm-amd-display-Define-dithering-options.patch
patch 0378-drm-amd-display-fix-crash-caused-by-incorrect-index-.patch
patch 0379-drm-amd-display-Check-for-Zero-Range-in-FreeSync-Cal.patch
patch 0380-drm-amd-display-Add-function-to-set-dither-option.patch
patch 0381-drm-amd-display-Add-support-for-FreeSync-on-eDP-to-m.patch
patch 0382-drm-amd-display-Disable-cursor-on-video-surface.patch
patch 0383-drm-amd-display-move-drr_params-definition-to-TG.patch
patch 0384-drm-amd-display-Get-dprefclk-ss-percentage-from-vbio.patch
patch 0385-drm-amd-display-Assign-stream-to-map-before-we-need-.patch
patch 0386-drm-amd-display-fix-resume-hang-because-of-DP-short-.patch
patch 0387-drm-amdgpu-display-Add-calcs-code-for-DCN.patch
patch 0388-drm-amdgpu-display-Add-core-dc-support-for-DCN.patch
patch 0389-drm-amdgpu-display-Add-dml-support-for-DCN.patch
patch 0390-drm-amdgpu-display-Add-gpio-support-for-DCN.patch
patch 0391-drm-amdgpu-display-Add-i2c-aux-support-for-DCN.patch
patch 0392-drm-amdgpu-display-Add-irq-support-for-DCN.patch
patch 0393-drm-amdgpu-display-Enable-DCN-in-DC.patch
patch 0394-drm-amdgpu-enable-dcn1.0-dc-support-on-raven.patch
patch 0395-drm-amdgpu-display-fix-semicolon.cocci-warnings.patch
patch 0396-drm-amdgpu-display-fix-semicolon.cocci-warnings.patch
patch 0397-drm-amd-display-Don-t-call-PSR-func-if-DMCU-is-off.patch
patch 0398-drm-amd-display-i2c-Remove-link-index.patch
patch 0399-drm-amd-display-DP-aux-Remove-link-index.patch
patch 0400-drm-amd-display-Keep-DVI_SINGLE_LINK-signal-if-low-c.patch
patch 0401-drm-amd-display-i2c-aux-Remove-link-index.patch
patch 0402-drm-amd-display-bw-debug-options-now-apply-to-dml-as.patch
patch 0403-drm-amd-display-Only-apply-ctx-for-specific-surface.patch
patch 0404-drm-amd-display-Allow-MPO-on-Raven.patch
patch 0405-drm-amd-display-Reverting-locks-around-updating-free.patch
patch 0406-drm-amd-display-use-signal-type-to-decide-whether-to.patch
patch 0407-drm-amd-display-do-not-set_mpc_tree-if-tree-is-alrea.patch
patch 0408-drm-amd-display-Continue-with-stream-enable-if-DP-li.patch
patch 0409-drm-amd-display-Implement-support-for-backlight-opti.patch
patch 0410-drm-amd-display-ifdef-some-code-only-needed-for-DCN.patch
patch 0411-drm-amd-display-Fix-race.patch
patch 0412-drm-amd-display-prevent-assert-on-error-of-1-in-calc.patch
patch 0413-drm-amd-display-refactor-bw-related-variable-structu.patch
patch 0414-drm-amd-display-switch-to-using-calc_clk-and-cur_clk.patch
patch 0415-drm-amd-display-Add-64KB_S_T-and-64KB_D_T-swizzle-mo.patch
patch 0416-drm-amd-display-Use-MED-update-type-if-clip-position.patch
patch 0417-drm-amd-display-single-channel-bandwidth-verses-dual.patch
patch 0418-drm-amd-display-enable-watermark-range-reporting-to-.patch
patch 0419-drm-amd-display-fix-freesync-not-working-on-raven.patch
patch 0420-drm-amd-display-Move-output-transfer-function-to-str.patch
patch 0421-drm-amd-display-Add-mem_input-header-to-non-DCN-buil.patch
patch 0422-drm-amd-display-DCE12-num_timing_generators-should-b.patch
patch 0423-drm-amd-display-fix-scaling-calculation-for-proper-s.patch
patch 0424-drm-amd-display-add-yuv-pixel-formats-to-pixel_forma.patch
patch 0425-drm-amd-display-fix-scaling-info-based-surface-updat.patch
patch 0426-drm-amd-display-add-explanation-for-surface_update_t.patch
patch 0427-drm-amd-display-Remove-duplicate-entry-from-log_mask.patch
patch 0428-drm-amd-display-Program-CSC-Mode-For-BT2020.patch
patch 0429-drm-amd-display-fix-mpo-blanking-out-on-one-of-plane.patch
patch 0430-drm-amd-display-Fix-slow-FPS.patch
patch 0431-drm-amd-display-Disable-ABM-when-eDP-is-disabled.patch
patch 0432-drm-amd-display-dce-8-12-mem_input-refactor-to-new-s.patch
patch 0433-drm-amd-display-Use-dc_update_surfaces_for_stream-fo.patch
patch 0434-drm-amd-display-Clean-unused-interface.patch
patch 0435-drm-amd-display-Fix-dcn10-cursor-set-position-hang.patch
patch 0436-drm-amd-display-add-missing-GRPH_UPDATE_LOCK-field-m.patch
patch 0437-drm-amd-display-Unify-loop-for-surface-update-and-pa.patch
patch 0438-drm-amd-display-read-VM-settings-from-MMHUB.patch
patch 0439-drm-amd-display-Fix-5th-display-lightup-on-Vega10.patch
patch 0440-drm-amd-display-make-dc_get_validate_context-re-entr.patch
patch 0441-drm-amd-display-revert-dc_get_validate_context-re-en.patch
patch 0442-drm-amd-display-Refactor-use_lut-from-dce110-to-dce.patch
patch 0443-drm-amd-display-Implement-input-gamma-LUT.patch
patch 0444-drm-amd-display-Add-missed-wait_for_prev_commits.patch
patch 0445-drm-amd-display-Fix-ASSR-enablement-on-DP-to-EDP-con.patch
patch 0446-drm-amd-display-Tidy-up-dce120_timing_generator_enab.patch
patch 0447-drm-amd-display-Fix-indentation-in-dce120_tg_program.patch
patch 0448-drm-amd-display-Make-dce120_tg_is_blanked-more-legib.patch
patch 0449-drm-amd-display-Clean-up-indentation-in-dce120_tg_se.patch
patch 0450-drm-amd-display-Tidy-up-dce120_clock_source_create.patch
patch 0451-drm-amd-display-Tidy-up-mem_input_program_surface_fl.patch
patch 0452-drm-amd-display-Query-for-update-plane-type.patch
patch 0453-drm-amd-display-Remove-redundant-condition.patch
patch 0454-drm-amd-display-fix-YUV-surface-address-programming-.patch
patch 0455-drm-amd-display-remove-GRPH_SURFACE_UPDATE_IMMEDIATE.patch
patch 0456-drm-amd-display-fix-flip-register-write-sequence.patch
patch 0457-drm-amd-display-Remove-unused-addr-var-in-TG.patch
patch 0458-drm-amd-display-No-need-to-assert-on-stream_status.patch
patch 0459-drm-amd-display-call-amdgpu_dm_fini-when-hw_fini.patch
patch 0460-drm-amdgpu-drop-experimental-flag-for-raven.patch
patch 0461-drm-amdgpu-soc15-enable-DC-ip-module-for-Raven.patch
patch 0462-drm-amdgpu-display-handle-changes-in-drm_dp_mst_allo.patch
patch 0463-drm-amd-display-Fix-page-flip-after-daniel-s-acquire.patch
patch 0464-drm-amdgpu-Enable-DRIVER_ATOMIC-flag-for-DAL.patch
patch 0465-drm-amd-display-add-always_scale-debug-flag-to-dc.patch
patch 0466-drm-amd-display-program-scaler-not-called.patch
patch 0467-drm-amd-display-Limit-DCN-to-x86-arch.patch
patch 0468-drm-amd-display-Fix-handling-of-scaling-and-undersca.patch
patch 0469-drm-amd-display-Clean-unused-interface.patch
patch 0470-drm-amd-display-Add-disable_psr-debug-flag.patch
patch 0471-drm-amd-display-Allow-update-stream-without-surface.patch
patch 0472-drm-amd-display-Add-FORCE_HDR-timing-flag.patch
patch 0473-drm-amd-display-Disable-PSR-entry-abort-to-prevent-i.patch
patch 0474-drm-amd-display-fix-NULL-pointer-in-dm_commit_surfac.patch
patch 0475-drm-amd-display-Get-rid-of-get_dm_commit_action.patch
patch 0476-drm-amd-display-Don-t-guard-x86-in-Makefile.patch
patch 0477-drm-amd-display-create_links-bug-with-empty-DDI-slot.patch
patch 0478-drm-amd-display-re-order-the-luma-chroma-addres-upda.patch
patch 0479-drm-amd-display-default-spd-packet-to-invalid.patch
patch 0480-drm-amd-display-update-NV12-NV21-as-the-YUV-format.patch
patch 0481-drm-amd-display-Don-t-commit-surfaces-if-no-stream.patch
patch 0482-drm-amd-display-enable-static-audio-routing.patch
patch 0483-drm-amd-display-stop-adjusting-scl-taps-when-scl-rat.patch
patch 0484-drm-amd-display-allow-taking-split-pipes-during-reso.patch
patch 0485-drm-amd-display-fix-surface-attachment-handling-of-p.patch
patch 0486-drm-amd-display-fix-mpo-split-pipe-aquisition-failur.patch
patch 0487-drm-amd-display-Universal-cursor-plane-hook-up.patch
patch 0488-drm-amd-display-Add-function-to-get-PSR-state.patch
patch 0489-drm-amd-display-Remove-redundant-member-from-amdgpu_.patch
patch 0490-drm-amd-display-Enable-DCN-clock-gating.patch
patch 0491-drm-amd-display-Remove-unsupported-RGB-formats.patch
patch 0492-drm-amd-display-Don-t-update-surface-if-dimensions-a.patch
patch 0493-drm-amd-display-fix-up-for-DRM_ROTATE-changes.patch
patch 0494-drm-amd-display-clean-up-mpc-programing-during-fe-re.patch
patch 0495-drm-amd-display-Add-assertion-for-invalid-surface-di.patch
patch 0496-drm-amd-display-remove-disable_clk_gate-debug-flag-f.patch
patch 0497-drm-amd-display-disable-forced-stutter-disable-after.patch
patch 0498-drm-amd-display-fix-mpc-alpha-programming.patch
patch 0499-drm-amd-display-Refactor-to-call-set-PSR-wait-loop-i.patch
patch 0500-drm-amd-display-Fix-DRR-Enable-on-Desktop.patch
patch 0501-drm-amd-display-fix-single-link-black-screen.patch
patch 0502-drm-amd-display-Add-function-to-log-connectivity.patch
patch 0503-drm-amd-display-Call-program_gamut-explicitly-instea.patch
patch 0504-drm-amd-display-propagate-surface-alpha-setting-from.patch
patch 0505-drm-amd-display-No-need-to-get-property-before-set.patch
patch 0506-drm-amd-display-Temporary-disable-BTR-FreeSync-suppo.patch
patch 0507-drm-amd-display-Use-surface-update-inuse-for-pending.patch
patch 0508-drm-amd-display-fix-enable_optc_clock-reg_wait-timeo.patch
patch 0509-drm-amd-display-add-bw-logging-for-dcn.patch
patch 0510-drm-amd-display-RV-stereo-support.patch
patch 0511-drm-amd-display-disable-dcc-when-reset-front-end.patch
patch 0512-drm-amd-display-Guard-some-DCN-only-code-in-dc_debug.patch
patch 0513-drm-amd-display-Include-local-vars-in-DCN-guard.patch
patch 0514-drm-amd-display-redesign-mpc.patch
patch 0515-drm-amd-display-w-a-for-ycbcr-output-pre-multiplied-.patch
patch 0516-drm-amd-display-enable-pipe-split.patch
patch 0517-drm-amd-display-remove-get_position-of-underlay.patch
patch 0518-drm-amd-display-RV-stereo-support.patch
patch 0519-drm-amd-display-DAL3-RV-get-DPREFCLK-SpreadspectrumI.patch
patch 0520-drm-amd-display-Get-rid-of-seperate-flip-function.patch
patch 0521-drm-amd-display-Handle-commit-plane-with-no-FB.patch
patch 0522-drm-amd-display-Don-t-call-DCN-clk-code-for-Vega.patch
patch 0523-drm-amd-display-RV-stereo-support.patch
patch 0524-drm-amd-display-Save-hpd_src-for-dc_link.patch
patch 0525-drm-amd-display-fix-dc_check_update_surfaces_for_str.patch
patch 0526-drm-amd-display-fix-issues-with-incorrectly-detectin.patch
patch 0527-drm-amd-display-fix-dc_post_update_surfaces_to_strea.patch
patch 0528-drm-amd-display-do-full-fe-reprogram-on-full-update.patch
patch 0529-drm-amd-display-add-pipe-split-disable-regkey.patch
patch 0530-drm-amd-display-fix-non-dcn-compilation.patch
patch 0531-drm-amd-display-Create-dm_plane_state.patch
patch 0532-drm-amd-display-MST-atomic_get_property-missing.patch
patch 0533-drm-amd-display-Add-global-lock-function.patch
patch 0534-drm-amd-display-Remove-check-update-type-function.patch
patch 0535-drm-amd-display-use-different-sr-latencies-for-dpm0-.patch
patch 0536-drm-amd-display-make-variable-latency-into-a-regkey-.patch
patch 0537-drm-amd-display-dcn-bw_calc_auto-update-rev-247-to-2.patch
patch 0538-drm-amd-display-Refine-globallock.patch
patch 0539-drm-amd-display-fix-bw_calc_auto-translation-error.patch
patch 0540-drm-amd-display-Workaround-IGT-multiplane-restrictio.patch
patch 0541-drm-amd-display-Global-lock-typos-fix.patch
patch 0542-drm-amd-display-Disable-pipe-split.patch
patch 0543-drm-amd-display-Don-t-program-scaler-if-we-have-no-s.patch
patch 0544-drm-amd-display-w-a-no-color-space-info-for-HDMI-whe.patch
patch 0545-drm-amd-display-fix-another-DRM_ROTATE-change.patch
patch 0546-drm-amd-display-Clean-up-unused-function.patch
patch 0547-drm-amd-display-Move-dm_plane_state-definition-to-DA.patch
patch 0548-drm-amd-display-Move-kms_atomic-support-flag-to-dm_e.patch
patch 0549-drm-amd-display-Fix-misuse-of-plane-state-destroy-he.patch
patch 0550-drm-amd-display-RV-stereo-support.patch
patch 0551-drm-amd-display-Move-drm_get_vblank-from-legacy-code.patch
patch 0552-drm-amd-display-Make-mode_config_funcs-const.patch
patch 0553-drm-amd-display-Create-dm_crtc_state-stubs.patch
patch 0554-drm-amd-display-Add-clock-info-struct.patch
patch 0555-drm-amd-display-remove-unneeded-FBC-hw-programming-c.patch
patch 0556-drm-amd-display-fix-dcn-pipe-reset-sequence.patch
patch 0557-drm-amd-display-Move-dm_plane_state-to-DAL-header.patch
patch 0558-drm-amd-display-add-hyst-frames-for-fixed-refresh.patch
patch 0559-drm-amd-display-Connect-DC-resource-to-FBC-compresso.patch
patch 0560-drm-amd-display-Add-extra-mode-and-clock-info-to-DTN.patch
patch 0561-drm-amd-display-enable-diags-compilation.patch
patch 0562-drm-amd-display-Change-max-OPP.patch
patch 0563-drm-amd-display-Add-DC-interface-for-custom-CSC-matr.patch
patch 0564-drm-amd-display-Re-enable-Vsync-Interrupts-for-Gradu.patch
patch 0565-drm-amd-display-Enabling-VSR-on-4K-display-causes-bl.patch
patch 0566-drm-amd-display-Coding-for-backcompatible-tiling-sup.patch
patch 0567-drm-amd-display-Fix-for-hdmi-frame-pack-stereo.patch
patch 0568-drm-amd-display-Set-static-screen-register-for-stone.patch
patch 0569-drm-amd-display-Rename-DCN-TG-specific-function-pref.patch
patch 0570-drm-amd-display-Rename-DCN-mem-input-specific-functi.patch
patch 0571-drm-amd-display-Rename-DCN-opp-specific-function-pre.patch
patch 0572-drm-amd-display-Enable-ipp-compilation.patch
patch 0573-drm-amd-display-Remove-SMU_INTERRUPT_CONTROL.patch
patch 0574-drm-amd-display-Remove-unblanaced-drm_vblank_put.patch
patch 0575-drm-amd-display-set-drr-during-program-timing.patch
patch 0576-drm-amd-display-Create-dm_atomic_state.patch
patch 0577-drm-amd-display-Hook-dm-private-state-into-atomic_ch.patch
patch 0578-drm-amd-display-Add-correct-retain-release.patch
patch 0579-drm-amd-display-Commit-validation-set-from-state.patch
patch 0580-drm-amd-display-Add-validate_context-to-atomic_state.patch
patch 0581-drm-amd-display-Use-validate_context-from-atomic_che.patch
patch 0582-drm-amd-display-Update-atomic-state-hooks.patch
patch 0583-drm-amd-display-Remove-acrtc-stream.patch
patch 0584-drm-amd-display-Undo-dc_update_surfaces_and_stream-c.patch
patch 0585-drm-amd-display-update-DPM-bounding-box.patch
patch 0586-drm-amd-display-move-number-of-memory-channel-calc-o.patch
patch 0587-drm-amd-display-block-modes-that-require-read-bw-gre.patch
patch 0588-drm-amd-display-Change-how-we-disable-pipe-split.patch
patch 0589-drm-amd-display-call-pplib-to-update-clocks.patch
patch 0590-drm-amd-display-Refactor-dc_commit_streams.patch
patch 0591-drm-amd-display-refactor-dcn10-hw_sequencer-to-new-r.patch
patch 0592-drm-amd-display-Fix-MPO-visual-confirm.patch
patch 0593-drm-amd-display-get-dal1.1-to-run.patch
patch 0594-drm-amd-display-minor-dcn10_hwseq-clean-up-refactor.patch
patch 0595-drm-amd-display-dal1.1-opp-prog-update.patch
patch 0596-drm-amd-display-dal1.1-ipp-prog-update.patch
patch 0597-drm-amd-display-dal1.1-xfm-prog-update.patch
patch 0598-drm-amd-display-dal1.1-hwseq-prog-update.patch
patch 0599-drm-amd-display-Fix-context-copy-memory-leak.patch
patch 0600-drm-amd-display-Leave-all-validate_ctx-life-cycle-ma.patch
patch 0601-drm-amd-display-Clean-dm_plane_state-hooks.patch
patch 0602-drm-amd-display-Attach-surface-to-dm_plane_state.patch
patch 0603-drm-amd-display-Flattening-to-dc_transfer_func.patch
patch 0604-drm-amd-display-change-non_dpm0-state-s-default-SR-l.patch
patch 0605-drm-amd-display-Introduce-refcount-for-dc_validate_c.patch
patch 0606-drm-amd-display-Skip-DC-validation-for-flips-and-cur.patch
patch 0607-drm-amd-display-Release-dm_state-context-when-state-.patch
patch 0608-drm-amd-display-Fix-eDP-power-isn-t-off-when-lid-clo.patch
patch 0609-drm-amd-display-change-order-of-HUBP-and-MPC-disable.patch
patch 0610-drm-amd-display-dc_validate_ctx-refocunt-fixes.patch
patch 0611-drm-amd-display-avoid-disabling-opp-clk-before-hubp-.patch
patch 0612-drm-amd-display-fix-4k-30-with-10bit-deep-color-and-.patch
patch 0613-drm-amd-display-Get-freesync-properties.patch
patch 0614-drm-amd-display-ensure-OTG-is-locked-before-proceedi.patch
patch 0615-drm-amd-display-fix-mpo-exit-hang.patch
patch 0616-drm-amd-display-Rename-trasnform-to-dpp-for-dcn-s.patch
patch 0617-drm-amd-display-Preserve-refcount-for-S3-case.patch
patch 0618-drm-amd-display-Release-cached-atomic-state-in-S3.patch
patch 0619-drm-amd-display-add-line-number-to-reg_wait-timeout-.patch
patch 0620-drm-amd-display-hwseq-init-sequence-update.patch
patch 0621-drm-amd-display-Move-view-port-registers-and-program.patch
patch 0622-drm-amd-display-Fix-S3-gamma-corruption.patch
patch 0623-drm-amd-display-link-training-fallback-actions.patch
patch 0624-drm-amd-display-fix-DVI-connected-to-HDMI-connector-.patch
patch 0625-drm-amd-display-properly-turn-off-unused-mpc-before-.patch
patch 0626-drm-amd-display-fix-aviInfoFrame-bar-Info-and-add-se.patch
patch 0627-drm-amd-display-revert-order-change-of-HUBP-and-MPC-.patch
patch 0628-drm-amd-display-Add-regkey-for-DRR-control-for-inter.patch
patch 0629-drm-amd-display-powergate-fe-of-reused-pipes-to-rese.patch
patch 0630-drm-amd-display-Do-not-release-state-objects-on-atom.patch
patch 0631-drm-amd-include-Add-DC_PINSTRAPS.AUDIO-defines.patch
patch 0632-drm-amd-include-Add-DCHUBBUB_TEST_DEBUG-register-def.patch
patch 0633-drm-amd-Add-missing-SURFACE_TMZ-register-shift-mask.patch
patch 0634-drm-amd-display-fix-dcn10_resource-read_dce_straps.patch
patch 0635-drm-amd-display-Set-i2c-speed-to-100khz-for-DCE11.2-.patch
patch 0636-drm-amd-display-Return-hpd_irq_dpcd-from-hpd_rx-hand.patch
patch 0637-drm-amd-display-fix-index-and-union-overwrite-in-com.patch
patch 0638-drm-amd-display-register-programming-consolidation.patch
patch 0639-drm-amd-display-plumbing-to-allow-easy-print-of-HW-s.patch
patch 0640-drm-amd-display-mpo-debug-sanity-checks.patch
patch 0641-drm-amd-display-update-dcn-register-headers.patch
patch 0642-drm-amd-display-mpcc-disconnect-and-pipe-pg-in-multi.patch
patch 0643-drm-amd-display-fix-locking-in-apply_ctx_for_surface.patch
patch 0644-drm-amd-display-revert-dcn10-soc-defaults-to-17-19.patch
patch 0645-drm-amd-display-Implement-logic-for-hdmi-info-packet.patch
patch 0646-drm-amd-display-Change-DTN_INFO-macro.patch
patch 0647-drm-amd-display-support-for-updated-register-headers.patch
patch 0648-drm-amd-display-Roll-surface-struct-into-core_surfac.patch
patch 0649-drm-amd-display-fix-decide_link_settings.patch
patch 0650-drm-amd-display-move-VGA-to-HWSS-from-TG.patch
patch 0651-drm-amd-display-Fix-generic_reg_wait-1000ms-case.patch
patch 0652-drm-amd-display-add-idle-wait-for-passive-surface-up.patch
patch 0653-drm-amd-display-move-ocsc-programming-from-opp-to-dp.patch
patch 0654-drm-amd-display-add-missing-func-for-dce11o-to-avoid.patch
patch 0655-drm-amd-display-fix-YCbCr420-deep-color-mode-not-sup.patch
patch 0656-drm-amd-display-move-RGAM-programming-from-opp-to-dp.patch
patch 0657-drm-amd-display-Move-DCHUBBUB-block-from-MemInput-to.patch
patch 0658-drm-amd-display-Roll-core_surface-into-dc_surface.patch
patch 0659-drm-amd-display-Roll-core_link-into-dc_link.patch
patch 0660-drm-amd-display-Roll-sink-struct-into-core_sink.patch
patch 0661-drm-amd-display-Roll-core_sink-into-dc_sink.patch
patch 0662-Revert-drm-amd-display-Roll-core_sink-into-dc_sink.patch
patch 0663-drm-amd-display-Roll-core_sink-into-dc_sink.patch
patch 0664-drm-amd-display-Roll-gamma-struct-into-core_gamma.patch
patch 0665-drm-amd-display-Roll-core_gamma-into-dc_gamma.patch
patch 0666-drm-amd-display-single-PSR-display-not-allow-CSTATE-.patch
patch 0667-drm-amd-display-separate-plane-disable-sequence.patch
patch 0668-drm-amd-display-break-up-plane-disable-and-disconnec.patch
patch 0669-drm-amd-display-Move-stream-validations-into-seperat.patch
patch 0670-drm-amd-display-Use-stream-validation-hook.patch
patch 0671-drm-amd-display-Fix-eDP-panel-light-up.patch
patch 0672-drm-amd-display-move-ocsc-programming-from-opp-to-dp.patch
patch 0673-drm-amd-display-Minor-fix-for-dc_link-refactor.patch
patch 0674-drm-amd-display-Clean-up-some-DCN1-guards.patch
patch 0675-drm-amd-display-Minor-fix-for-dc_sink-refactor.patch
patch 0676-drm-amd-display-Disable-timestamp-and-entry-heading.patch
patch 0677-drm-amd-display-Add-interfaces-for-new-CM-blocks.patch
patch 0678-drm-amd-display-log-HUBP-using-DTN-logging.patch
patch 0679-drm-amd-display-Roll-core_stream-into-dc_stream.patch
patch 0680-drm-amd-display-Roll-stream-into-dc_stream.patch
patch 0681-drm-amd-display-reduce-40s-time-out-to-1s-in-disable.patch
patch 0682-drm-amd-display-safeguard-compressor-api.patch
patch 0683-drm-amd-display-collapse-dce11-reset_hw_ctx_wrap-int.patch
patch 0684-drm-amd-display-mpc-block-redesign.patch
patch 0685-drm-amd-display-fix-mpcc-idle-wait.patch
patch 0686-drm-amd-display-add-detect-caps-for-edp.patch
patch 0687-drm-amd-display-update-clocks-we-report-to-PPlib.patch
patch 0688-drm-amd-display-Fix-compilation-with-DCN-disabled.patch
patch 0689-drm-amd-display-Rename-firmware_info-to-dc_firmware_.patch
patch 0690-drm-amd-amdgpu-enable-GFX-PG-for-carrizo-and.patch
patch 0691-drm-amd-display-Merge-amdgpu_dm_types-and-amdgpu_dm.patch
patch 0692-drm-amd-display-Fix-ckeckpatch-problems-in-amdgpu_dm.patch
patch 0693-drm-amd-display-move-ocsc-programming-from-opp-to-dp.patch
patch 0694-drm-amd-display-Fix-DCN-compile-errors.patch
patch 0695-drm-amd-display-Add-per-surface-validation-hook.patch
patch 0696-drm-amd-display-add-preferred-mode-from-Video-Format.patch
patch 0697-drm-amd-display-Initial-prototype-of-FBC-implementat.patch
patch 0698-drm-amd-display-Initial-prototype-of-FBC-implementat.patch
patch 0699-drm-amd-display-Implement-plane-atomic_check.patch
patch 0700-drm-amd-display-Add-stateless-surface-validation-to-.patch
patch 0701-drm-amd-display-fix-dcn-fe-reset-memory-access-error.patch
patch 0702-drm-amd-display-Keep-blank-until-set-visibility-to-t.patch
patch 0703-drm-amd-display-fix-bw_calc-for-hdmi-and-420-outputs.patch
patch 0704-drm-amd-display-fix-340-Mhz-with-deep-color-pipe-spl.patch
patch 0705-drm-amd-display-Move-and-Rename-is_stream_changed.patch
patch 0706-drm-amd-display-Avoid-full-modeset-when-not-required.patch
patch 0707-drm-amd-display-move-regamma-from-opp-to-dpp-for-dce.patch
patch 0708-drm-amd-display-remove-DCN1-guard-as-DCN1-is-already.patch
patch 0709-drm-amd-display-Rename-dc_surface-to-dc_plane_state.patch
patch 0710-drm-amd-display-Rename-dc_stream-to-dc_stream_state.patch
patch 0711-drm-amd-display-Rename-more-dc_surface-stuff-to-plan.patch
patch 0712-drm-amd-display-Remove-struct-from-stack-in-dp_set_t.patch
patch 0713-drm-amd-display-Stub-new-resource-objects.patch
patch 0714-drm-amd-display-Move-scl_data-to-plane_res.patch
patch 0715-drm-amd-display-Move-mi-ipp-xfm-to-plane_res.patch
patch 0716-drm-amd-display-Move-OPP-to-stream_res.patch
patch 0717-drm-amd-display-Move-TG-to-stream_res.patch
patch 0718-drm-amd-display-Move-stream_enc-to-stream_res.patch
patch 0719-drm-amd-display-remove-remaining-DCN1-guard.patch
patch 0720-drm-amd-display-Move-audio-to-stream_res.patch
patch 0721-drm-amd-display-Move-pix_clk_params-into-stream_res.patch
patch 0722-drm-amd-display-Move-encoder_info_frame-to-stream_re.patch
patch 0723-drm-amd-display-fix-PHYCLK-in-formula.patch
patch 0724-drm-amd-display-Add-surface-to-dm_plane_state-if-fb-.patch
patch 0725-drm-amd-display-Fix-plane_atomic_check-when-no-dc_st.patch
patch 0726-drm-amd-display-fix-PHYCLK-in-formula.patch
patch 0727-drm-amd-display-do-not-report-min_memory_clock_khz-t.patch
patch 0728-drm-amd-display-Fix-comment-placement-for-when-new_s.patch
patch 0729-drm-amd-display-update-predefined-latency-for-Rv1_F0.patch
patch 0730-drm-amd-display-fix-dlg-ttu-calculation-input.patch
patch 0731-drm-amd-display-Implement-tmz-surface.patch
patch 0732-drm-amd-display-Clean-up-cursor-code.patch
patch 0733-drm-amd-display-fix-eDP-power-down-sequence.patch
patch 0734-drm-amd-display-log-HW-state-when-we-about-to-encoun.patch
patch 0735-drm-amd-display-log-underflow.patch
patch 0736-drm-amd-display-Add-more-pstate-sanity-checks.patch
patch 0737-drm-amd-display-implement-DXGI-Gamma-Ramps.patch
patch 0738-drm-amd-display-Move-verify-link-cap-after-read-edid.patch
patch 0739-drm-amd-display-add-programming-for-0-plane-case.patch
patch 0740-drm-amd-display-Clear-water-mark-change-request-bit-.patch
patch 0741-drm-amd-display-Fix-accessing-freed-memory.patch
patch 0742-drm-amd-display-use-some-sensible-time-out.patch
patch 0743-drm-amd-display-Use-public-plane-destroy-helper.patch
patch 0744-drm-amd-display-Couple-newline-fixes.patch
patch 0745-drm-amd-display-Fix-hw-state-logging-regression.patch
patch 0746-drm-amd-display-Workaround-for-underflow.patch
patch 0747-drm-amd-display-log-watermarks.patch
patch 0748-drm-amd-display-fix-HDMI-12bits-last-two-bits-are-ze.patch
patch 0749-drm-amd-display-Fix-regression-in-dce110_apply_ctx_f.patch
patch 0750-drm-amd-display-Pass-correct-number-for-gamma-entrie.patch
patch 0751-drm-amd-display-Fix-warnings-about-uninitialized-use.patch
patch 0752-drm-amd-display-fix-up-for-DRM_ROTATE-changes.patch
patch 0753-drm-amd-display-dc-Make-dce110_validate_bandwidth-st.patch
patch 0754-drm-amd-display-dc-make-dce120_link_encoder_create-s.patch
patch 0755-drm-amd-display-dm-add-KV-KB-ML-v2.patch
patch 0756-drm-amdgpu-add-DCE8-APUs-to-dc_supported-check.patch
patch 0757-drm-amd-display-dc-add-DIGG-for-KV.patch
patch 0758-drm-amd-display-dc-add-DCE_VERSION-for-DCE8-APUs.patch
patch 0759-drm-amd-disply-dc-add-resource-support-for-DCE8-APUs.patch
patch 0760-drm-amdgpu-cik-add-IP-modules-for-DC-for-APUs.patch
patch 0761-drm-amd-display-Add-a-TODO-list.patch
patch 0762-drm-amd-display-Drop-our-own-page_flip_helper.patch
patch 0763-drm-amdgpu-disable-DC-on-KB-ML-for-now.patch
patch 0764-drm-amdgpu-improve-GTT-BO-alloc-speed-in-OGL.patch
patch 0765-drm-amdgpu-add-query-for-aperture-va-range.patch
patch 0766-drm-amdgpu-expose-the-pinning-capability-to-user-spa.patch
patch 0767-drm-amdgpu-add-query-amdgpu-capability-function.patch
patch 0768-drm-amdgpu-reserve-buffer-in-visible-vram-gtt-for-di.patch
patch 0769-drm-amdgpu-implement-direct-gma-domains.patch
patch 0770-drm-amdgpu-implement-direct-gma-ioctl-interface.patch
patch 0771-drm-amdgpu-add-query-for-amdgpu-capability.patch
patch 0772-drm-amdgpu-fix-gart-flag-calc-in-dgma.patch
patch 0773-drm-amdgpu-update-gpuvm-for-direct-gma-domains.patch
patch 0774-drm-amdgpu-change-direct-gma-gart-offset-to-64bit.patch
patch 0775-drm-amdgpu-unbind-gart-when-release-direct-gma-impor.patch
patch 0776-drm-amdgpu-update-direct-gma-gart-flags.patch
patch 0777-drm-amdgpu-clear-wc-flag-in-direct-gma-domain.patch
patch 0778-drm-amd-amdgpu-add-new-vram-flag-for-dgma.patch
patch 0779-drm-amd-amdgpu-adapt-dgma-to-the-new-vam_mgr.patch
patch 0780-drm-amdgpu-return-bo-itself-if-userptr-is-cpu-addr-o.patch
patch 0781-drm-amdgpu-add-AMDGPU_GEM_CREATE_TOP_DOWN-flag.patch
patch 0782-drm-amdgpu-add-new-semaphore-object-in-kernel-side.patch
patch 0783-Revert-drm-amdgpu-revert-fix-exclusive-mode-game-tex.patch
patch 0784-drm-amdgpu-implement-export-import-sem.patch
patch 0785-drm-amdgpu-hybrid-add-SSG-support.patch
patch 0786-drm-amd-amdkcl-fix-arch-spec-code-when-compile-on-AR.patch
patch 0787-drm-amdgpu-move-get-core-kref-at-begin.patch
patch 0788-drm-amdgpu-fix-error-path-for-core-kref-in-sem_expor.patch
patch 0789-drm-amdgpu-get-core-kref-in-sem_import-V2.patch
patch 0790-drm-amdgpu-fix-fget-put-un-balance-in-sem_import.patch
patch 0791-drm-amdgpu-Fix-multiple-export-failure-found-in-vulk.patch
patch 0792-Revert-drm-amd-display-Release-cached-atomic-state-i.patch
patch 0793-Revert-drm-amd-display-Switch-to-DRM-helpers-in-s3.patch
patch 0794-drm-amdgpu-hybrid-fix-no_evict-flag.patch
patch 0795-drm-amdgpu-disable-DC-when-virtual-display-is-enable.patch
patch 0796-drm-amdgpu-fix-sem_get_fence-race-issue.patch
patch 0797-drm-amdgpu-SEM-some-modification-on-SEM-logic.patch
patch 0798-drm-amdgpu-fix-direct-gma-failure.patch
patch 0799-drm-amdgpu-add-direct-gma-support-in-gem-info.patch
patch 0800-drm-amdgpu-refactor-direct-gma-bus-addr-calc.patch
patch 0801-drm-amd-amdkcl-4.10-fix-for-dma_fence-structures-and.patch
patch 0802-drm-amdgpu-HYBRID-add-AMDGPU_CAPABILITY_SSG_FLAG.patch
patch 0803-drm-amdgpu-SSG-fix-wrong-resource-calculation.patch
patch 0804-drm-amdgpu-hybrid-add-dependency-to-sync-fence-for-s.patch
patch 0805-drm-amd-powerplay-initialize-rv-vq-table.patch
patch 0806-drm-amdgpu-coordinate-with-the-new-amdgpu_queue_mgr_.patch
patch 0807-Revert-amdgpu-Set-cik-si_support-to-1-by-default-if-.patch
patch 0808-drm-amdgpu-use-amdgpu-to-support-CIK-ASICs-this-patc.patch
patch 0809-drm-amd-amdgpu-restore-DGMA-request-size-check-and-N.patch
patch 0810-drm-amd-amdgpu-add-DGMA-support-in-amdgpu_bo_gpu_acc.patch
patch 0811-drm-amd-amdkcl-add-dep_sync-for-amdgpu_cs.c-cooperat.patch
patch 0812-drm-amd-amdgpu-fix-DGMA-break-with-setting-lpfn-alwa.patch
patch 0813-drm-amd-amdgpu-DGMA-no-need-to-reserve-Gart-table-no.patch
patch 0814-drm-amd-amdgpu-DGMA-remove-get_node-for-DGMA-import-.patch
patch 0815-drm-amdkcl-4.13-Temporarily-skip-sync-objects-part-f.patch
patch 0816-Revert-drm-amd-display-Clen-unused-interface.patch
patch 0817-drm-amd-display-kcl_dm-Fix-dc_flip_surface_addrs.patch
patch 0818-drm-amd-display-kcl_dm-Rename-more-dc_surface-stuff-.patch
patch 0819-drm-amdgpu-Passing-verification-of-NULL-filep-to-sup.patch
patch 0820-drm-amdgpu-Enable-BIF-5.0-atomic-promotion-to-PCIe-3.patch
patch 0821-drm-amdgpu-disallow-foreign-BOs-for-UVD-VCE.patch
patch 0822-drm-amdgpu-disallow-foreign-BOs-in-the-display-path.patch
patch 0823-drm-amdgpu-separate-BO-from-GEM-object.patch
patch 0824-drm-amdgpu-enable-foreign-DMA-buf-objects.patch
patch 0825-drm-amdgpu-Make-amdgpu_ttm_tt_get_user_pages-work-in.patch
patch 0826-drm-amdgpu-implement-vm_operations_struct.access.patch
patch 0827-Adaption-drm-amdgpu-Make-amdgpu_ttm_tt_get_user_page.patch
patch 0828-Adaption-drm-amdgpu-separate-BO-from-GEM-object.patch
patch 0829-SDMA-macro-define-missing.patch
patch 0830-drm-amdgpu-Reconcile-code-to-upstream.patch
patch 0831-drm-amdgpu-Fix-oops-with-multi-threaded-userptr-regi.patch
patch 0832-drm-amdgpu-Fix-extra-BO-reference-causing-memory-lea.patch
patch 0833-PCI-Add-pci_enable_atomic_ops_to_root.patch
patch 0834-drm-amdkfd-Reject-devices-without-host-atomic-suppor.patch
patch 0835-drm-amdgpu-Fix-FD-leak-due-to-rebase-conflict.patch
patch 0836-Hybrid-kfd-adaption-Adapt-to-new-amdgpu_bo-structure.patch
patch 0837-drm-amdgpu-Fixed-memory-leak-in-amdgpu_bo_create_res.patch
patch 0838-drm-amdgpu-Use-GFP_NOIO-with-reclaim-safe-locks.patch
patch 0839-drm-amdgpu-Simplify-process-termination-in-amdgpu_tt.patch
patch 0840-drm-amdgpu-Implement-new-invalidate-tlb-in-amdgpu.patch
patch 0841-drm-amdgpu-Make-VRAM-ptrace-access-work-for-non-cont.patch
patch 0842-drm-amdgpu-Fix-non-contig-ptrace-VRAM-access-crossin.patch
patch 0843-drm-amdgpu-Add-invalidate-tlb-for-all-hub-bit-field-.patch
patch 0844-drm-amdgpu-Rework-ptrace-access-function.patch
patch 0845-drm-amdgpu-Scale-GTT-size-with-system-memory-size.patch
patch 0846-Revert-drm-amd-display-move-regamma-from-opp-to-dpp-.patch
patch 0847-Hybrid-Version-17.50.0.13.patch
patch 0848-drm-amd-display-Disable-stutter-for-Raven.patch
patch 0849-drm-amd-amdgpu-revert-back-the-CG-disabling-for-esto.patch
patch 0850-Linux-UART-driver-to-support-DEV-ID-AMDI0021.patch
patch 0851-Driver-reports-error-for-in-completed-I2C-transactio.patch
patch 0852-drm-amd-amdgpu-Disable-CG-for-eStoney.patch
patch 0853-AMD-eMMC-5.0-support.patch
patch 0854-drm-amd-amdgpu-excluded-HIQ-on-Carrizo.patch
patch 0855-drm-amdgpu-fixed-raven-psp-cmd-prepare-and-submit.patch
patch 0856-drm-amdgpu-added-api-for-stopping-psp-ring-v2.patch
patch 0857-drm-amdgpu-stop-psp-ring-on-suspend.patch
patch 0858-drm-amdgpu-enable-raven-to-load-firmwares-by-psp-at-.patch
patch 0859-drm-amdgpu-rework-moved-handling-in-the-VM-v2.patch
patch 0860-drm-amdgpu-add-bo_va-cleared-flag-again-v2.patch
patch 0861-drm-amdgpu-fix-comment-on-amdgpu_bo_va.patch
patch 0862-drm-amdgpu-track-evicted-page-tables-v2.patch
patch 0863-drm-amdgpu-add-alloc-free-for-multi-level-PDs-V2.patch
patch 0864-drm-amdgpu-rework-page-directory-filling-v2.patch
patch 0865-drm-amdgpu-cleanup-the-VM-code-a-bit-more.patch
patch 0866-drm-amdgpu-fix-new-PD-update-code-for-Vega10-v2.patch
patch 0867-drm-amdgpu-restrict-userptr-even-more.patch
patch 0868-drm-amdgpu-add-support-for-per-VM-BOs-v2.patch
patch 0869-drm-amdgpu-add-IOCTL-interface-for-per-VM-BOs-v3.patch
patch 0870-drm-amdgpu-handle-all-fragment-sizes-v4.patch
patch 0871-drm-amdgpu-declare-the-new-firmware-files-needed-by-.patch
patch 0872-drm-amdgpu-fix-moved-list-handling-in-the-VM.patch
patch 0873-Hybrid-Version-17.50.1.13.patch
patch 0874-Revert-drm-amd-powerplay-initialize-rv-vq-table.patch
patch 0875-drm-amd-powerplay-refine-pp-code-for-raven.patch
patch 0876-drm-amd-powerplay-add-dummy-pp-table-for-raven.-v2.patch
patch 0877-drm-amd-powerplay-notify-smu-once-display-changed-on.patch
patch 0878-drm-amd-amdgpu-Add-write-method-to-VRAM-debugfs-entr.patch
patch 0879-drm-amd-Remove-null-check-before-kfree.patch
patch 0880-drm-amd-powerplay-hwmgr-Remove-null-check-before-kfr.patch
patch 0881-drm-amdgpu-Fix-IB-allocation-sizes-for-page-table-up.patch
patch 0882-drm-amdgpu-move-hw-generation-check-into-amdgpu_door.patch
patch 0883-drm-amdgpu-bump-version-for-support-of-local-BOs.patch
patch 0884-drm-amdgpu-Revert-Fix-IB-allocation-sizes-for-page-t.patch
patch 0885-drm-amd-amdgpu-Tidy-up-register-list-formatting.patch
patch 0886-drm-amd-amdgpu-Tidy-up-gfx_v9_0_ngg_en.patch
patch 0887-drm-amd-amdgpu-Tidy-up-gfx_v9_0_enable_save_restore_.patch
patch 0888-drm-amd-amdgpu-Tidy-up-gfx_v9_0_enable_sck_slow_down.patch
patch 0889-drm-amd-amdgpu-Tidy-up-gfx_v9_0_enable_sck_slow_down.patch
patch 0890-drm-amd-amdgpu-Tidy-up-gfx_v9_0_enable_cp_power_gati.patch
patch 0891-drm-amd-amdgpu-Tidy-up-gfx_v9_0_enable_gfx_cg_power_.patch
patch 0892-drm-amd-amdgpu-Tidy-up-gfx_v9_0_enable_gfx_pipeline_.patch
patch 0893-drm-amd-amdgpu-Tidy-up-gfx_v9_0_enable_gfx_static_mg.patch
patch 0894-drm-amd-amdgpu-Tidy-up-gfx_v9_0_enable_gfx_dynamic_m.patch
patch 0895-drm-amd-amdgpu-Tidy-up-gfx_v9_0_rlc_stop.patch
patch 0896-drm-amd-amdgpu-Fix-indentation-in-gfx_v9_0_mqd_init.patch
patch 0897-drm-amd-amdgpu-Simplify-gfx_v9_0_wait_for_idle.patch
patch 0898-drm-amd-amdgpu-Support-full-range-of-GFX-ring-names.patch
patch 0899-drm-amd-amdgpu-Simplify-gmc_v9_0_vm_fault_interrupt_.patch
patch 0900-drm-amd-amdgpu-Tidy-up-gmc_v9_0_gart_enable.patch
patch 0901-drm-amd-amdgpu-Tidy-up-gmc_v9_0_hw_init.patch
patch 0902-drm-amd-amdgpu-Cleanup-gmc_v9_0_suspend.patch
patch 0903-drm-amd-amdgpu-Fix-TRACE-include-path.patch
patch 0904-drm-amdgpu-Use-correct-path-to-trace-include.patch
patch 0905-drm-amd-powerplay-fix-sclk-setting-for-profile-mode-.patch
patch 0906-drm-amd-powerplay-delete-eventmgr-layer-in-poweprlay.patch
patch 0907-drm-amd-powerplay-delete-eventmgr-related-files.patch
patch 0908-drm-amd-powerplay-add-UMD-P-state-in-powerplay.patch
patch 0909-drm-amd-powerplay-set-uvd-vce-nb-mclk-level-as-UMD-P.patch
patch 0910-drm-amdgpu-fix-wait_any_fence.patch
patch 0911-drm-amdgpu-fix-userptr-put_page-handling.patch
patch 0912-drm-amd-powerplay-Fix-psm_set_user_performance_state.patch
patch 0913-drm-amdgpu-Account-for-shadow-PTs-in-mapping-update-.patch
patch 0914-drm-amdgpu-stop-using-BO-status-for-user-pages.patch
patch 0915-drm-amdgpu-move-userptr-BOs-to-CPU-domain-during-CS-.patch
patch 0916-drm-amdgpu-use-a-rw_semaphore-for-MMU-notifiers.patch
patch 0917-drm-amdgpu-stop-reserving-the-BO-in-the-MMU-callback.patch
patch 0918-drm-amdgpu-move-amdgpu_cs_sysvm_access_required-into.patch
patch 0919-drm-amdgpu-rework-amdgpu_cs_find_mapping.patch
patch 0920-drm-amdgpu-keep-the-MMU-lock-until-the-update-ends-v.patch
patch 0921-drm-amdgpu-move-amdgpu_ttm_tt_-declarations-into-amd.patch
patch 0922-drm-amdgpu-move-MMU-notifier-related-defines-to-amdg.patch
patch 0923-drm-amdgpu-fix-VM-sync-with-always-valid-BOs-v2.patch
patch 0924-drm-amd-powerplay-Simplify-vega10_patch_voltage_depe.patch
patch 0925-drm-amd-powerplay-Simplify-vega10_acg_disable.patch
patch 0926-drm-amd-powerplay-Introduction-of-bitmask-macros-for.patch
patch 0927-drm-amd-powerplay-Port-vega10_didt_set_mask-to-new-m.patch
patch 0928-drm-amd-powerplay-Add-PP_CAP-macro.patch
patch 0929-drm-amd-powerplay-Port-vega10_hwmgr.c-over-to-PP_CAP.patch
patch 0930-drm-amd-powerplay-Port-vega10_powertune.c-over-to-PP.patch
patch 0931-drm-amd-powerplay-Port-vega10_thermal.c-over-to-PP_C.patch
patch 0932-drm-amd-powerplay-Tidy-up-vega10_fan_ctrl_get_fan_sp.patch
patch 0933-drm-amd-powerplay-Tidy-up-vega10_fan_ctrl_set_static.patch
patch 0934-drm-amd-powerplay-Tidy-up-vega10_fan_ctrl_set_defaul.patch
patch 0935-drm-amd-powerplay-Tidy-up-vega10_fan_ctrl_set_fan_sp.patch
patch 0936-drm-amd-powerplay-Fix-indentation-in-vega10_fan_ctrl.patch
patch 0937-drm-amd-powerplay-Tidy-up-vega10_fan_ctrl_set_fan_sp.patch
patch 0938-drm-amd-powerplay-Tidy-up-vega10_thermal_set_tempera.patch
patch 0939-drm-amd-powerplay-Tidy-up-vega10_thermal_initialize.patch
patch 0940-drm-amdgpu-gfx9-properly-set-the-hdp-flush-reg-for-R.patch
patch 0941-drm-amd-powerplay-remove-unnecessary-call-to-memset.patch
patch 0942-drm-amdgpu-fix-amdgpu_vm_handle_moved-as-well-v2.patch
patch 0943-drm-amd-powerplay-Tidy-up-smu7_fan_ctrl_get_fan_spee.patch
patch 0944-drm-amd-powerplay-Tidy-up-smu7_fan_ctrl_get_fan_spee.patch
patch 0945-drm-amd-powerplay-Make-use-of-PP_CAP-in-smu7_thermal.patch
patch 0946-drm-amd-powerplay-Remove-unneeded-return-from-pp_smu.patch
patch 0947-drm-amd-powerplay-Make-use-of-PP_CAP-in-smu7_powertu.patch
patch 0948-drm-amd-powerplay-Tidy-up-smu7_enable_didt.patch
patch 0949-drm-amd-powerplay-lock-grbm_gfx-index-when-changing-.patch
patch 0950-amdgpu-Only-destroy-fbdev-framebuffer-if-it-was-init.patch
patch 0951-drm-amdgpu-fix-cgs-alignment-handling.patch
patch 0952-drm-amd-remove-min-max-addr-handling-from-cgs.patch
patch 0953-drm-amdgpu-fix-and-cleanup-amdgpu_bo_create-v2.patch
patch 0954-drm-amd-amdgpu-Change-vram-debugfs-to-NO_KIQ-for-VM-.patch
patch 0955-drivers-gpu-Use-ARRAY_SIZE-for-the-size-calculation-.patch
patch 0956-drm-amd-amdgpu-Support-VM-environments-in-amdgpu_ttm.patch
patch 0957-drm-amdgpu-move-taking-mmap_sem-into-get_user_pages-.patch
patch 0958-drm-amdgpu-KFD-Fix-rw_semaphore-usage.patch
patch 0959-drm-amdgpu-remove-the-clearance-of-vce-4.0-interrupt.patch
patch 0960-drm-amd-display-fix-gamma-distortion-on-Vega.patch
patch 0961-drm-amd-display-Use-atomic-types-for-ref_count.patch
patch 0962-drm-amd-display-add-display-write-back-DWB.patch
patch 0963-drm-amd-display-change-bw_dceip-and-bw_vbios-into-po.patch
patch 0964-drm-amd-display-Add-comment-explaining-context-free.patch
patch 0965-drm-amd-display-change-dcn_ip-and-dcn_soc-into-point.patch
patch 0966-drm-amd-display-fix-eDP-bootup-S4-backlight-on.patch
patch 0967-drm-amd-display-Use-function-pointer-for-update_plan.patch
patch 0968-drm-amd-display-Flattening-core_dc-to-dc.patch
patch 0969-drm-amd-display-Use-MAX_PIPES-for-DTO-reg-arrays.patch
patch 0970-drm-amd-display-blank-otg-before-power-gate-front-en.patch
patch 0971-drm-amd-display-eDP-power-sequence-T9-fail.patch
patch 0972-drm-amd-display-Leave-DCN-config-guard-around-fpu-he.patch
patch 0973-drm-amd-display-Fix-FBC-compilation.patch
patch 0974-drm-amd-display-remove-fake-address-reporting-when-b.patch
patch 0975-drm-amd-display-move-vm-registers-to-hwsequencer.patch
patch 0976-drm-amd-display-Implement-HDMI-retimer-settings-for-.patch
patch 0977-drm-amd-display-refactor-pplib-smu-communication.patch
patch 0978-drm-amd-display-Per-stream-validate_context-build-v2.patch
patch 0979-drm-amd-display-increase-polling-interval-for-fbc-st.patch
patch 0980-drm-amd-display-fix-not-enter-exit-PSR-with-latest-d.patch
patch 0981-drm-amd-display-Log-OTG-registers-with-dcn10-hw-stat.patch
patch 0982-drm-amd-display-Fix-FBC-disable-for-stereo.patch
patch 0983-drm-amd-display-separate-scl-functions-out-from-dcn1.patch
patch 0984-drm-amd-display-Cache-edp-config-in-dc-link.patch
patch 0985-drm-amd-display-re-enable-audio-after-LT-test.patch
patch 0986-drm-amd-display-separate-cm-functions-out-from-dcn10.patch
patch 0987-drm-amd-display-Fix-two-MST-not-light-up-regressions.patch
patch 0988-drm-amd-display-Remove-unnecessary-assignemnt.patch
patch 0989-drm-amd-display-fix-hubp-mpcc-and-opp-tracking.patch
patch 0990-drm-amd-display-Fixed-mpc-add-enable-always-scaler-f.patch
patch 0991-drm-amd-display-cleanup-naming-of-DCN-DPP-functions.patch
patch 0992-drm-amd-display-memory-leak-dwb.patch
patch 0993-drm-amd-display-dc-Remove-unneeded-includes-in-DCN.patch
patch 0994-drm-amd-display-Enable-double-buffer-when-unblank-cr.patch
patch 0995-drm-amd-display-version-3.1.01.patch
patch 0996-drm-amd-display-write-dpcd-0x600-to-2-for-DP-eDP-whe.patch
patch 0997-drm-amd-display-retire-dm_pp_apply_clock_for_voltage.patch
patch 0998-drm-amd-display-Change-log-level-for-DCN-powergattin.patch
patch 0999-drm-amd-display-retry-LT-on-failing-LT-in-automated-.patch
patch 1000-drm-amd-display-Remove-unneeded-code.patch
patch 1001-drm-amd-display-Remove-old-misleading-comment.patch
patch 1002-drm-amd-display-Stop-including-atomfimrwareid.h-dire.patch
patch 1003-drm-amd-display-Fix-return-value-from-rx-irq-handler.patch
patch 1004-drm-amd-display-Safe-stream-encoder-id-in-stream_sta.patch
patch 1005-drm-amd-display-Block-6Ghz-timing-if-SBIOS-set-HDMI_.patch
patch 1006-drm-amd-display-Per-plane-validation-context-build.patch
patch 1007-drm-amd-display-Refactor-atomic-check.patch
patch 1008-drm-amd-display-Clean-up-flattening-core_dc-to-dc.patch
patch 1009-drm-amd-display-do-not-reset-lane-count-in-EQ-fallba.patch
patch 1010-drm-amd-display-work-around-for-8k-sleep-crash.patch
patch 1011-drm-amd-display-Use-DRM-provided-page-flip-flag.patch
patch 1012-drm-amd-display-Fix-MST-downstream-display-not-light.patch
patch 1013-drm-amd-display-Update-DSCL.patch
patch 1014-drm-amd-display-move-cm-registers-from-ipp-to-dpp_cm.patch
patch 1015-drm-amd-display-DF-C-state-entry-blocked-when-DPMS.patch
patch 1016-drm-amd-display-Remove-mpc-from-bios-left-over-keep-.patch
patch 1017-drm-amd-display-clean-up-header-file-includes.patch
patch 1018-drm-amd-display-Rename-dc-validate_context-and-curre.patch
patch 1019-drm-amd-display-Rename-dc-resource_validate_ctx-meth.patch
patch 1020-drm-amd-display-Add-a-clock-source-to-a-sharing-pipe.patch
patch 1021-drm-amd-display-add-aux-arbitration-logic.patch
patch 1022-drm-amd-display-Move-dis_clk-into-dc_state.patch
patch 1023-drm-amd-display-Fix-time-out-on-boot.patch
patch 1024-drm-amd-display-only-polling-VSync-Phase-within-VSyn.patch
patch 1025-drm-amd-display-clean-up-functions-in-dcn10_dpp_cm.patch
patch 1026-drm-amd-display-not-override-the-FMT-setting-set-by-.patch
patch 1027-drm-amd-display-add-backlight-control-in-blankstream.patch
patch 1028-drm-amd-display-program-fbc-for-scatter-gather.patch
patch 1029-drm-amd-display-Program-reg-for-vertical-interrupt.patch
patch 1030-drm-amd-display-Disable-OTG-double-buffer.patch
patch 1031-drm-amd-display-Set-add_stream_ctx-for-CZ-Hawaii-and.patch
patch 1032-drm-amd-display-Restore-missing-DCE8-xfm-regs.patch
patch 1033-drm-amd-display-Don-t-spam-log-with-failed-validatio.patch
patch 1034-drm-amd-display-delete-dead-code.patch
patch 1035-drm-amd-display-clean-up-cm-register-programming-fun.patch
patch 1036-drm-amdgpu-Remove-unused-flip_flags-from-amdgpu_crtc.patch
patch 1037-Revert-display-patches-temporarily-for-build-passed.patch
patch 1038-drm-amdgpu-psp-declare-raven-psp-firmware.patch
patch 1039-drm-amd-powerplay-added-new-raven-ppsmc-messages.patch
patch 1040-drm-amd-powerplay-get-raven-max-min-gfx-clocks.patch
patch 1041-drm-amd-powerplay-get-raven-current-sclk-and-mclk.patch
patch 1042-drm-amd-powerplay-get-raven-sclk-and-mclk-levels.patch
patch 1043-drm-amd-powerplay-fixed-wrong-return-vaule-on-error.patch
patch 1044-drm-amd-powerplay-fix-typo-on-avfs-disable.patch
patch 1045-drm-amd-powerplay-refine-code-for-thermal-control-in.patch
patch 1046-drm-amd-powerplay-refine-powerplay-code-for-CZ-ST.patch
patch 1047-drm-amd-powerplay-refine-powerplay-code-for-RV.patch
patch 1048-drm-amd-powerplay-delete-dead-code-in-powerplay.patch
patch 1049-drm-amdgpu-rename-amdgpu_dpm_funcs-to-amd_pm_funcs.patch
patch 1050-drm-amd-powerplay-use-struct-amd_pm_funcs-in-powerpl.patch
patch 1051-drm-amdgpu-unify-the-interface-of-amd_pm_funcs.patch
patch 1052-drm-amdgpu-add-support-for-request-SI-CI-firmware-in.patch
patch 1053-drm-amd-powerplay-fix-spelling-typo-in-function-name.patch
patch 1054-drm-amd-powerplay-fix-pcie-max-lane-define-error.patch
patch 1055-drm-amd-powerplay-add-CI-asics-support-to-smumgr.patch
patch 1056-drm-amd-powerplay-fix-set-target-TDP-error-on-tonga-.patch
patch 1057-drm-amd-powerplay-refine-dmesg-info-under-powerplay.patch
patch 1058-drm-amd-powerplay-Add-support-functions-for-CI-to-pp.patch
patch 1059-drm-amd-powerplay-Add-support-for-CI-asics-to-hwmgr.patch
patch 1060-drm-amdgpu-add-powerplay-support-for-CI-asics.patch
patch 1061-drm-amd-powerplay-Simplify-smu7_voting_clients.patch
patch 1062-drm-amd-powerplay-fix-mclk-can-t-switch-on-Tonga.patch
patch 1063-Hybrid-Version-17.50.2.13.patch
patch 1064-drm-amd-powerplay-Partially-revert-changes-and-fix-s.patch
patch 1065-drm-amd-powerplay-fix-drm-amd-powerplay-Partially-re.patch
patch 1066-drm-amdgpu-correct-reference-clock-value-on-vega10.patch
patch 1067-drm-amd-pp-Fix-overflow-when-setup-decf-pix-disp-dpm.patch
patch 1068-Revert-drm-amdgpu-Program-ring-for-vce-instance-1-at.patch
patch 1069-drm-amd-pp-thermal-control-not-enabled-on-vega10.patch
patch 1070-Revert-Revert-drm-amdgpu-Program-ring-for-vce-instan.patch
patch 1071-drm-amdgpu-correct-reference-clock-value-on-vega10.patch
patch 1072-drm-amd-powerplay-add-one-smc-message-for-Vega10.patch
patch 1073-drm-amd-powerplay-fix-performance-drop-on-Vega10.patch
patch 1074-drm-amd-powerplay-fix-compile-errors.patch
patch 1075-drm-amd-display-Break-out-amdgpu_dm_connector.patch
patch 1076-drm-amd-display-Create-fake-sink-if-needed-when-comm.patch
patch 1077-drm-amd-display-Don-t-report-fake-sink-as-connected.patch
patch 1078-drm-amd-display-Fix-S3-topology-change.patch
patch 1079-drm-amdgpu-fix-kernel-hang-when-starting-VNC-server.patch
patch 1080-drm-amdgpu-use-multipipe-compute-policy-on-non-PL11-.patch
patch 1081-drm-amdgpu-add-option-for-force-enable-multipipe-pol.patch
patch 1082-drm-amdgpu-use-2MB-fragment-size-for-GFX6-7-and-8.patch
patch 1083-drm-amdgpu-Add-copy_pte_num_dw-member-in-amdgpu_vm_p.patch
patch 1084-drm-amdgpu-handle-foreign-BOs-in-the-VM-mapping.patch
patch 1085-drm-amdgpu-Always-initialize-freesync-property-to-0.patch
patch 1086-drm-amdgpu-Fix-a-bug-in-amdgpu_fill_buffer.patch
patch 1087-drm-amdgpu-Do-not-ref-count-on-validation-set.patch
patch 1088-drm-amd-display-add-pipe-locking-before-front-end-pr.patch
patch 1089-drm-amd-display-Remove-mpc-from-bios-left-over-keep-.patch
patch 1090-drm-amdgpu-Correct-bytes-limit-for-SDMA-3.0-copy-and.patch
patch 1091-drm-amd-display-amdgpu_dm-glmark2-hard-hang-fix.patch
patch 1092-drm-amdkcl-4.12-Reserve-flip_flags-for-display-usage.patch
patch 1093-drm-amd-display-Skiped-MST-link-training-to-fix-zero.patch
patch 1094-drm-amd-display-Fixed-MST-SST-light-up.patch
patch 1095-drm-amd-display-Fixed-MST-wrong-link-settings-for-ed.patch
patch 1096-drm-amd-display-Fixed-MST-display-doesn-t-light-up.patch
patch 1097-Revert-drm-amdgpu-enable-foreign-DMA-buf-objects.patch
patch 1098-amd-amdgpu-keep-amdgpu_gem_prime_foreign_bo-for-KFD.patch
patch 1099-ASoC-AMD-add-ACP-3.x-IP-register-header.patch
patch 1100-ASoC-AMD-add-ACP3.0-PCI-driver.patch
patch 1101-ASoC-AMD-create-ACP3x-PCM-platform-device.patch
patch 1102-ASoC-AMD-add-ACP3x-PCM-platform-driver.patch
patch 1103-ASoC-AMD-handle-ACP3x-i2s-watermark-interrupt.patch
patch 1104-ASoC-AMD-add-ACP3x-PCM-driver-DMA-ops.patch
patch 1105-ASoC-AMD-add-ACP3x-i2s-ops.patch
patch 1106-ASoC-AMD-add-ACP3x-TDM-mode-support.patch
patch 1107-ASoC-AMD-Add-ACP3x-runtime-pm-ops.patch
patch 1108-ASoC-AMD-Add-ACP3x-system-resume-pm-op.patch
patch 1109-ASoC-AMD-enable-ACP3x-drivers-build.patch
patch 1110-ASoC-AMD-create-add-dummy-codec-and-machine-devices-.patch
patch 1111-soc-amd-raven-Disabling-TDM-mode-flag.patch
patch 1112-ASoC-AMD-Enable-pci-bus-mastering-for-ACP3.x-device.patch
patch 1114-drm-amd-pp-Read-the-maximum-clock-frequency-from-ppl.patch
patch 1115-drm-amd-display-Fix-pflip-irq-for-fourth-display.patch
patch 1116-pinctrl-eMMC-and-PinCtrl-is-sharing-the-interrupt-no.patch
patch 1117-Adding-raven-acp3.x-layer-in-Makefile.patch
patch 1118-Added-raven-audio-Kconfig.patch
patch 1119-Revert-pinctrl-amd-Set-the-level-based-on-ACPI-table.patch
patch 1120-Make-to-stock-kfd-driver.patch
patch 1121-drm-amdkfd-revert-kfd-part-to-a-previous-state.patch
patch 1122-port-in-all-files.patch
patch 1123-drm-amdkfd-kfd_device_queue_manager.c-Remove-unused-.patch
patch 1124-drm-amdkfd-kfd_chardev.c-Reconcile-code-with-upstrea.patch
patch 1125-drm-amdkfd-Remove-num_bank_count-reference.patch
patch 1126-Revert-drm-amdkfd-destroy-mutex-if-process-creation-.patch
patch 1127-drm-amdkfd-Consider-debug_largebar-when-reporting-to.patch
patch 1128-drm-amdkfd-Turn-pr_err-to-pr_debug-call-v2.patch
patch 1129-drm-amdkfd-Don-t-report-invalid-event-data-on-VM-fau.patch
patch 1130-drm-amdkfd-bump-version-for-release-2.0.0.patch
patch 1131-drm-amdkfd-Initial-Hawaii-support.patch
patch 1132-drm-amdkfd-Automatically-detect-and-enable-PeerDirec.patch
patch 1133-drm-amdkfd-Hawaii-doesn-t-support-atomics.patch
patch 1134-drm-amdkfd-Rectify-the-jiffies-calculation-error-wit.patch
patch 1135-drm-amdkfd-Avoid-submitting-an-unnecessary-packet-to.patch
patch 1136-drm-amdkfd-Unmapping-static-queues-when-a-process-te.patch
patch 1137-drm-amdkfd-Reset-waves-when-dequeueing-HQD.patch
patch 1138-drm-amdkfd-Call-destroy_mqd-when-queue-is-disabled.patch
patch 1139-drm-amdkfd-Fix-leaking-HQD-in-SW-scheduler.patch
patch 1140-drm-amdkfd-Rename-function-pointers-to-avoid-confusi.patch
patch 1141-drm-amdkfd-Clean-up-the-data-structure-in-kfd_proces.patch
patch 1142-drm-amdkfd-Reuse-function-to-find-a-process-through-.patch
patch 1143-drm-amdkfd-Remove-duplicate-pqm_uninit.patch
patch 1144-drm-amdkfd-Fix-suspend-resume-issue-on-Carrizo.patch
patch 1145-drm-amdkfd-Add-debugfs-entry-for-hexdump-of-MQDs.patch
patch 1146-drm-amdkfd-Add-kfd-hqds-entry-to-debugfs.patch
patch 1147-drm-amdkfd-Add-kfd-rls-entry-to-debugfs.patch
patch 1148-drm-amdkfd-Add-SDMA-trap-src-id-to-the-KFD-isr-wante.patch
patch 1149-drm-amdkfd-Update-CWSR-trap-handler-for-stability.patch
patch 1150-drm-amdkfd-Move-PM4-Release_Mem-headers.patch
patch 1151-drm-amdkfd-Use-destroy_mqd-to-evict-queues-w-o-HWS.patch
patch 1152-drm-amdkfd-Fix-a-memory-leak-in-memory-unmapping.patch
patch 1153-drm-amdkfd-Improve-the-debug-message.patch
patch 1154-drm-amdkfd-Ignore-CPU-Node-if-no-cores-are-online.patch
patch 1155-drm-amd-Update-kgd_kfd-interface-for-resuming-SDMA-q.patch
patch 1156-drm-amdkfd-Add-support-for-resuming-SDMA-queues-w-o-.patch
patch 1157-drm-amdkfd-Fix-oversubscription-accounting.patch
patch 1158-drm-amdkfd-Change-the-default-value-of-hws_max_conc_.patch
patch 1159-drm-amdkfd-Flush-TC-for-GFX-v7.patch
patch 1160-drm-amdkfd-Factor-out-the-duplicated-code.patch
patch 1161-drm-amdkfd-Make-kfd_process-reference-counted.patch
patch 1162-drm-amdkfd-Get-reference-to-lead_thread-task-struct.patch
patch 1163-drm-amdkfd-Don-t-dereference-kfd_process.mm.patch
patch 1164-drm-amdkfd-Use-ref-count-to-prevent-kfd_process-dest.patch
patch 1165-drm-amdkfd-Simplify-the-KFD-signal_page-structure.patch
patch 1166-drm-amdkfd-Simplify-kfd_map_memory_to_gpu-function.patch
patch 1167-drm-amdkfd-Report-legacy-doorbell-type-for-Tonga.patch
patch 1168-drm-amdkfd-Add-Polaris10-11-support.patch
patch 1169-drm-amdkfd-Fix-a-memory-leak-when-idr_alloc-fails.patch
patch 1170-drm-amdkfd-Reorganize-functions-involving-process-ex.patch
patch 1171-drm-amdkfd-Adjust-kernel-managed-memory-allocation-m.patch
patch 1172-drm-amdkfd-use-standard-kernel-kfifo-for-IH.patch
patch 1173-drm-amdkfd-increase-IH-num-entries-to-8192.patch
patch 1174-drm-amdkfd-wait-only-for-IH-work-on-IH-exit.patch
patch 1175-drm-amdkfd-use-a-high-priority-workqueue-for-IH-work.patch
patch 1176-drm-amdkfd-Implement-image-tiling-mode-support.patch
patch 1177-drm-amdkfd-Fix-context-save-handler-on-ATC-platforms.patch
patch 1178-drm-amdkfd-fix-IH-always-printing-error-message-on-e.patch
patch 1179-drm-amdkfd-Fix-kernel-panic-in-PPR-handler.patch
patch 1180-drm-amdkfd-Don-t-synchronize-DIQ-after-a-wave-contro.patch
patch 1181-drm-amdkfd-make-Makefile-paths-relative.patch
patch 1182-drm-amd-Simplify-SDMA-HQD-loading-in-kernel-threads.patch
patch 1183-drm-amdkfd-Fix-IB-freeing-without-DIQ-synchronizatio.patch
patch 1184-drm-amdkfd-Avoid-calling-amd_iommu_unbind_pasid-when.patch
patch 1185-drm-amdkfd-Fix-CU-masking-for-more-than-32-CUs.patch
patch 1186-drm-amdkfd-Clean-up-the-function-pqm_uninit.patch
patch 1187-drm-amdkfd-Fix-unbound-PASID-issue-when-process-term.patch
patch 1188-drm-amdkfd-set-dev-kfd-permissions-to-0666-by-defaul.patch
patch 1189-drm-amdkfd-Add-flag-to-allocate-a-doorbell-BO.patch
patch 1190-drm-amdkfd-Remove-warning-when-CU-Mask-is-zero.patch
patch 1191-drm-amdgpu-Modify-create_process_vm-interface.patch
patch 1192-drm-amdgpu-Modify-free_memory_of_gpu-interface.patch
patch 1193-drm-amdkfd-Add-restore-work-item-function.patch
patch 1194-drm-amdkfd-Add-kgd2kfd-schedule_evict_and_restore_pr.patch
patch 1195-drm-amdkfd-Cosmetic-changes-for-easier-debugging.patch
patch 1196-drm-amdkfd-Delete-obsolete-code.patch
patch 1197-drm-amdgpu-Remove-kfd_process_device-usage-in-amdgpu.patch
patch 1198-drm-amdkfd-Use-software-scheduler-on-Tonga-ASIC.patch
patch 1199-drm-amdkfd-Clamp-EOP-queue-size-correctly-on-Gfx8.patch
patch 1200-drm-amdkfd-Enable-user-trap-handler-on-non-CWSR-ASIC.patch
patch 1201-drm-amdkfd-Rename-register_process_nocpsch-to-regist.patch
patch 1202-drm-amdkfd-Rename-radeon_flush_tlb-to-kfd_flush_tlb.patch
patch 1203-drm-amdkfd-Update-page-directory-address-in-qpd-afte.patch
patch 1204-drm-amdkfd-fix-zero-reading-of-VMID-and-PASID-for-Ha.patch
patch 1205-drm-amdkfd-Validate-PeerDirect-support-on-process-re.patch
patch 1206-drm-amdkfd-Change-pr_warn-to-pr_debug-when-init-Peer.patch
patch 1207-drm-amdgpu-Load-write-pointer-manually-during-KFD-MQ.patch
patch 1208-drm-amdkfd-Make-kfd-debugfs-independent-of-kfd-devic.patch
patch 1209-drm-amdkfd-Use-kzalloc-instead-of-kmalloc.patch
patch 1210-drm-amdgpu-Add-mmap_offset-for-KFD-BO-import-dmabuf.patch
patch 1211-drm-amdkfd-initial-implementation-of-handle-based-IP.patch
patch 1212-drm-amdgpu-kfd2kgd-Use-dma_buf-instead-of-dma_buf_fd.patch
patch 1213-drm-amdkfd-Remove-assoc_array-dependency-for-IPC.patch
patch 1214-drm-amdkfd-Reject-devices-without-host-atomic-suppor.patch
patch 1215-drm-amdkfd-Use-volatile-MTYPE-in-default-alternate-a.patch
patch 1216-drm-amdkfd-Preempt-static-queues-on-eviction.patch
patch 1217-drm-amdkfd-Always-release-process-in-a-work-queue.patch
patch 1218-drm-amdkfd-Sync-up-Polaris-DIDs-with-amdgpu.patch
patch 1219-drm-amdkfd-Add-perf-counters-to-topology.patch
patch 1220-drm-amdkfd-CP-queue-priority-controls.patch
patch 1221-drm-amdkfd-Fix-potential-fence-leak.patch
patch 1222-drm-amdkfd-Module-option-to-disable-CRAT-table.patch
patch 1223-drm-amdkfd-Handle-failure-instaed-of-BUG_ON.patch
patch 1224-drm-amdkfd-Support-CMA-Cross-Memory-Attach.patch
patch 1225-drm-amdkfd-Abandon-master-VM-usage.patch
patch 1226-drm-amdkfd-Fix-a-dead-lock-problem-in-memory-evictio.patch
patch 1227-drm-amdkfd-Add-memory-eviction-print-message.patch
patch 1228-drm-amdkfd-Fixed-a-kfd-driver-and-FW-sync-issue.patch
patch 1229-drm-amd-dkms-add-amdkfd-module.patch
patch 1230-drm-amdkcl-fix-no-in_compat_syscall-for-amdkfd.patch
patch 1231-drm-amd-backport-fix-out-of-tree-build.patch
patch 1232-drm-amdkcl-fix-no-pci_enable_atomic_ops_to_root.patch
patch 1233-Hybrid-kfd-adaption-Disable-cross_memory_copy-featur.patch
patch 1234-Adaption-KFD-support-for-Red-Hat-6.8.patch
patch 1235-drm-amdkfd-Fix-error-messages-about-updating-wrong-V.patch
patch 1236-drm-amdkfd-Print-rate-limited-messages-for-all-evict.patch
patch 1237-drm-amdkfd-Add-Polaris10-DID.patch
patch 1238-drm-amdkfd-Changed-SPI-priority-mapping.patch
patch 1239-drm-amdkfd-Initialize-packet-manager-for-non-HWS.patch
patch 1240-drm-amdkfd-Add-Vega10-support-for-KFD.patch
patch 1241-drm-amdkfd-Fix-Gfx9-AQL-MQD-initialization.patch
patch 1242-drm-amdkfd-Vega10-needs-PCIe-atomics.patch
patch 1243-drm-amdkfd-Serialize-tlb-flush-on-KFD-side.patch
patch 1244-drm-amdkfd-Use-ttmp10-and-ttmp11-to-store-TMA-info-f.patch
patch 1245-drm-amdkfd-Add-missing-Vega10-device-ID.patch
patch 1246-drm-amdkfd-Handle-UCTL2-faults-as-VM-faults.patch
patch 1247-drm-amdkfd-Fix-IS_ERR-references.patch
patch 1248-drm-amdkfd-Address-uninitialized-variable-warning.patch
patch 1249-Fix-a-memory-leak-due-to-unused-memory-allocation.patch
patch 1250-drm-amdkfd-Use-GFP_NOIO-with-reclaim-safe-locks.patch
patch 1251-drm-amdkfd-Enable-quiesce-resume_mm-of-multiple-kfd_.patch
patch 1252-drm-amdkfd-Reduce-KFD-restore-wait-time.patch
patch 1253-drm-amdkfd-Use-delayed_work-for-KFD-BO-eviction-work.patch
patch 1254-drm-amdkfd-Avoid-KFD-process-starvation-due-to-evict.patch
patch 1255-drm-amdkfd-Correct-CZ-max_waves_per_simd-value.patch
patch 1256-drm-amdkfd-Remove-firmware-version-check-for-multi-p.patch
patch 1257-drm-amdkfd-Allocate-CWSR-pages-per-process-for-APU.patch
patch 1258-drm-amdkfd-Handle-XNACK-error-and-fix-TMA-in-gfx9-tr.patch
patch 1259-drm-amdkfd-Complete-direct-IO-links.patch
patch 1260-drm-amdkfd-added-missing-version-guard-for-seq_hex_d.patch
patch 1261-drm-amdkfd-Fix-MQD-modification-race-during-eviction.patch
patch 1262-drm-amdkfd-Add-missing-wptr-poll-address-in-the-mqd.patch
patch 1263-drm-amdkfd-Ignore-ACPI-CRAT-for-non-APU-systems.patch
patch 1264-drm-amd-amdkfd-kcl-for-supporting-Rhel7.2.patch
patch 1265-drm-amdkfd-Rename-a-variable-to-avoid-confusion.patch
patch 1266-drm-amdkfd-Disable-CP-SDMA-ring-doorbell-in-MQD.patch
patch 1267-drm-amdkfd-Disable-the-perf-counters-for-old-kernels.patch
patch 1268-drm-amdkfd-Fix-kernel-compile-warning.patch
patch 1269-drm-amdkfd-Add-noretry-option-for-Vega10.patch
patch 1270-drm-amdkfd-Call-ACPI-only-if-platform-supports.patch
patch 1271-drm-amdkfd-Remove-unaligned-memory-access.patch
patch 1272-drm-amdkfd-Put-x86-specific-code-inside-X86_64.patch
patch 1273-drm-amdkfd-Use-NUMA-only-if-platform-supports.patch
patch 1274-drm-amdkfd-Remove-IOMMU_v2-dependency-AND-adaptions.patch
patch 1275-drm-amdkfd-Support-Power8-and-ARM64-architectures.patch
patch 1276-drm-amdkfd-Fix-CMA-bug.patch
patch 1277-drm-amdkfd-Prepare-cleanup-of-KFD-ioctl-APIs.patch
patch 1278-drm-amdkfd-Implement-cleaned-up-memory-management-AP.patch
patch 1279-drm-amdkfd-Move-doorbell_bitmap-to-per-process-struc.patch
patch 1280-drm-amdkfd-KFD-use-the-new-invalidate_tlbs-interface.patch
patch 1281-drm-amdkfd-Remove-deprecated-memory-management-APIs.patch
patch 1282-drm-amdkfd-Clean-up-KFD-style-errors-and-warnings.patch
patch 1283-drm-amdkfd-Consolidate-and-clean-up-log-commands.patch
patch 1284-drm-amdkfd-Change-x-NULL-false-references-to-x.patch
patch 1285-drm-amdkfd-Fix-goto-usage.patch
patch 1286-drm-amdkfd-Remove-usage-of-alloc-sizeof-struct.patch
patch 1287-drm-amdkfd-Remove-BUG_ONs.patch
patch 1288-drm-amdkfd-Add-missing-headers-due-to-header-reorg.patch
patch 1289-Change-fence-references-to-dma_fence.patch
patch 1290-drm-amdkfd-add-some-additional-vega10-pci-ids.patch
patch 1291-drm-amdkcl-KFD-4.10-dkms-fix-for-dma_fence.patch
patch 1292-drm-amdkcl-KFD-4.11-dkms-fix-for-4.11-new-added-head.patch
patch 1293-drm-amdkfd-Print-event-limit-messages-only-once-per-.patch
patch 1294-drm-amdkfd-Add-wavefront-context-save-state-retrieva.patch
patch 1295-drm-amdkfd-Remove-deprecated-open_graphic_handle-ioc.patch
patch 1296-drm-amdkfd-Deleted-unused-tlb_invalidation_lock.patch
patch 1297-drm-amdkfd-Make-trap-handler-buffer-RO.patch
patch 1298-drm-amdkfd-Reset-process-queues-if-it-VM_FAULTs.patch
patch 1299-drm-amdkfd-Fix-destroy-queue-failure-path.patch
patch 1300-drm-amdkfd-Fix-destroy_queue_nocpsch-failure-path.patch
patch 1301-drm-amdkfd-Minor-modification-to-error-message.patch
patch 1302-drm-amd-Implement-parallel-memory-mapping-on-mGPUs.patch
patch 1303-Address-code-warnings-style.patch
patch 1304-drm-amdkfd-gfx9-preempt-queues-after-VM_FAULT.patch
patch 1305-drm-amdkfd-Initialize-gfx9-workgroup-state-offset-to.patch
patch 1306-drm-amdkfd-Flush-TLBs-after-syncing-with-page-table-.patch
patch 1307-drm-amdkfd-Support-registering-third-pary-device-mem.patch
patch 1308-drm-amdkfd-Address-kernel-warning.patch
patch 1309-drm-amdkfd-Handle-MEM_VIOL-in-trap-handler.patch
patch 1310-drm-amd-Add-mqd-as-parameter-in-kfd2kgd.hqd_destroy-.patch
patch 1311-drm-amdkfd-VF-do-not-need-to-set-Atomic-Ops-on-PCIE-.patch
patch 1312-drm-amdkfd-Reuse-CHIP_-from-amdgpu.patch
patch 1313-drm-amdkfd-Fixed-a-kfifo-adaptation-issue.patch
patch 1314-drm-amdkfd-Add-support-for-displaying-VRAM-usage.patch
patch 1315-drm-amdkfd-Prepare-Raven-for-KFD-enablement-at-amdkf.patch
patch 1316-drm-amdkfd-Change-process-lock-back-to-mutex.patch
patch 1317-drm-amdkfd-Simplify-process-locking.patch
patch 1318-drm-amdkfd-remove-not-used-defines-from-cik_regs.h.patch
patch 1319-drm-amdkfd-Allocate-gtt_sa_bitmap-in-long-units.patch
patch 1320-drm-amdkfd-Error-handling-fixes-ported-from-upstream.patch
patch 1321-drm-amdkfd-Fix-doorbell-initialization-and-finalizat.patch
patch 1322-drm-amdkfd-Fix-minor-memory-leak-if-sched_policy-is-.patch
patch 1323-drm-amdkfd-Fix-a-bug-that-process-cleanup-is-not-don.patch
patch 1324-drm-amdkfd-Fix-a-bug-that-vmid-is-released-before-re.patch
patch 1325-drm-amdkfd-Remove-kfd_get_gpu_id.patch
patch 1326-drm-amdkfd-Rename-topology_device_by_nodeid.patch
patch 1327-drm-amdkfd-Improve-topology-error-handling.patch
patch 1328-drm-amdkfd-Cosmetic-changes-to-match-upstream.patch
patch 1329-drm-amdkfd-Clean-up-process-queue-management.patch
patch 1330-drm-amdkfd-Limit-queue-number-per-process-and-device.patch
patch 1331-drm-amdkfd-Handle-ILLEGAL_INST-in-trap-handler.patch
patch 1332-drm-amdkfd-Temporarily-avoid-resetting-wavefronts-wh.patch
patch 1333-drm-amdkfd-fix-CWSR-memory-allocation-sequence.patch
patch 1334-drm-amdgpu-amdkfd-remove-unused-parameter-in-kfd-all.patch
patch 1335-drm-amdkfd-Finetune-the-queue-reset-scenario.patch
patch 1336-drm-amdkfd-Add-more-error-printing-to-help-bringup.patch
patch 1337-drm-amdkcl-Include-kcl-kcl_amd_asic_type.h-in-amdkfd.patch
patch 1338-drm-amdkfd-fix-bug-device-is-not-added-to-supported_.patch
patch 1339-drm-amdkfd-Fix-dmesg-error-on-used_memory-on-fjg.patch
patch 1340-drm-amdkfd-fix-in-tree-build.patch
patch 1341-Revert-drm-amdkfd-Workaround-for-debug-event-not-sig.patch
patch 1342-drm-amdkfd-Fix-allocated_queues-bitmap-initializatio.patch
patch 1343-drm-amdkfd-Fix-debugfs-dumping-of-KFD-HQDs.patch
patch 1344-drm-amdkfd-Remove-indiscriminate-resetting-of-queues.patch
patch 1345-drm-amdkfd-Make-unmapping-of-static-queues-condition.patch
patch 1346-drm-amdkfd-Fix-scheduler-race-in-kfd_wait_on_events-.patch
patch 1347-drm-amdkfd-Extend-peer_memory_client-to-support-MLNX.patch
patch 1348-drm-amdkfd-Add-module-parameter-priv_cp_queues.patch
patch 1349-drm-amdkfd-Fixed-a-unit-convert-error.patch
patch 1350-drm-amdgpu-Share-eviction-fence-with-KFD.patch
patch 1351-drm-amdkfd-Fix-suspend-resume.patch
patch 1352-drm-amdkfd-RHEL-6.8-fix-for-hash_for_each_rcu.patch
patch 1353-compilation-fix-for-amdkfd-porting.patch
patch 1354-making-kfd-signal-event-limit-macro-to-be-page-align.patch
patch 1355-drm-amdgpu-add-members-to-struct-amdgpu_cu_info.patch
patch 1356-remove-radeon-driver-compilation-error.patch
patch 1357-amd-i2c-AMD-MP2-I2C-using-AMD-R-PCI-E-MP2-Communicat.patch
patch 1358-amd-i2c-AMD-MP2-I2C-changed-some-debug-logs.patch
patch 1359-amd-i2c-AMD-MP2-I2C-Bug-fix.patch
patch 1360-amd-i2c-AMD-MP2-I2C-Changed-debug-print-level.patch
patch 1361-drm-amdgpu-gfx8-disable-EDC.patch
patch 1362-Revert-drm-amd-amdgpu-enable-GFX-PG-for-carrizo-and.patch
patch 1363-x86-cpufeatures-Device-IDs-of-AMD-V1000-root-complex.patch
patch 1364-drivers-net-amd-Convert-timers-to-use-timer_setup.patch
patch 1365-mm-remove-__GFP_COLD.patch
patch 1367-ethernet-Use-octal-not-symbolic-permissions.patch
patch 1368-drm-amdkfd-revert-kfd-part-to-a-previous-state.patch
patch 1369-Revert-drm-amdgpu-unify-MQD-programming-sequence.patch
patch 1370-port-in-all-files-amdkfd-source-files-snapshot-at.patch
patch 1371-Makefile-change.patch
patch 1372-drm-amdgpu-Enable-BIF-5.0-atomic-promotion-to-PCIe-3.patch
patch 1373-drm-amdgpu-add-members-to-struct-amdgpu_cu_info.patch
patch 1374-drm-amdgpu-Implement-amdgpu-SDMA-functions-for-VI.patch
patch 1375-drm-amdgpu-Add-lds_size-to-struct-amdgpu_cu_info.patch
patch 1376-drm-amdgpu-disallow-foreign-BOs-for-UVD-VCE.patch
patch 1377-drm-amdgpu-separate-BO-from-GEM-object.patch
patch 1378-drm-amdgpu-enable-foreign-DMA-buf-objects.patch
patch 1379-drm-amdgpu-Verify-amdgpu_bo-only-if-amdgpu_bo-alloca.patch
patch 1380-drm-amdgpu-get_vm_fault-implementation-on-amdgpu-sid.patch
patch 1381-drm-amdgpu-Add-MMU-notifier-for-HSA-userptr-buffers.patch
patch 1382-drm-amdgpu-implement-vm_operations_struct.access.patch
patch 1383-Adaption-drm-amdgpu-separate-BO-from-GEM-object.patch
patch 1384-Changes-needed-due-to-changes-in-amdgpu-code.patch
patch 1385-Adaption-for-domain-changes.patch
patch 1386-Rename-amdgpu_ttm_tt_has_userptr-to-amdgpu_ttm_tt_ge.patch
patch 1387-Adaption-needed-Change-bo-to-entry.robj.patch
patch 1388-split-pd-and-pt.patch
patch 1389-adapt-cto-new-amdgpu_vm_bo_map.patch
patch 1390-Adaption-for-drm-amdgpu-merge-VM-manager-and-VM-cont.patch
patch 1391-Fix-a-memory-leak-in-error-handling.patch
patch 1392-Do-add_bo_to_vm-when-BO-gets-mapped-instead-of-alloc.patch
patch 1393-Remove-an-unnecessary-parameter.patch
patch 1394-Simplify-the-function-prototype-add_bo_to_vm.patch
patch 1395-Change-check_if_add_bo_to_vm-prototype.patch
patch 1396-Change-reserve_bo_and_vms-prototype.patch
patch 1397-Rework-reserve_bo_and_vms-to-support-a-single-incomi.patch
patch 1398-Reserve-PD-BO-along-with-BO-together-when-add_bo_to_.patch
patch 1399-Reserve-all-PD-BOs-from-VMs-along-with-a-BO-when-it-.patch
patch 1400-Fix-an-error-handling-problem.patch
patch 1401-Remove-lazy-param-to-ttm_bo_wait.patch
patch 1402-drm-amdkfd-kfd_device_queue_manager.c-Remove-unused-.patch
patch 1403-drm-amdkfd-kfd_chardev.c-Reconcile-code-with-upstrea.patch
patch 1404-drm-amdgpu-Fix-get_cu_info.patch
patch 1405-drm-amdgpu-Reconcile-code-to-upstream.patch
patch 1406-drm-amdkfd-Remove-num_bank_count-reference.patch
patch 1407-Revert-drm-amdkfd-destroy-mutex-if-process-creation-.patch
patch 1408-drm-amdgpu-Remove-amdgpu_powerplay-references.patch
patch 1409-drm-amdkfd-Consider-debug_largebar-when-reporting-to.patch
patch 1410-drm-amdkfd-Turn-pr_err-to-pr_debug-call-v2.patch
patch 1411-drm-amdkfd-Don-t-report-invalid-event-data-on-VM-fau.patch
patch 1412-drm-amdgpu-Add-PDE0-vm-fault-as-invalid-address-prot.patch
patch 1413-drm-amdkfd-bump-version-for-release-2.0.0.patch
patch 1414-drm-amdgpu-Report-FB-as-private-if-BAR-is-above-40bi.patch
patch 1415-drm-amdkgd-Temporary-fix-for-HBM-width.patch
patch 1416-drm-amdkfd-BOs-should-be-unpinned-after-unmap_bo_fro.patch
patch 1417-drm-amdgpu-Do-all-BO-and-page-table-pinning-inside-m.patch
patch 1418-drm-amdgpu-Fix-CP_HQD_PQ_WPTR-initialization-on.patch
patch 1419-drm-amdgpu-Add-GPUVM-and-Hawaii-to-gfx_v7-KFD-suppor.patch
patch 1420-drm-amdkfd-Initial-Hawaii-support.patch
patch 1421-drm-amdgpu-Create-symmetry-between-map_bo_to_gpuvm-a.patch
patch 1422-drm-amdgpu-Remove-KFD-PT-BOs-from-TTM-LRU-list.patch
patch 1423-drm-amdgpu-Remove-useless-parameters.patch
patch 1424-drm-amdkfd-Automatically-detect-and-enable-PeerDirec.patch
patch 1425-drm-amdgpu-Adjust-reserve_bo_and_vms.patch
patch 1426-drm-amdgpu-don-t-add_bo_to_vm-in-import_dmabuf.patch
patch 1427-drm-amdkfd-Rectify-the-way-to-check-activeness-of-HQ.patch
patch 1428-drm-amdkfd-Fix-a-typo-in-kgd_hqd_sdma_destroy-on-gfx.patch
patch 1429-drm-amdkfd-Hawaii-doesn-t-support-atomics.patch
patch 1430-drm-amdkfd-Rectify-the-jiffies-calculation-error-wit.patch
patch 1431-drm-amdgpu-Implement-get_cu_info-for-Hawaii.patch
patch 1432-drm-amdkfd-Avoid-submitting-an-unnecessary-packet-to.patch
patch 1433-drm-amdkfd-Unmapping-static-queues-when-a-process-te.patch
patch 1434-drm-amdkfd-Reset-waves-when-dequeueing-HQD.patch
patch 1435-drm-amdkfd-Call-destroy_mqd-when-queue-is-disabled.patch
patch 1436-drm-amdgpu-Fix-SDMA-HQD-destroy-error-on-gfx_v7.patch
patch 1437-drm-amdgpu-Remove-unnecessary-kmapping-of-HSA-GTT-BO.patch
patch 1438-drm-amdkfd-Fix-leaking-HQD-in-SW-scheduler.patch
patch 1439-drm-amdkfd-Rename-function-pointers-to-avoid-confusi.patch
patch 1440-drm-amdkfd-Clean-up-the-data-structure-in-kfd_proces.patch
patch 1441-drm-amdkfd-Reuse-function-to-find-a-process-through-.patch
patch 1442-drm-amdkfd-Remove-duplicate-pqm_uninit.patch
patch 1443-drm-amdkfd-Fix-suspend-resume-issue-on-Carrizo.patch
patch 1444-drm-amdkfd-Add-debugfs-entry-for-hexdump-of-MQDs.patch
patch 1445-drm-amdgpu-Add-kfd2kgd-APIs-for-dumping-HQDs.patch
patch 1446-drm-amdgpu-Fix-definition-of-KFD_CIK_SDMA_QUEUE_OFFS.patch
patch 1447-drm-amdkfd-Add-kfd-hqds-entry-to-debugfs.patch
patch 1448-drm-amdkfd-Add-kfd-rls-entry-to-debugfs.patch
patch 1449-drm-amdkfd-Add-SDMA-trap-src-id-to-the-KFD-isr-wante.patch
patch 1450-drm-amdkfd-Update-CWSR-trap-handler-for-stability.patch
patch 1451-drm-amdgpu-Reduce-poll-interval-for-checking-SWS-HQD.patch
patch 1452-drm-amdkfd-Move-PM4-Release_Mem-headers.patch
patch 1453-drm-amdgpu-Fix-SDMA-RLC-queues-on-Hawaii.patch
patch 1454-drm-amdgpu-clear-bo-at-memory-allocation.patch
patch 1455-drm-amdgpu-Restore-queues-after-VMPT-update-fences-s.patch
patch 1456-drm-amdkfd-Use-destroy_mqd-to-evict-queues-w-o-HWS.patch
patch 1457-drm-amdgpu-Fix-suspicious-RCU-usage.patch
patch 1458-drm-amdgpu-CP-dequeue-race-in-SW-scheduler.patch
patch 1459-drm-amdkfd-Fix-a-memory-leak-in-memory-unmapping.patch
patch 1460-drm-amdgpu-Make-hqd_load-work-in-kernel-thread.patch
patch 1461-drm-amdkfd-Improve-the-debug-message.patch
patch 1462-drm-amdkfd-pin-unpin-PTs-PD-only-once-instead-of-per.patch
patch 1463-drm-amdkfd-Ignore-CPU-Node-if-no-cores-are-online.patch
patch 1464-drm-amd-Update-kgd_kfd-interface-for-resuming-SDMA-q.patch
patch 1465-drm-amdgpu-Add-support-for-resuming-SDMA-queues-w-o-.patch
patch 1466-drm-amdkfd-Add-support-for-resuming-SDMA-queues-w-o-.patch
patch 1467-drm-amdkfd-Fix-oversubscription-accounting.patch
patch 1468-drm-amdkfd-Fix-memory-leaks-in-kfd-topology.patch
patch 1469-drm-amdgpu-Enable-file-backed-userptr-mappings-for-K.patch
patch 1470-drm-amdgpu-Don-t-wait-for-fence-when-unmapping-freei.patch
patch 1471-drm-amdgpu-Add-kfd2kgd-API-for-submitting-IB.patch
patch 1472-drm-amdkfd-Change-the-default-value-of-hws_max_conc_.patch
patch 1473-drm-amdkfd-Flush-TC-for-GFX-v7.patch
patch 1474-drm-amdkfd-Factor-out-the-duplicated-code.patch
patch 1475-drm-amdkfd-Make-kfd_process-reference-counted.patch
patch 1476-drm-amdkfd-Get-reference-to-lead_thread-task-struct.patch
patch 1477-drm-amdkfd-Don-t-dereference-kfd_process.mm.patch
patch 1478-drm-amdkfd-Use-ref-count-to-prevent-kfd_process-dest.patch
patch 1479-drm-amdkfd-Simplify-the-KFD-signal_page-structure.patch
patch 1480-drm-amdkfd-Simplify-kfd_map_memory_to_gpu-function.patch
patch 1481-drm-amdkfd-Report-legacy-doorbell-type-for-Tonga.patch
patch 1482-drm-amdgpu-Polaris10-11-support-in-KFD-interface.patch
patch 1483-drm-amdkfd-Add-Polaris10-11-support.patch
patch 1484-drm-amdkfd-Fix-a-memory-leak-when-idr_alloc-fails.patch
patch 1485-drm-amdkfd-Reorganize-functions-involving-process-ex.patch
patch 1486-drm-amdkfd-Adjust-kernel-managed-memory-allocation-m.patch
patch 1487-drm-amdkfd-use-standard-kernel-kfifo-for-IH.patch
patch 1488-drm-amdkfd-increase-IH-num-entries-to-8192.patch
patch 1489-drm-amdkfd-wait-only-for-IH-work-on-IH-exit.patch
patch 1490-drm-amdkfd-use-a-high-priority-workqueue-for-IH-work.patch
patch 1491-drm-amdkfd-Add-kgd-kfd-interface-get_tile_config.patch
patch 1492-drm-amdgpu-Implement-get_tile_config-in-amdgpu.patch
patch 1493-drm-amdkfd-Implement-image-tiling-mode-support.patch
patch 1494-drm-amdkfd-Fix-context-save-handler-on-ATC-platforms.patch
patch 1495-drm-amdkfd-fix-IH-always-printing-error-message-on-e.patch
patch 1496-drm-amdkfd-Fix-kernel-panic-in-PPR-handler.patch
patch 1497-drm-amdkfd-Don-t-synchronize-DIQ-after-a-wave-contro.patch
patch 1498-drm-amdkfd-make-Makefile-paths-relative.patch
patch 1499-drm-amd-Simplify-SDMA-HQD-loading-in-kernel-threads.patch
patch 1500-drm-amdkfd-Fix-IB-freeing-without-DIQ-synchronizatio.patch
patch 1501-drm-amdkfd-Avoid-calling-amd_iommu_unbind_pasid-when.patch
patch 1502-drm-amdkfd-Fix-CU-masking-for-more-than-32-CUs.patch
patch 1503-drm-amdkfd-Clean-up-the-function-pqm_uninit.patch
patch 1504-drm-amdkfd-Fix-unbound-PASID-issue-when-process-term.patch
patch 1505-drm-amdkfd-set-dev-kfd-permissions-to-0666-by-defaul.patch
patch 1506-drm-amdkfd-Fix-ttm-warnings-when-doing-fork-with-BOs.patch
patch 1507-drm-amdgpu-Add-flag-for-KFD-to-allocate-a-doorbell-B.patch
patch 1508-drm-amdkfd-Add-flag-to-allocate-a-doorbell-BO.patch
patch 1509-drm-amdkfd-Remove-warning-when-CU-Mask-is-zero.patch
patch 1510-drm-amdgpu-Introduce-amdkfd_vm-structure.patch
patch 1511-drm-amdgpu-Modify-create_process_vm-interface.patch
patch 1512-drm-amdgpu-Modify-free_memory_of_gpu-interface.patch
patch 1513-drm-amdkgd-Keep-kgd_mem-validation-list-in-amdkfd_vm.patch
patch 1514-drm-amdgpu-Introduce-KFD-memory-eviction-fence.patch
patch 1515-drm-amdgpu-Add-kfd2kgd-restore_process_bos-API.patch
patch 1516-drm-amdkfd-Add-restore-work-item-function.patch
patch 1517-drm-amdkfd-Add-kgd2kfd-schedule_evict_and_restore_pr.patch
patch 1518-drm-amdgpu-Signal-eviction-fence.patch
patch 1519-drm-amdgpu-Add-eviction_valuable-TTM-callback.patch
patch 1520-drm-amdkfd-Sync-with-PD-PT-fence-after-VM-update.patch
patch 1521-drm-amdgpu-Impose-KFD-memory-usage-limits.patch
patch 1522-drm-amdkgd-Remove-permanent-pinning-of-KFD-BOs.patch
patch 1523-drm-amdgpu-Ignore-kfd-eviction-fence-in-sync_resv.patch
patch 1524-drm-amdgpu-Remove-pinning-of-kfd-process-PD-PT-BO.patch
patch 1525-drm-amdkfd-Cosmetic-changes-for-easier-debugging.patch
patch 1526-drm-amdgpu-Fix-incompatible-pointer-compiler-warning.patch
patch 1527-drm-amdkfd-Delete-obsolete-code.patch
patch 1528-drm-amd-Delete-unused-kfd2kgd-interface-functions.patch
patch 1529-drm-amdgpu-Remove-kfd_process_device-usage-in-amdgpu.patch
patch 1530-drm-amdkfd-Replace-kgd_mem-with-amdgpu_bo-for-kernel.patch
patch 1531-drm-amdgpu-Eliminate-data2-layer-from-kgd_mem-struct.patch
patch 1532-drm-amdgpu-Synchronize-KFD-HQD-load-protocol-with-CP.patch
patch 1533-drm-amdkfd-Use-software-scheduler-on-Tonga-ASIC.patch
patch 1534-drm-amdkfd-Clamp-EOP-queue-size-correctly-on-Gfx8.patch
patch 1535-drm-amdkfd-Enable-user-trap-handler-on-non-CWSR-ASIC.patch
patch 1536-drm-amdgpu-Fix-a-kernel-warning-regarding-using-amdg.patch
patch 1537-drm-amdkfd-Rename-register_process_nocpsch-to-regist.patch
patch 1538-drm-amdkfd-Rename-radeon_flush_tlb-to-kfd_flush_tlb.patch
patch 1539-drm-amdkfd-Update-page-directory-address-in-qpd-afte.patch
patch 1540-drm-amdkfd-fix-zero-reading-of-VMID-and-PASID-for-Ha.patch
patch 1541-drm-amdgpu-Fix-kernel-warning-caused-by-unreserved-B.patch
patch 1542-drm-amdgpu-Handle-userptr-restore-failure.patch
patch 1543-drm-amdgpu-Fix-KFD-System-Memory-usage-limit.patch
patch 1544-drm-amdgpu-Add-a-wrapper-for-amdgpu_amdkfd_bo_valida.patch
patch 1545-drm-amdgpu-Use-validate_pt_bos-instead-of-get_pt_bos.patch
patch 1546-drm-amdgpu-Remove-references-to-entry.robj.patch
patch 1547-drm-amdgpu-Remove-unused-parameter-from-amdgpu_ib_sc.patch
patch 1548-drm-amdkfd-Move-resume_mm-quiesce_mm-out-of-reserve-.patch
patch 1549-drm-amdkfd-Validate-PeerDirect-support-on-process-re.patch
patch 1550-drm-amdkfd-Change-pr_warn-to-pr_debug-when-init-Peer.patch
patch 1551-drm-amdgpu-Load-write-pointer-manually-during-KFD-MQ.patch
patch 1552-drm-amdgpu-Change-amdgpu_vm_clear_freed-prototype-to.patch
patch 1553-drm-amdkfd-Remove-useless-amdgpu_vm_clear_invalids-c.patch
patch 1554-drm-amdkfd-Fix-the-PTE-not-cleared-on-BO-unmapping-b.patch
patch 1555-drm-amdkfd-Make-kfd-debugfs-independent-of-kfd-devic.patch
patch 1556-drm-amdgpu-Update-KFD-mem-usage-in-BO-destroy.patch
patch 1557-drm-amdgpu-Remove-Add-eviction-fences-from-BO.patch
patch 1558-drm-amdkfd-Use-kzalloc-instead-of-kmalloc.patch
patch 1559-drm-amdgpu-Export-dmabuf-support-for-KFD-BOs.patch
patch 1560-drm-amdgpu-Add-mmap_offset-for-KFD-BO-import-dmabuf.patch
patch 1561-drm-amdkfd-initial-implementation-of-handle-based-IP.patch
patch 1562-drm-amdgpu-kfd2kgd-Use-dma_buf-instead-of-dma_buf_fd.patch
patch 1563-drm-amdgpu-Improve-debug-information-for-kfd-memory-.patch
patch 1564-drm-amdkfd-Remove-assoc_array-dependency-for-IPC.patch
patch 1565-PCI-Add-pci_enable_atomic_ops_to_root.patch
patch 1566-drm-amdkfd-Reject-devices-without-host-atomic-suppor.patch
patch 1567-drm-amdgpu-Fix-userptr-memory-usage-limit.patch
patch 1568-drm-amdgpu-More-fixes-for-system-userptr-memory-acco.patch
patch 1569-drm-amdkfd-Optimize-out-unnecessary-parameters-when-.patch
patch 1570-drm-amdkfd-Use-volatile-MTYPE-in-default-alternate-a.patch
patch 1571-drm-amdkfd-Avoid-validating-PD-PT-BOs-when-updating-.patch
patch 1572-drm-amdkfd-Preempt-static-queues-on-eviction.patch
patch 1573-drm-amdgpu-Don-t-clear-BO-during-memory-allocation.patch
patch 1574-drm-amdgpu-Fix-PT-validation-for-amdkfd.patch
patch 1575-drm-amdgpu-Fix-call-to-amdgpu_vm_bo_update.patch
patch 1576-drm-amdgpu-Remove-unused-clear_bo-function.patch
patch 1577-drm-amdkfd-Avoid-calling-resume_mm-during-process-te.patch
patch 1578-drm-amdkfd-Always-release-process-in-a-work-queue.patch
patch 1579-drm-amdgpu-Avoid-leaking-KFD-userpages.patch
patch 1580-drm-amdgpu-Fix-handling-of-userptrs-around-process-t.patch
patch 1581-drm-amdkfd-Sync-up-Polaris-DIDs-with-amdgpu.patch
patch 1582-drm-amdgpu-Ignore-eviction-fence-during-map-and-vali.patch
patch 1583-drm-amdgpu-Fix-userptr-restore-race-condition-with-f.patch
patch 1584-drm-amdgpu-Fix-unbalanced-restore-errors.patch
patch 1585-drm-amdkfd-Add-perf-counters-to-topology.patch
patch 1586-drm-amdgpu-Automatic-power-profile-switching.patch
patch 1587-drm-amdgpu-Correct-incomplete-fix-for-userptr-restor.patch
patch 1588-drm-amdgpu-Retry-failed-userptr-restore-when-the-map.patch
patch 1589-drm-amdkfd-CP-queue-priority-controls.patch
patch 1590-drm-amdgpu-Drop-last_vm_update-fence-after-KFD-VM-up.patch
patch 1591-drm-amdkfd-Fix-a-small-bug-that-a-variable-may-be-po.patch
patch 1592-drm-amdkfd-Fix-potential-fence-leak.patch
patch 1593-drm-amdgpu-Lock-rmn-lock-in-HSA-MMU-notifiers.patch
patch 1594-drm-amdkfd-Module-option-to-disable-CRAT-table.patch
patch 1595-drm-amdgpu-kfd2kgd-Add-copy_mem_to_mem-interface.patch
patch 1596-drm-amdgpu-Don-t-use-buffer-immediately-in-copy_buff.patch
patch 1597-drm-amdkfd-Handle-failure-instaed-of-BUG_ON.patch
patch 1598-drm-amdkfd-Support-CMA-Cross-Memory-Attach.patch
patch 1599-drm-amdkfd-Abandon-master-VM-usage.patch
patch 1600-drm-amdkfd-Fix-a-dead-lock-problem-in-memory-evictio.patch
patch 1601-drm-amdkfd-Add-memory-eviction-print-message.patch
patch 1602-drm-amdkfd-Fix-a-bug-that-stored-VM-fault-info-may-b.patch
patch 1603-drm-amdgpu-Fix-FD-leak-due-to-rebase-conflict.patch
patch 1604-drm-amdkfd-Fixed-a-kfd-driver-and-FW-sync-issue.patch
patch 1605-Hybrid-kfd-adaption-Disable-cross_memory_copy-featur.patch
patch 1606-amdkfd-Fix-a-kernel-crash-bug-when-memory-eviction-i.patch
patch 1607-Adaption-KFD-support-for-Red-Hat-6.8.patch
patch 1608-drm-amdgpu-Ignore-eviction-fence-during-unmap.patch
patch 1609-drm-amdgpu-GTT-bind-before-copy-mem.patch
patch 1610-drm-amdgpu-Fix-memory-leak-when-userptr-validation-f.patch
patch 1611-drm-amdkfd-Fix-error-messages-about-updating-wrong-V.patch
patch 1612-drm-amdkfd-Print-rate-limited-messages-for-all-evict.patch
patch 1613-drm-amdkfd-Add-Polaris10-DID.patch
patch 1614-drm-amdgpu-Consolidate-2-eviction_valuable-calls.patch
patch 1615-drm-amdkfd-Changed-SPI-priority-mapping.patch
patch 1616-drm-amdgpu-Change-kfd_bo_list-entry.patch
patch 1617-drm-amdgpu-Fix-copy_mem_to_mem-resv.-list.patch
patch 1618-drm-amdgpu-Use-separate-resv.-list-in-restore.patch
patch 1619-Adaption-for-kfd-allocate-the-PTEs-before-mapping.patch
patch 1620-drm-amdkfd-Initialize-packet-manager-for-non-HWS.patch
patch 1621-drm-amdgpu-Fixed-memory-leak-in-amdgpu_bo_create_res.patch
patch 1622-Hybrid-kfd-adaption-replace-vm-page_directory-with-r.patch
patch 1623-drm-amdgpu-Add-Vega10-support-for-KFD.patch
patch 1624-drm-amdkfd-Add-Vega10-support-for-KFD.patch
patch 1625-drm-amdkfd-Fix-Gfx9-AQL-MQD-initialization.patch
patch 1626-drm-amdkfd-Add-Vega10-addr-watch-wave-control.patch
patch 1627-drm-amdkfd-Vega10-needs-PCIe-atomics.patch
patch 1628-drm-amdgpu-Make-PTE-flags-per-mapping-not-per-BO.patch
patch 1629-drm-amdkfd-Serialize-tlb-flush-on-KFD-side.patch
patch 1630-drm-amdkfd-Use-ttmp10-and-ttmp11-to-store-TMA-info-f.patch
patch 1631-drm-amdkfd-Add-missing-Vega10-device-ID.patch
patch 1632-drm-amdkfd-Handle-UCTL2-faults-as-VM-faults.patch
patch 1633-drm-amdkfd-Fix-IS_ERR-references.patch
patch 1634-drm-amdkfd-Address-uninitialized-variable-warning.patch
patch 1635-Fix-a-memory-leak-due-to-unused-memory-allocation.patch
patch 1636-drm-amdgpu-Use-GFP_NOIO-with-reclaim-safe-locks.patch
patch 1637-drm-amdkfd-Use-GFP_NOIO-with-reclaim-safe-locks.patch
patch 1638-drm-amdkfd-Enable-quiesce-resume_mm-of-multiple-kfd_.patch
patch 1639-drm-amdgpu-Refactor-HSA-page-table-validation.patch
patch 1640-drm-amdgpu-New-HSA-MMU-notifiers-to-work-under-memor.patch
patch 1641-drm-amdgpu-Simplify-process-termination-in-amdgpu_tt.patch
patch 1642-drm-amdkfd-Reduce-KFD-restore-wait-time.patch
patch 1643-drm-amdkfd-Use-delayed_work-for-KFD-BO-eviction-work.patch
patch 1644-drm-amdkfd-Avoid-KFD-process-starvation-due-to-evict.patch
patch 1645-drm-amdgpu-Vega10-Program-PAGE_TABLE_END_ADDR_HI32.patch
patch 1646-drm-amdkfd-Correct-CZ-max_waves_per_simd-value.patch
patch 1647-drm-amdkfd-Remove-firmware-version-check-for-multi-p.patch
patch 1648-drm-amdgpu-Don-t-wait-for-page-table-directory-valid.patch
patch 1649-drm-amdgpu-Clean-up-page-table-validation-code.patch
patch 1650-drm-amdkfd-Allocate-CWSR-pages-per-process-for-APU.patch
patch 1651-drm-amdkfd-Handle-XNACK-error-and-fix-TMA-in-gfx9-tr.patch
patch 1652-drm-amdkfd-Complete-direct-IO-links.patch
patch 1653-drm-amdgpu-Schedule-restore-of-userptr-BOs-on-first-.patch
patch 1654-drm-amdgpu-Allow-get_user_pages-to-fail-in-restore-w.patch
patch 1655-drm-amdkfd-added-missing-version-guard-for-seq_hex_d.patch
patch 1656-drm-amdgpu-remove-the-unused-vm_manager-lock-the-vm_.patch
patch 1657-drm-amdgpu-Revision-for-remove-the-unused-vm_manager.patch
patch 1658-drm-amdkfd-fix-compiling-warnings-specific-for-hybri.patch
patch 1659-adm-amdgpu-Fix-PPLIB-NULL-function-pointer-when-load.patch
patch 1660-drm-amdkfd-Fix-MQD-modification-race-during-eviction.patch
patch 1661-drm-amdgpu-Program-HIQ-field-of-RLC_CP_SCHEDULER.patch
patch 1662-drm-amdkfd-Add-missing-wptr-poll-address-in-the-mqd.patch
patch 1663-drm-amdkfd-Ignore-ACPI-CRAT-for-non-APU-systems.patch
patch 1664-drm-amdgpu-Fix-un-blanced-vm-counts-opened-by-KFD.patch
patch 1665-drm-amd-amdkfd-kcl-for-supporting-Rhel7.2.patch
patch 1666-drm-amdgpu-Implement-new-invalidate-tlb-in-amdgpu.patch
patch 1667-drm-amdkfd-Rename-a-variable-to-avoid-confusion.patch
patch 1668-drm-amdkfd-Disable-CP-SDMA-ring-doorbell-in-MQD.patch
patch 1669-drm-amdkfd-Disable-the-perf-counters-for-old-kernels.patch
patch 1670-drm-amdkfd-fit-new-kiq-ring-lock-structure-depend-on.patch
patch 1671-drm-amdkfd-Fix-kernel-compile-warning.patch
patch 1672-drm-amdkfd-Add-noretry-option-for-Vega10.patch
patch 1673-drm-amdkfd-Reuse-code-for-mapping-bo-to-kernel-addre.patch
patch 1674-drm-amdgpu-Record-gfx7-gfx8-VM-range-fault-as-not-pr.patch
patch 1675-drm-amdgpu-Fix-compile-error-for-power-arch.patch
patch 1676-drm-amdkfd-Call-ACPI-only-if-platform-supports.patch
patch 1677-drm-amdkfd-Remove-unaligned-memory-access.patch
patch 1678-drm-amdkfd-Put-x86-specific-code-inside-X86_64.patch
patch 1679-drm-amdkfd-Use-NUMA-only-if-platform-supports.patch
patch 1680-drm-amdkfd-Remove-IOMMU_v2-dependency-AND-adaptions.patch
patch 1681-drm-amdkfd-Support-Power8-and-ARM64-architectures.patch
patch 1682-drm-amdkfd-Fix-CMA-bug.patch
patch 1683-drm-amdkfd-avoid-deadlock-on-resume-from-S3.patch
patch 1684-drm-amdkfd-fix-build-warning-in-amdkfd_gfx_v9.c.patch
patch 1685-drm-amdkfd-Prepare-cleanup-of-KFD-ioctl-APIs.patch
patch 1686-drm-amdkfd-Implement-cleaned-up-memory-management-AP.patch
patch 1687-drm-amdkfd-imported-the-change-brought-by-kfd-merge-.patch
patch 1688-drm-amdkfd-Move-doorbell_bitmap-to-per-process-struc.patch
patch 1689-drm-amdgpu-Don-t-use-the-invalidate_tlb-package-for-.patch
patch 1690-drm-amdkfd-KFD-use-the-new-invalidate_tlbs-interface.patch
patch 1691-drm-amdkfd-Remove-deprecated-memory-management-APIs.patch
patch 1692-drm-amdkfd-Clean-up-KFD-style-errors-and-warnings.patch
patch 1693-drm-amdkfd-Consolidate-and-clean-up-log-commands.patch
patch 1694-drm-amdkfd-Change-x-NULL-false-references-to-x.patch
patch 1695-drm-amdkfd-Fix-goto-usage.patch
patch 1696-drm-amdkfd-Remove-usage-of-alloc-sizeof-struct.patch
patch 1697-drm-amdkfd-Remove-BUG_ONs.patch
patch 1698-drm-amdkfd-Add-missing-headers-due-to-header-reorg.patch
patch 1699-Change-fence-references-to-dma_fence.patch
patch 1700-drm-amdgpu-Adapt-new-invalidate_tlb-to-use-dma_fence.patch
patch 1701-drm-amdkfd-add-some-additional-vega10-pci-ids.patch
patch 1702-drm-amdgpu-Fix-memory-leak-of-vm_fault_info.patch
patch 1703-drm-amdkcl-KFD-4.10-dkms-fix-for-dma_fence.patch
patch 1704-drm-amdkcl-KFD-4.11-dkms-fix-for-4.11-new-added-head.patch
patch 1705-drm-amdgpu-Support-importation-of-DGMA-dma-buffer.patch
patch 1706-drm-amdgpu-Support-DGMA-domain-in-get_dmabuf_info-v2.patch
patch 1707-drm-amdgpu-fix-for-adjust_mc_addr-to-get_vm_pde-rena.patch
patch 1708-drm-amdkfd-fit-for-new-amdgpu_sync_wait-api.patch
patch 1709-drm-amdgpu-Raise-KFD-system-memory-limits-to-15-16.patch
patch 1710-drm-amdgpu-Use-mutex-on-invalidate-tlb-with-MMIO-cod.patch
patch 1711-drm-amdgpu-Use-spin-lock-instead-of-mutex-in-tlb-inv.patch
patch 1712-drm-amdkfd-Print-event-limit-messages-only-once-per-.patch
patch 1713-drm-amdkfd-Add-wavefront-context-save-state-retrieva.patch
patch 1714-drm-amdkfd-Remove-deprecated-open_graphic_handle-ioc.patch
patch 1715-drm-amdkfd-changes-introduced-in-kfd-merge-0486ab510.patch
patch 1716-drm-amdkfd-Deleted-unused-tlb_invalidation_lock.patch
patch 1717-drm-amdgpu-Make-VRAM-ptrace-access-work-for-non-cont.patch
patch 1718-drm-amdkfd-Make-trap-handler-buffer-RO.patch
patch 1719-drm-amdkfd-Reset-process-queues-if-it-VM_FAULTs.patch
patch 1720-drm-amdkfd-Fix-destroy-queue-failure-path.patch
patch 1721-drm-amdkcl-KFD-fit-the-new-amdgpu_copy_buffer-format.patch
patch 1722-drm-amdgpu-Fix-address-mask-in-get_local_mem_info.patch
patch 1723-drm-amdkfd-Fix-destroy_queue_nocpsch-failure-path.patch
patch 1724-drm-amdkfd-Minor-modification-to-error-message.patch
patch 1725-drm-amdgpu-Enable-BAD_OPCODE-intr-for-gfx8-gfx9.patch
patch 1726-drm-amdgpu-Fix-non-contig-ptrace-VRAM-access-crossin.patch
patch 1727-drm-amd-Implement-parallel-memory-mapping-on-mGPUs.patch
patch 1728-Address-code-warnings-style.patch
patch 1729-drm-amdkfd-gfx9-preempt-queues-after-VM_FAULT.patch
patch 1730-drm-amdkfd-Initialize-gfx9-workgroup-state-offset-to.patch
patch 1731-drm-amdgpu-Restore-scalable-VM-size-calculation.patch
patch 1732-drm-amdgpu-Invalidate-tlb-for-all-hubs-on-Rocm-stack.patch
patch 1733-drm-amdkfd-Flush-TLBs-after-syncing-with-page-table-.patch
patch 1734-amd-amdkfd-follow-up-change-for-signal-handling.patch
patch 1735-drm-amdkfd-Support-registering-third-pary-device-mem.patch
patch 1736-drm-amdkfd-Address-kernel-warning.patch
patch 1737-drm-amdgpu-Optimize-page-directory-updates-for-KFD.patch
patch 1738-drm-amdkfd-Handle-MEM_VIOL-in-trap-handler.patch
patch 1739-drm-amdgpu-Rework-ptrace-access-function.patch
patch 1740-drm-amd-Add-mqd-as-parameter-in-kfd2kgd.hqd_destroy-.patch
patch 1741-drm-amdgpu-Clear-active-for-HIQ-in-RLC_CP_SCHEDULER.patch
patch 1742-drm-amdkfd-VF-do-not-need-to-set-Atomic-Ops-on-PCIE-.patch
patch 1743-drm-amdkfd-Reuse-CHIP_-from-amdgpu.patch
patch 1744-drm-amdgpu-Prepare-Raven-for-KFD-Enablement-at-amdgp.patch
patch 1745-drm-amdkfd-Fixed-a-kfifo-adaptation-issue.patch
patch 1746-drm-amdkfd-Fix-preferred_domains-typo-for-kfd-part.patch
patch 1747-drm-amdgpu-Add-support-for-reporting-VRAM-usage.patch
patch 1748-drm-amdkfd-Add-support-for-displaying-VRAM-usage.patch
patch 1749-drm-amdkfd-Prepare-Raven-for-KFD-enablement-at-amdkf.patch
patch 1750-drm-amdkfd-Change-process-lock-back-to-mutex.patch
patch 1751-drm-amdkfd-Simplify-process-locking.patch
patch 1752-drm-amdkfd-remove-not-used-defines-from-cik_regs.h.patch
patch 1753-drm-amdkfd-Allocate-gtt_sa_bitmap-in-long-units.patch
patch 1754-drm-amdkfd-Error-handling-fixes-ported-from-upstream.patch
patch 1755-drm-amdkfd-Fix-doorbell-initialization-and-finalizat.patch
patch 1756-drm-amdkfd-Fix-minor-memory-leak-if-sched_policy-is-.patch
patch 1757-drm-amdkfd-Fix-a-bug-that-process-cleanup-is-not-don.patch
patch 1758-drm-amdkfd-Fix-a-bug-that-vmid-is-released-before-re.patch
patch 1759-drm-amdkfd-Remove-kfd_get_gpu_id.patch
patch 1760-drm-amdkfd-Rename-topology_device_by_nodeid.patch
patch 1761-drm-amdkfd-Improve-topology-error-handling.patch
patch 1762-drm-amdkfd-Cosmetic-changes-to-match-upstream.patch
patch 1763-drm-amdgpu-Remove-unnecessary-warning-message.patch
patch 1764-drm-amdgpu-Fix-recursive-evict-restore-worker-on-a-m.patch
patch 1765-drm-amdgpu-use-cu_info-from-gpu_info-fw-for-gfx9.patch
patch 1766-drm-amdkfd-Fix-bo_va-structure-reference-since-it-ha.patch
patch 1767-drm-amdkfd-Clean-up-process-queue-management.patch
patch 1768-drm-amdkfd-Limit-queue-number-per-process-and-device.patch
patch 1769-drm-amdkfd-Handle-ILLEGAL_INST-in-trap-handler.patch
patch 1770-drm-amdkfd-Temporarily-avoid-resetting-wavefronts-wh.patch
patch 1771-drm-amdgpu-Invalidate-caches-with-KFD-TLB-invalidati.patch
patch 1772-drm-amdgpu-fix-kfd-event-page-unaccessible.patch
patch 1773-drm-amdkfd-fix-CWSR-memory-allocation-sequence.patch
patch 1774-drm-amdgpu-amdkfd-remove-unused-parameter-in-kfd-all.patch
patch 1775-drm-amdkfd-Finetune-the-queue-reset-scenario.patch
patch 1776-drm-amdkfd-Fix-vram_usage-being-removed.patch
patch 1777-drm-amdkfd-Fit-parameter-to-amdgpu_bo_create-in-call.patch
patch 1778-drm-amdkfd-Add-more-error-printing-to-help-bringup.patch
patch 1779-drm-amdgpu-Fix-KFD-initialization-for-multi-GPU-syst.patch
patch 1780-drm-amdkcl-KFD-4.12-Use-kvmalloc_array-free-instead-.patch
patch 1781-Revert-drm-amd-display-move-regamma-from-opp-to-dpp-.patch
patch 1782-Hybrid-Version-17.50.0.13.patch
patch 1783-drm-amdkfd-fix-bug-device-is-not-added-to-supported_.patch
patch 1784-drm-amdgpu-rework-moved-handling-in-the-VM-v2.patch
patch 1785-drm-amdgpu-add-bo_va-cleared-flag-again-v2.patch
patch 1786-drm-amdgpu-fix-comment-on-amdgpu_bo_va.patch
patch 1787-drm-amdgpu-track-evicted-page-tables-v2.patch
patch 1788-drm-amdgpu-rework-page-directory-filling-v2.patch
patch 1789-drm-amdgpu-cleanup-the-VM-code-a-bit-more.patch
patch 1790-drm-amdgpu-fix-new-PD-update-code-for-Vega10-v2.patch
patch 1791-drm-amdgpu-add-support-for-per-VM-BOs-v2.patch
patch 1792-drm-amdgpu-add-IOCTL-interface-for-per-VM-BOs-v3.patch
patch 1793-drm-amdgpu-handle-all-fragment-sizes-v4.patch
patch 1794-drm-amdgpu-fix-moved-list-handling-in-the-VM.patch
patch 1795-drm-amdkfd-Fix-dmesg-error-on-used_memory-on-fjg.patch
patch 1796-drm-amdkfd-Temporarily-disable-KFD-support-on-Raven.patch
patch 1797-Hybrid-Version-17.50.1.13.patch
patch 1798-drm-amdkfd-fix-in-tree-build.patch
patch 1799-drm-amdgpu-revert-fix-deadlock-of-reservation-betwee.patch
patch 1800-drm-amdgpu-Account-for-shadow-PTs-in-mapping-update-.patch
patch 1801-drm-amdgpu-stop-using-BO-status-for-user-pages.patch
patch 1802-drm-amdgpu-use-a-rw_semaphore-for-MMU-notifiers.patch
patch 1803-drm-amdgpu-stop-reserving-the-BO-in-the-MMU-callback.patch
patch 1804-drm-amdgpu-move-amdgpu_cs_sysvm_access_required-into.patch
patch 1805-drm-amdgpu-keep-the-MMU-lock-until-the-update-ends-v.patch
patch 1806-drm-amdgpu-move-amdgpu_ttm_tt_-declarations-into-amd.patch
patch 1807-drm-amdgpu-move-MMU-notifier-related-defines-to-amdg.patch
patch 1808-drm-amdgpu-KFD-Fix-for-amdgpu_mn_get-arguments-chang.patch
patch 1809-drm-amdgpu-fix-VM-sync-with-always-valid-BOs-v2.patch
patch 1810-drm-amdgpu-KFD-Fix-for-using-new-MMU-lock.patch
patch 1811-drm-amdgpu-move-taking-mmap_sem-into-get_user_pages-.patch
patch 1812-drm-amdgpu-KFD-Fix-rw_semaphore-usage.patch
patch 1813-drm-amd-display-fix-gamma-distortion-on-Vega.patch
patch 1814-drm-amd-display-Leave-DCN-config-guard-around-fpu-he.patch
patch 1815-drm-amd-display-Refactor-atomic-check.patch
patch 1816-drm-amdgpu-Remove-unused-flip_flags-from-amdgpu_crtc.patch
patch 1817-Revert-display-patches-temporarily-for-build-passed.patch
patch 1818-drm-amd-powerplay-refine-powerplay-code-for-RV.patch
patch 1819-drm-amdgpu-unify-the-interface-of-amd_pm_funcs.patch
patch 1820-drm-amdgpu-Fix-for-amd_pm_funcs-moved-to-struct-amd_.patch
patch 1821-Revert-drm-amdkfd-Workaround-for-debug-event-not-sig.patch
patch 1822-drm-syncobj-Rename-fence_get-to-find_fence.patch
patch 1823-Hybrid-Version-17.50.2.13.patch
patch 1824-drm-amdgpu-correct-reference-clock-value-on-vega10.patch
patch 1825-drm-amdgpu-Fix-error-handling-in-amdgpu_vm_init.patch
patch 1826-drm-amdgpu-Add-PASID-management.patch
patch 1827-drm-amdgpu-Add-prescreening-stage-in-IH-processing.patch
patch 1828-drm-amd-Closed-hash-table-with-low-overhead.patch
patch 1829-drm-amdgpu-Track-pending-retry-faults-in-IH-and-VM-v.patch
patch 1830-drm-amdgpu-fix-typo-in-si_ih.c.patch
patch 1831-drm-amdgpu-sdma3-Enable-sdma-wptr-polling-for-SRIOV.patch
patch 1832-drm-amdgpu-sdma3-set-wptr-shadow-atomically.patch
patch 1833-drm-amdgpu-fix-checkpatch.pl-warning-to-amdgpu_drv.c.patch
patch 1834-drm-amd-amdgpu-Fold-TTM-debugfs-entries-into-array-v.patch
patch 1835-drm-amd-amdgpu-add-support-for-iova_to_phys-to-repla.patch
patch 1836-drm-amd-amdgpu-remove-usage-of-ttm-trace.patch
patch 1837-drm-amdgpu-Fit-parameter-to-amdgpu_vm_init-in-caller.patch
patch 1838-drm-amd-lib-Support-chash-module-under-amd-lib-for-d.patch
patch 1839-drm-amdkcl-RHEL-6-Skip-iova_to_phys-support-for-rhel.patch
patch 1840-drm-amdgpu-RHEL-6-Use-DEFINE_IDA2-instead-on-rhel6.patch
patch 1841-drm-amdgpu-Add-GPU-reset-functionality-for-Vega10.patch
patch 1842-drm-amdgpu-sriov-fix-missing-error-handling.patch
patch 1843-drm-amdgpu-no-kiq-in-IH.patch
patch 1844-drm-amdgpu-sriov-move-in_reset-to-adev-and-rename.patch
patch 1845-drm-amdgpu-sriov-don-t-load-psp-fw-during-gpu-reset.patch
patch 1846-drm-amdgpu-insert-TMZ_BEGIN.patch
patch 1847-drm-amdgpu-hdp-flush-should-be-put-it-initialized.patch
patch 1848-drm-amdgpu-use-formal-register-to-trigger-hdp-invali.patch
patch 1849-drm-amdgpu-sriov-fix-page-fault-issue-of-driver-unlo.patch
patch 1850-drm-amdgpu-sriov-increate-mailbox-polling-timeout.patch
patch 1851-drm-amdgpu-sriov-init-csb-for-gfxv9.patch
patch 1852-drm-amdgpu-make-ctx_add_fence-interruptible-v2.patch
patch 1853-drm-amdgpu-sriov-fix-memory-leak-after-gpu-reset.patch
patch 1854-drm-amd-amgpu-update-raven-sdma-golden-setting.patch
patch 1855-drm-amd-amgpu-update-vega10-sdma-golden-setting.patch
patch 1856-drm-amd-amdgpu-Partial-revert-of-iova-debugfs.patch
patch 1857-drm-amd-Use-portable-do_div-helper.patch
patch 1858-drm-amd-Avoid-using-x86-specific-_BITOPS_LONG_SHIFT.patch
patch 1859-drm-amdgpu-add-cgs-query-info-of-pci-bus-devfn.patch
patch 1860-drm-amd-powerplay-add-register-thermal-interrupt-in-.patch
patch 1861-drm-amd-powerplay-implement-register-thermal-interru.patch
patch 1862-drm-amd-powerplay-change-alert-temperature-range.patch
patch 1863-drm-amd-amdgpu-add-vega10-raven-mmhub-athub-golden-s.patch
patch 1864-drm-amd-powerplay-refine-phm_register_thermal_interr.patch
patch 1865-drm-amdgpu-Fix-driver-reloading-failure.patch
patch 1866-drm-amdgpu-Fix-a-bug-in-amdgpu_fill_buffer.patch
patch 1867-fixing-compilation-issues-V1.patch
patch 1868-drm-amdgpu-Add-copy_pte_num_dw-member-in-amdgpu_vm_p.patch
patch 1869-drm-amdgpu-halt-when-vm-fault.patch
patch 1870-drm-amdgpu-unmap-KCQ-in-gfx-hw_fini-v2.patch
patch 1871-drm-amdgpu-sriov-alloc-KIQ-MQD-in-VRAM-v2.patch
patch 1872-drm-amdgpu-fix-uvd-ring-fini-routine-v2.patch
patch 1873-drm-amdgpu-fix-firmware-memoryleak-v2.patch
patch 1874-drm-amdgpu-simplify-pinning-into-visible-VRAM.patch
patch 1875-drm-amd-powerplay-refine-interface-in-struct-pp_smum.patch
patch 1876-drm-amd-powerplay-delete-dead-code-in-hwmgr.h.patch
patch 1877-drm-amd-powerplay-refine-powerplay-code.patch
patch 1878-drm-amd-powerplay-use-SMU_IND_INDEX-DATA_11-pair-in-.patch
patch 1879-drm-amd-powerplay-add-new-helper-functions-in-hwmgr..patch
patch 1880-drm-amd-powerplay-move-SMUM_WAIT_INDIRECT_FIELD_UNEQ.patch
patch 1881-drm-amd-powerplay-move-SMUM_WAIT_VFPF_INDIRECT_FIELD.patch
patch 1882-drm-amd-powerplay-move-PHM_WAIT_VFPF_INDIRECT_FIELD-.patch
patch 1883-drm-amd-powerplay-move-macros-to-hwmgr.h.patch
patch 1884-drm-amd-powerplay-delete-SMU_WRITE_INDIRECT_FIELD.patch
patch 1885-drm-amd-powerplay-delete-SMUM_WRITE_FIELD.patch
patch 1886-drm-amd-powerplay-delete-SMUM_WRITE_VFPF_INDIRECT_FI.patch
patch 1887-drm-amd-powerplay-delete-SMUM_READ_VFPF_INDIRECT_FIE.patch
patch 1888-drm-amd-powerplay-delete-SMUM_SET_FIELD.patch
patch 1889-drm-amd-powerplay-delete-SMUM_READ_FIELD.patch
patch 1890-drm-amd-powerplay-delete-SMUM_WAIT_INDIRECT_FIELD.patch
patch 1891-drm-amd-powerplay-delete-SMUM_FIELD_MASK.patch
patch 1892-drm-amd-powerplay-delete-dead-code-in-smumgr.patch
patch 1893-drm-amd-powerplay-fix-copy-error-in-powerplay.patch
patch 1894-dmr-amd-powerplay-Fix-typo-in-ci_populate_fuzzy_fan.patch
patch 1895-drm-amdgpu-powerplay-fix-typo.patch
patch 1896-drm-amd-powerplay-Fix-powerplay-bugs.patch
patch 1897-drm-amdgpu-clarify-license-in-amdgpu_trace_points.c.patch
patch 1898-drm-amdgpu-Add-gem_prime_mmap-support.patch
patch 1899-drm-amd-Fix-typo.patch
patch 1900-drm-amdgpu-Handle-GPUVM-fault-storms.patch
patch 1901-drm-amdgpu-move-common-pm-sysfs-code-to-amdgpu_devic.patch
patch 1902-drm-amdgpu-move-amdgpu_ucode_init_bo-to-amdgpu_devic.patch
patch 1903-drm-amd-powerplay-fix-memory-leak-in-powerplay.patch
patch 1904-drm-amdgpu-delete-dead-code-about-fw-load-check.patch
patch 1905-drm-amdgpu-delete-pp_enable-in-adev.patch
patch 1906-drm-amdgpu-add-cgs-interface-to-register-pp-handle.patch
patch 1907-drm-amdgpu-create-powerplay-by-cgs-interface.patch
patch 1908-drm-amd-powerplay-change-dmesg-log-level-in-powerpla.patch
patch 1909-drm-amdgpu-add-comments-in-struct-amd_pm_funcs-defin.patch
patch 1910-drm-amd-powerplay-export-new-interfaces-in-amd_pm_fu.patch
patch 1911-drm-amdgpu-Add-a-new-flag-for-SR-IOV-to-share-memory.patch
patch 1912-drm-amdgpu-gfx9-implement-wave-VGPR-reading.patch
patch 1913-drm-amdgpu-fix-vf-error-handling.patch
patch 1914-drm-amdgpu-use-multipipe-compute-policy-on-non-PL11-.patch
patch 1915-drm-amdgpu-add-option-for-force-enable-multipipe-pol.patch
patch 1916-drm-amdgpu-map-compute-rings-by-least-recently-used-.patch
patch 1917-amdgpu-don-t-ask-about-CHASH-just-default-it-for-now.patch
patch 1918-amdgpu-powerplay-constify-large-struct.patch
patch 1919-drm-amdgpu-pp-constify-some-powerplay-tables.patch
patch 1920-drm-amdgpu-vega10-static-constify-channel_number.patch
patch 1921-amdgpu-pp-remove-ci_smc-smumgr-split.patch
patch 1922-amdgpu-pp-move-PhwVega10_Magic-to-static-const.patch
patch 1923-amdgpu-pp-move-amdgpu_fuses_default-into-static-cons.patch
patch 1924-amdgpu-pp-slim-down-the-pwr-virus-tables.patch
patch 1925-drm-amdgpu-use-designated-initialiser-for-thermal_ir.patch
patch 1926-amdgpu-pp-reduce-size-of-vega10_fuses_default.patch
patch 1927-drm-amd-powerplay-fix-spelling-mistake-dividable-div.patch
patch 1928-drm-amd-powerplay-export-new-smu-interface-to-hwmgr.patch
patch 1929-drm-amd-powerplay-refine-code-in-amd_powerplay.c.patch
patch 1930-drm-amd-powerplay-tidy-up-ret-checks-in-amd_powerpla.patch
patch 1931-drm-amd-powerplay-move-set_clockgating_by_smu-to-pp-.patch
patch 1932-drm-amdgpu-move-DC-and-PP-shared-data-structures-to-.patch
patch 1933-drm-amd-powerplay-move-functions-to-amd_pm_funcs-tab.patch
patch 1934-drm-amd-powerplay-delete-flag-PP_VALID.patch
patch 1935-Revert-drm-amd-powerplay-export-new-smu-interface-to.patch
patch 1936-amdgfx-gfx-don-t-use-static-objects-for-ce-de-meta.-.patch
patch 1937-amdgpu-pp-use-array_size-to-size-the-pwrvirus-tables.patch
patch 1938-amdgpu-pp-constify-soft_dummy_pp_table.patch
patch 1939-amdgpu-soc15-make-the-pcie-index-data-registers-cons.patch
patch 1940-amdgpu-nbio-use-constant-nbio_hdp_flush_reg-structs.patch
patch 1941-amdgpu-pp-rewrite-polaris-pwrvirus-upload-code.patch
patch 1942-amdgpu-pp-rewrite-fiji-pwr-virus-upload-code.patch
patch 1943-drm-amdgpu-Fixed-a-potential-circular-lock.patch
patch 1944-drm-amd-powerplay-fix-a-logic-error-in-pp_hw_init.patch
patch 1945-drm-amd-powerplay-fix-ret-checks-in-amd_powerplay.c.patch
patch 1946-drm-amdgpu-add-uvd-enc-registers-in-header.patch
patch 1947-drm-amdgpu-add-uvd-enc-command-in-header.patch
patch 1948-drm-amdgpu-add-new-uvd-enc-ring-methods.patch
patch 1949-drm-amdgpu-add-uvd-enc-rings.patch
patch 1950-drm-amdgpu-add-uvd-enc-into-run-queue.patch
patch 1951-drm-amdgpu-add-uvd-enc-vm-functions.patch
patch 1952-drm-amdgpu-add-uvd-enc-ring-test.patch
patch 1953-drm-amdgpu-add-uvd-enc-ib-test.patch
patch 1954-drm-amdgpu-add-uvd-enc-irq.patch
patch 1955-drm-amdgpu-minor-coding-style-fix.patch
patch 1956-drm-amdgpu-clear-build-warning.patch
patch 1957-drm-amd-sched-rename-amd_sched_entity_pop_job.patch
patch 1958-drm-amd-sched-fix-an-outdated-comment.patch
patch 1959-drm-amd-sched-move-adding-finish-callback-to-amd_sch.patch
patch 1960-drm-amd-sched-NULL-out-the-s_fence-field-after-run_j.patch
patch 1961-drm-amd-sched-fix-deadlock-caused-by-unsignaled-fenc.patch
patch 1962-drm-amdgpu-move-struct-amd_powerplay-to-amdgpu.h.patch
patch 1963-drm-amdgpu-add-header-kgd_pp_interface.h.patch
patch 1964-drm-amd-powerplay-fix-ret-checks-in-amd_powerplay.c.patch
patch 1965-drm-amdgpu-Set-the-correct-value-for-PDEs-PTEs-of-AT.patch
patch 1966-drm-amdgpu-Reserve-shared-memory-on-VRAM-for-SR-IOV.patch
patch 1967-drm-amdgpu-add-VM-support-for-huge-pages-v2.patch
patch 1968-drm-amdgpu-Don-t-add-KFD-eviction-fence-to-DGMA-BOs.patch
patch 1969-drm-amdgpu-add-FENCE_TO_HANDLE-ioctl-that-returns-sy.patch
patch 1970-drm-amdgpu-add-helper-to-convert-a-ttm-bo-to-amdgpu_.patch
patch 1971-drm-amdgpu-introduce-AMDGPU_GEM_CREATE_EXPLICIT_SYNC.patch
patch 1972-drm-amdgpu-add-parameter-to-allocate-high-priority-c.patch
patch 1973-drm-amdgpu-add-framework-for-HW-specific-priority-se.patch
patch 1974-drm-amdgpu-implement-ring-set_priority-for-gfx_v8-co.patch
patch 1975-fixing-the-compilation-issues-v2.patch
patch 1976-drm-amdgpu-make-amdgpu_to_sched_priority-detect-inva.patch
patch 1977-drm-amd-sched-allow-clients-to-edit-an-entity-s-rq-v.patch
patch 1978-drm-amdgpu-introduce-AMDGPU_CTX_PRIORITY_UNSET.patch
patch 1979-drm-amdgpu-add-plumbing-for-ctx-priority-changes-v2.patch
patch 1980-drm-amdgpu-add-interface-for-editing-a-foreign-proce.patch
patch 1981-Fixes-compilation-issues-v2.patch
patch 1982-drm-amdgpu-bump-version-for-new-AMDGPU_SCHED-ioctl.patch
patch 1983-drm-amd-powerplay-get-the-temperature-on-CZ.patch
patch 1984-drm-amd-pp-export-new-smu-messages-for-vega10.patch
patch 1985-drm-amd-pp-add-new-function-point-in-hwmgr.patch
patch 1986-drm-amd-pp-implement-function-notify_cac_buffer_info.patch
patch 1987-drm-amd-pp-implement-function-notify_cac_buffer_info.patch
patch 1988-drm-amdgpu-add-new-pp-function-point-notify_smu_memo.patch
patch 1989-drm-amd-pp-implement-notify_smu_memory_info-on-Power.patch
patch 1990-drm-amd-pp-delete-an-outdated-comment-in-amd_powerpl.patch
patch 1991-drm-amd-pp-move-common-function-to-smu7_smumgr.c.patch
patch 1992-drm-amdgpu-refine-code-delete-duplicated-error-handl.patch
patch 1993-drm-amd-pp-rename-ci_smc.c-to-ci_smumgr.c.patch
patch 1994-drm-amd-pp-remove-fiji_smc-smumgr-split.patch
patch 1995-drm-amd-pp-remove-iceland_smc-smumgr-split.patch
patch 1996-drm-amd-pp-remove-tonga_smc-smumgr-split.patch
patch 1997-drm-amd-pp-remove-polaris10_smc-smumgr-split.patch
patch 1998-drm-amdgpu-make-function-uvd_v6_0_enc_get_destroy_ms.patch
patch 1999-drm-amdgpu-Refactor-amdgpu_cs_ib_vm_chunk-and-amdgpu.patch
patch 2000-drm-amdgpu-Move-old-fence-waiting-before-reservation.patch
patch 2001-drm-amdgpu-SR-IOV-data-exchange-between-PF-VF.patch
patch 2002-drm-amdgpu-partial-revert-VRAM-lost-handling-v2.patch
patch 2003-drm-amdgpu-keep-copy-of-VRAM-lost-counter-in-job.patch
patch 2004-drm-amdgpu-move-the-VRAM-lost-counter-per-context.patch
patch 2005-drm-amdgpu-set-ECANCELED-when-dropping-jobs.patch
patch 2006-drm-amdgpu-add-VRAM-lost-query.patch
patch 2007-drm-amdgpu-Fix-extra-call-to-amdgpu_ctx_put.patch
patch 2008-drm-amdgpu-Refactor-amdgpu_move_blit.patch
patch 2009-drm-amdgpu-Add-amdgpu_find_mm_node.patch
patch 2010-drm-amd-sched-fix-job-tear-down-order-v2.patch
patch 2011-drm-amdgpu-minor-CS-optimization.patch
patch 2012-drm-amdgpu-bump-version-for-vram-lost-counter-query-.patch
patch 2013-drm-amdgpu-reserve-root-PD-while-releasing-it.patch
patch 2014-drm-amdgpu-rename-context-priority-levels.patch
patch 2015-drm-amdgpu-use-ARRAY_SIZE.patch
patch 2016-drm-amd-powerplay-Tidy-up-cz_start_dpm.patch
patch 2017-drm-amd-powerplay-Tidy-up-cz_dpm_powerdown_uvd.patch
patch 2018-drm-amd-powerplay-Tidy-up-cz_dpm_powerup_uvd.patch
patch 2019-drm-amd-powerplay-Tidy-up-cz_dpm_update_uvd_dpm.patch
patch 2020-drm-amd-powerplay-Tidy-up-cz_dpm_update_vce_dpm.patch
patch 2021-drm-amd-powerplay-Tidy-up-cz_dpm_powerdown_vce.patch
patch 2022-drm-amd-powerplay-Tidy-up-cz_dpm_powerup_vce.patch
patch 2023-drm-amdgpu-fix-regresstion-on-SR-IOV-gpu-reset-faile.patch
patch 2024-drm-amdgpu-reduce-wb-to-512-slot.patch
patch 2025-drm-amdgpu-fix-duplicated-setting-job-s-vram_lost.patch
patch 2026-drm-amdgpu-don-t-check-soft_reset-for-sriov.patch
patch 2027-drm-amdgpu-report-more-amdgpu_fence_info.patch
patch 2028-drm-amdgpu-busywait-KIQ-register-accessing-v4.patch
patch 2029-drm-amd-pp-thermal-control-not-enabled-on-vega10.patch
patch 2030-drm-amd-pp-Fix-overflow-when-setup-decf-pix-disp-dpm.patch
patch 2031-drm-amdgpu-linear-validate-first-then-bind-to-GART.patch
patch 2032-drm-amdgpu-allow-GTT-overcommit-during-bind.patch
patch 2033-drm-amdkfd-Fix-to-use-kiq.ring_lock-instead-of-kiq.r.patch
patch 2034-drm-amdgpu-fix-kernel-hang-when-starting-VNC-server.patch
patch 2035-drm-amdgpu-correct-reference-clock-value-on-vega10.patch
patch 2036-drm-amdkfd-Relaxed-mm_access-for-CMA.patch
patch 2037-drm-amdgpu-merge-bios-post-checking-functions.patch
patch 2038-drm-amdgpu-sriov-now-must-reinit-psp.patch
patch 2039-drm-amdgpu-fix-vf_error_put.patch
patch 2040-drm-amdgpu-fix-wb_clear.patch
patch 2041-drm-amd-powerplay-Don-t-cast-kzalloc-return-value.patch
patch 2042-drm-amd-powerplay-Remove-useless-variable.patch
patch 2043-drm-amd-powerplay-Place-the-constant-on-the-right-si.patch
patch 2044-drm-amd-powerplay-add-one-smc-message-for-Vega10.patch
patch 2045-drm-amd-powerplay-fix-performance-drop-on-Vega10.patch
patch 2046-drm-amdgpu-Avoid-accessing-job-entity-after-the-job-.patch
patch 2047-drm-amd-powerplay-retrieve-the-real-time-coreClock-v.patch
patch 2048-drm-amdgpu-psp-prevent-page-fault-by-checking-write_.patch
patch 2049-drm-amdgpu-delete-duplicated-code.patch
patch 2050-drm-amdgpu-cleanup-force_completion.patch
patch 2051-drm-amdgpu-add-hang_limit-for-sched-v2.patch
patch 2052-drm-amd-scheduler-introduce-guilty-pointer-member.patch
patch 2053-drm-amdgpu-pass-ctx-guilty-address-to-entity-init.patch
patch 2054-drm-amdgpu-skip-job-for-guilty-ctx-in-parser_init.patch
patch 2055-drm-amdgpu-cleanup-job-reset-routine-v2.patch
patch 2056-drm-amd-scheduler-fix-duplicate-operation-in-entity-.patch
patch 2057-drm-amdgpu-minor-cleanup-for-amdgpu_ttm_bind.patch
patch 2058-drm-amdgpu-don-t-flush-the-TLB-before-initializing-G.patch
patch 2059-drm-amdgpu-Add-SPSC-queue-to-scheduler.patch
patch 2060-drm-amdgpu-Fix-deadlock-during-GPU-reset.patch
patch 2061-Revert-drm-amdkfd-Relaxed-mm_access-for-CMA.patch
patch 2062-drm-amdgpu-don-t-change-ctx-reset_couner-upon-query.patch
patch 2063-drm-amdgpu-implement-ctx-query2.patch
patch 2064-drm-amdgpu-psp-Use-p-for-printing-pointers.patch
patch 2065-drm-amd-amdgpu-Remove-workaround-check-for-UVD6-on-A.patch
patch 2066-drm-amd-amdgpu-Remove-workaround-for-suspend-resume-.patch
patch 2067-drm-amdgpu-Remove-job-s_entity-to-avoid-keeping-refe.patch
patch 2068-drm-amdgpu-change-redundant-init-logs-to-debug-level.patch
patch 2069-drm-amdgpu-avoid-soft-lockup-when-waiting-for-RLC-se.patch
patch 2070-drm-amdgpu-virt-add-function-to-check-MMIO-v2.patch
patch 2071-drm-amdgpu-virt-add-wait_reset-virt-ops.patch
patch 2072-drm-amdkfd-Relaxed-mm_access-for-CMA.patch
patch 2073-Revert-drm-amdgpu-add-option-for-force-enable-multip.patch
patch 2074-Compilation-issue-fixes-v3.patch
patch 2075-Revert-drm-amdgpu-use-multipipe-compute-policy-on-no.patch
patch 2076-drm-amd-powerplay-describe-the-PCIE-link-speed-in-ri.patch
patch 2077-drm-amdgpu-virt-implement-wait_reset-callbacks-for-v.patch
patch 2078-drm-amdgpu-retry-init-if-it-fails-due-to-exclusive-m.patch
patch 2079-drm-amdgpu-use-the-actual-placement-for-pin-accounti.patch
patch 2080-drm-amdgpu-fix-pin-domain-compatibility-check.patch
patch 2081-drm-amdgpu-don-t-wait-interruptible-while-binding-GA.patch
patch 2082-drm-amdgpu-fix-indentation-in-amdgpu_display.h.patch
patch 2083-drm-amdgpu-remove-extra-parameter-from-amdgpu_ttm_bi.patch
patch 2084-drm-amd-powerplay-change-ASIC-temperature-reading-on.patch
patch 2085-amd-scheduler-imple-job-skip-feature-v3.patch
patch 2086-drm-amdgpu-implement-new-GPU-recover-v3.patch
patch 2087-drm-amdgpu-cleanup-in_sriov_reset-and-lock_reset.patch
patch 2088-drm-amdgpu-cleanup-ucode_init_bo.patch
patch 2089-drm-amdgpu-sriov-fix-memory-leak-in-psp_load_fw.patch
patch 2090-drm-amdgpu-nuke-amdgpu_ttm_is_bound-v2.patch
patch 2091-drm-amdgpu-move-GART-recovery-into-GTT-manager-v2.patch
patch 2092-drm-amdgpu-return-error-when-sriov-access-requests-g.patch
patch 2093-drm-amdgpu-retry-init-if-exclusive-mode-request-is-f.patch
patch 2094-drm-amdgpu-fix-error-handling-in-amdgpu_bo_do_create.patch
patch 2095-drm-radeon-fix-atombios-on-big-endian.patch
patch 2096-drm-amdgpu-add-fw-vram-usage-for-atomfirmware.patch
patch 2097-drm-amd-powerplay-fix-memory-leak-of-hardcoded-pptab.patch
patch 2098-drm-amd-powerplay-wrong-control-mode-cause-the-fan-s.patch
patch 2099-drm-amdkfd-Fix-for-amdgpu_ttm_bind-parameter-removed.patch
patch 2100-drm-amdgpu-always-bind-pinned-BOs.patch
patch 2101-drm-amdkfd-Init-evict-restore-work-before-allocating.patch
patch 2102-drm-amdgpu-refine-SR-IOV-firmware-VRAM-reservation-t.patch
patch 2103-Revert-drm-amd-scheduler-fix-duplicate-operation-in-.patch
patch 2104-drm-amdkfd-Re-locate-switch-power-profile-to-match-k.patch
patch 2105-drm-amdkfd-Initialize-kfd-allocated-VRAM-buffer-to-0.patch
patch 2106-drm-amdgpu-Save-KFD-VM-fault-info-outside-of-prink_r.patch
patch 2107-drm-amdkfd-Remove-indiscriminate-resetting-of-queues.patch
patch 2108-drm-amdkfd-Make-unmapping-of-static-queues-condition.patch
patch 2109-drm-amdkfd-Fix-scheduler-race-in-kfd_wait_on_events-.patch
patch 2110-drm-amdkfd-Clean-up-kfd_wait_on_events.patch
patch 2111-Revert-drm-amdkfd-Temporarily-disable-KFD-support-on.patch
patch 2112-drm-amdkfd-Fixed-a-unit-convert-error.patch
patch 2113-drm-amdkfd-Fix-event-destruction-with-pending-waiter.patch
patch 2114-drm-amdkfd-remove-redundant-kfd_event_waiter.input_i.patch
patch 2115-drm-amdkfd-Use-wait_queue_t-to-implement-event-waiti.patch
patch 2116-drm-amdkfd-Simplify-events-page-allocator.patch
patch 2117-drm-amdkfd-Simplify-event-ID-and-signal-slot-managem.patch
patch 2118-drm-amdkfd-Update-wait_queue-references.patch
patch 2119-drm-amdkfd-Fix-compiler-warning.patch
patch 2120-drm-amdkfd-Add-PASID-management-for-gfxv9-in-accord-.patch
patch 2121-drm-amdkfd-Separate-doorbell-allocation-from-PASID.patch
patch 2122-drm-amdkfd-Use-PASID-manager-from-KGD.patch
patch 2123-drm-amdkfd-Fix-signal-handling-performance-regressio.patch
patch 2124-drm-amdkfd-Use-IH-context-ID-for-signal-lookup.patch
patch 2125-drm-amdkfd-Turn-expected-errors-into-debug-messages.patch
patch 2126-drm-amdgpu-Turn-expected-errors-into-debug-messages.patch
patch 2127-drm-amdgpu-Fix-CMA.patch
patch 2128-drm-amdkfd-Fix-a-logical-error-in-calculating-SDMA-e.patch
patch 2129-drm-amdkfd-Get-SDMA-engine-number-from-amdgpu-and-re.patch
patch 2130-drm-amdgpu-Sync-KFD-fence-only-for-move-evict.patch
patch 2131-drm-amdkfd-fix-hang-issue-if-KFD-memory-failed-to-re.patch
patch 2132-drm-amdkfd-remove-unused-label-to-get-rid-of-warning.patch
patch 2133-drm-amdkfd-Reconcile-KFD-with-upstreamed-changes.patch
patch 2134-drm-amdgpu-Fix-TLB-flushing-via-KIQ.patch
patch 2135-drm-amdgpu-Fix-wait-loop-in-kgd_hqd_sdma_load-functi.patch
patch 2136-drm-amdgpu-inline-__map_bo_to_kernel.patch
patch 2137-drm-amdgpu-Remove-eviction-fence-from-pinned-BOs.patch
patch 2138-drm-amdgpu-Share-DRM-render-device-minor-with-kfd.patch
patch 2139-drm-amdkfd-Populate-DRM-render-device-minor.patch
patch 2140-drm-amdgpu-virt-don-t-dereference-undefined-module-s.patch
patch 2141-drm-amdgpu-switch-to-use-new-SOC15-reg-read-write-ma.patch
patch 2142-drm-amdgpu-rename-amdgpu_ttm_bind-to-amdgpu_ttm_allo.patch
patch 2143-drm-amdgpu-don-t-use-ttm_bo_move_ttm-in-amdgpu_ttm_b.patch
patch 2144-drm-amd-amdgpu-Enabling-ACP-clock-in-hw_init-v2.patch
patch 2145-drm-amd-amdgpu-fix-evicted-VRAM-bo-adjudgement-condi.patch
patch 2146-drm-amd-powerplay-suppress-KASAN-out-of-bounds-warni.patch
patch 2147-drm-amd-powerplay-initialize-a-variable-before-using.patch
patch 2148-drm-amdkfd-initialise-kfd-inside-amdgpu_device_init.patch
patch 2149-drm-amdgpu-release-exclusive-mode-after-hw_init.patch
patch 2150-drm-amdgpu-use-irq-safe-lock-for-kiq-ring_lock.patch
patch 2151-drm-amdkfd-Fix-allocated_queues-bitmap-initializatio.patch
patch 2152-drm-amdgpu-use-multipipe-compute-policy-on-non-PL11-.patch
patch 2153-drm-amdgpu-add-option-for-force-enable-multipipe-pol.patch
patch 2154-drm-amdgpu-read-VRAMLOST-from-gim.patch
patch 2155-drm-amdgpu-bypass-lru-touch-for-KIQ-ring-submission.patch
patch 2156-drm-amdgpu-fix-gpu-recover-missing-skipping-v2.patch
patch 2157-drm-amdgpu-Potential-uninitialized-variable-in-amdgp.patch
patch 2158-drm-amdgpu-Remove-check-which-is-not-valid-for-certa.patch
patch 2159-drm-amdgpu-Fix-null-pointer-issue-in-amdgpu_cs_wait_.patch
patch 2160-drm-amd-powerplay-fix-copy-n-paste-error-on-vddci_bu.patch
patch 2161-drm-amd-scheduler-fix-page-protection-of-cb.patch
patch 2162-drm-amd-scheduler-add-WARN_ON-for-s_fence-parent.patch
patch 2163-drm-amdgpu-Add-common-golden-settings-for-GFX9.patch
patch 2164-drm-amdgpu-gfx8-Fix-compute-ring-failure-after-reset.patch
patch 2165-drm-amdkfd-Extend-peer_memory_client-to-support-MLNX.patch
patch 2166-Hybrid-Version-18.10.0.13.patch
patch 2167-Revert-Hybrid-Version-18.10.0.13.patch
patch 2168-Hybrid-Version-18.10.1.13.patch
patch 2169-drm-amd-pp-fix-dpm-randomly-failed-on-Vega10.patch
patch 2170-drm-amd-amdgpu-if-visible-VRAM-allocation-fail-fall-.patch
patch 2171-drm-amdgpu-use-dep_sync-for-CS-dependency-syncobj.patch
patch 2172-drm-amdgpu-remove-nonsense-const-u32-cast-on-ARRAY_S.patch
patch 2173-drm-amdgpu-cleanup-vm_size-handling.patch
patch 2174-drm-amdgpu-make-AMDGPU_VA_RESERVED_SIZE-64bit.patch
patch 2175-drm-amd-amdgpu-Fix-wave-mask-in-amdgpu_debugfs_wave_.patch
patch 2176-drm-amdgpu-Implement-BO-size-validation-V2.patch
patch 2177-drm-amd-amdgpu-fix-UVD-mc-offsets.patch
patch 2178-drm-amdgpu-virt-remove-redundant-variable-pf2vf_ver.patch
patch 2179-drm-amdgpu-Properly-allocate-VM-invalidate-eng-v2.patch
patch 2180-drm-amdgpu-gfx7-cache-raster_config-values.patch
patch 2181-drm-amdgpu-gfx8-use-cached-values-for-raster-config-.patch
patch 2182-drm-amdgpu-gfx7-use-cached-values-for-raster-config-.patch
patch 2183-drm-amdgpu-gfx6-use-cached-values-for-raster-config-.patch
patch 2184-drm-amdgpu-set-f_mapping-on-exported-DMA-bufs.patch
patch 2185-drm-amdgpu-New-header-for-fields-needed-to-determine.patch
patch 2186-drm-amdgpu-Add-ability-to-determine-and-report-if-bo.patch
patch 2187-drm-amdkfd-Remove-BOs-mmapping-from-kfd.patch
patch 2188-drm-amdkfd-Make-event-limit-dependent-on-user-mode-m.patch
patch 2189-drm-amdkfd-Set-local-memory-size-to-0-on-Raven.patch
patch 2190-drm-amdkfd-Add-crash-protection-in-debugger-register.patch
patch 2191-drm-amdkfd-Fix-a-bug-causing-CP-hang-at-process-exit.patch
patch 2192-drm-amdgpu-Share-eviction-fence-with-KFD.patch
patch 2193-drm-amdkfd-Fix-debugfs-dumping-of-KFD-HQDs.patch
patch 2194-drm-amdkfd-Add-module-parameter-priv_cp_queues.patch
patch 2195-drm-amdgpu-handle-foreign-BOs-in-the-VM-mapping.patch
patch 2196-Revert-drm-amdkfd-Make-event-limit-dependent-on-user.patch
patch 2197-drm-amdgpu-fixed-VM-tests-failure-on-redhat6-7.patch
patch 2198-drm-amdgpu-fix-userptr-put_page-handling.patch
patch 2199-drm-amdkfd-Fix-kfd_ioctl_dbg_address_watch-in-accord.patch
patch 2200-drm-amdkfd-Cleanup-init_scheduler-in-accord-with-kfd.patch
patch 2201-drm-amdkfd-Use-DECLARE_BITMAP.patch
patch 2202-drm-amd-amdgpu-fix-over-bound-accessing-in-amdgpu_cs.patch
patch 2203-amdgpu-Don-t-use-DRM_ERROR-when-failing-to-allocate-.patch
patch 2204-drm-amdgpu-cleanup-stolen-vga-memory-finish.patch
patch 2205-drm-amdgpu-cleanup-GMC-gart-garbage-function.patch
patch 2206-drm-amdgpu-fix-NULL-pointer-access-during-drv-remove.patch
patch 2207-drm-amdgpu-fix-memleak-in-takedown.patch
patch 2208-drm-amdgpu-cleanup-unused-stack-var.patch
patch 2209-drm-amdgpu-free-CSA-in-unified-place.patch
patch 2210-drm-amdgpu-cleanup-firmware.fw_buf-alloc-free.patch
patch 2211-drm-amdgpu-fix-memleak.patch
patch 2212-drm-amdgpu-show-error-message-if-fail-on-event4.patch
patch 2213-compilation-issues-resolved-v5.patch
patch 2214-drm-amdgpu-cancel-timer-of-virtual-DCE-v2.patch
patch 2215-drm-amd-powerplay-fix-unfreeze-level-smc-message-for.patch
patch 2216-drm-amdgpu-always-make-gart.table_addr-64bit.patch
patch 2217-drm-amdgpu-gmc9-make-some-ECC-messages-debug-only.patch
patch 2218-drm-amd-pp-fix-typecast-error-in-powerplay.patch
patch 2219-drm-amdgpu-remove-VRAM-size-reduction-v2.patch
patch 2220-drm-amdgpu-align-GTT-start-to-4GB-v2.patch
patch 2221-drm-amdgpu-fix-VCE-buffer-placement-restrictions-v2.patch
patch 2222-drm-amdgpu-fix-rmmod-KCQ-disable-failed-error.patch
patch 2223-correct-vce-fw-data-and-stack-size-config.patch
patch 2224-drm-amdgpu-don-t-skip-attributes-when-powerplay-is-e.patch
patch 2225-drm-amd-powerplay-Minor-fixes-in-processpptables.c-v.patch
patch 2226-drm-amd-powerplay-Fix-missing-newlines-at-end-of-fil.patch
patch 2227-drm-amd-amdgpu-Fix-missing-null-check-in-atombios_i2.patch
patch 2228-drm-amd-powerplay-Fix-buffer-overflows-with-mc_reg_a.patch
patch 2229-drm-amd-powerplay-Followup-fixes-to-mc_reg_address.patch
patch 2230-drm-amdgpu-move-UVD-VCE-and-VCN-structure-out-from-u.patch
patch 2231-drm-amdgpu-used-cached-gca-values-for-cik_read_regis.patch
patch 2232-drm-ttm-add-operation-ctx-to-ttm_bo_validate-v2.patch
patch 2233-drm-ttm-use-an-operation-ctx-for-ttm_bo_init_reserve.patch
patch 2234-drm-ttm-use-an-operation-context-for-ttm_bo_mem_spac.patch
patch 2235-drm-ttm-add-context-to-driver-move-callback-as-well.patch
patch 2236-drm-amdgpu-forward-operation-context-to-ttm_bo_mem_s.patch
patch 2237-drm-amdgpu-use-the-new-TTM-bytes-moved-counter-v2.patch
patch 2238-drm-amdgpu-fix-VA-hole-handling-on-Vega10-v3.patch
patch 2239-drm-amdgpu-use-dev_dbg-instead-of-dev_err-in-the-VA-.patch
patch 2240-drm-amdgpu-expose-the-VA-above-the-hole-to-userspace.patch
patch 2241-drm-amdgpu-Use-unsigned-ring-indices-in-amdgpu_queue.patch
patch 2242-resolved-the-compilation-issues-v4.patch
patch 2243-drm-amdgpu-Downgrade-DRM_ERROR-to-DRM_DEBUG-in-amdgp.patch
patch 2244-drm-amdkfd-Fix-parameter-changes-of-ttm_bo_validate-.patch
patch 2245-drm-amdgpu-partially-revert-1cfd8e237f0318e330190ac2.patch
patch 2246-drm-amd-include-cleanup-vega10-sdma0-1-header-files.patch
patch 2247-drm-amd-include-cleanup-vega10-hdp-header-files.patch
patch 2248-drm-amd-include-cleanup-vega10-mp-header-files.patch
patch 2249-drm-amd-include-cleanup-vega10-athub-header-files.patch
patch 2250-drm-amd-include-cleanup-vega10-thm-header-files.patch
patch 2251-drm-amd-include-cleanup-vega10-umc-header-files.patch
patch 2252-drm-amd-include-cleanup-vega10-dce-header-files.patch
patch 2253-drm-amd-include-cleanup-vega10-uvd-header-files.patch
patch 2254-drm-amd-include-cleanup-vega10-vce-header-files.patch
patch 2255-drm-amd-include-cleanup-vega10-gc-header-files.patch
patch 2256-drm-amd-include-cleanup-vega10-mmhub-header-files.patch
patch 2257-drm-amd-include-cleanup-vega10-nbio-header-files.patch
patch 2258-drm-amd-include-cleanup-vega10-nbif-header-files.patch
patch 2259-drm-amd-include-cleanup-vega10-smuio-header-files.patch
patch 2260-drm-amd-include-cleanup-vega10-osssys-header-files.patch
patch 2261-drm-amd-include-cleanup-vega10-header-files.patch
patch 2262-drm-amd-include-cleanup-raven1-sdma-header-files.patch
patch 2263-drm-amd-include-cleanup-raven1-dcn-header-files.patch
patch 2264-drm-amd-include-cleanup-raven1-gc-header-files.patch
patch 2265-drm-amd-include-cleanup-raven1-mmhub-header-files.patch
patch 2266-drm-amd-include-cleanup-raven1-mp-header-files.patch
patch 2267-drm-amd-include-cleanup-raven1-nbio-header-files.patch
patch 2268-drm-amd-include-cleanup-raven1-thm-header-files.patch
patch 2269-drm-amd-include-cleanup-raven1-vcn-header-files.patch
patch 2270-Revert-Revert-drm-amd-display-Switch-to-DRM-helpers-.patch
patch 2271-Revert-Revert-drm-amd-display-Release-cached-atomic-.patch
patch 2272-drm-amd-display-fix-gamma-distortion-on-Vega.patch
patch 2273-drm-amd-display-Use-atomic-types-for-ref_count.patch
patch 2274-drm-amd-display-add-display-write-back-DWB.patch
patch 2275-drm-amd-display-change-bw_dceip-and-bw_vbios-into-po.patch
patch 2276-drm-amd-display-Add-comment-explaining-context-free.patch
patch 2277-drm-amd-display-change-dcn_ip-and-dcn_soc-into-point.patch
patch 2278-drm-amd-display-fix-eDP-bootup-S4-backlight-on.patch
patch 2279-drm-amd-display-Use-function-pointer-for-update_plan.patch
patch 2280-drm-amd-display-Flattening-core_dc-to-dc.patch
patch 2281-drm-amd-display-Use-MAX_PIPES-for-DTO-reg-arrays.patch
patch 2282-drm-amd-display-blank-otg-before-power-gate-front-en.patch
patch 2283-drm-amd-display-eDP-power-sequence-T9-fail.patch
patch 2284-drm-amd-display-Leave-DCN-config-guard-around-fpu-he.patch
patch 2285-drm-amd-display-Fix-FBC-compilation.patch
patch 2286-drm-amd-display-remove-fake-address-reporting-when-b.patch
patch 2287-drm-amd-display-move-vm-registers-to-hwsequencer.patch
patch 2288-drm-amd-display-Implement-HDMI-retimer-settings-for-.patch
patch 2289-drm-amd-display-refactor-pplib-smu-communication.patch
patch 2290-drm-amd-display-Per-stream-validate_context-build-v2.patch
patch 2291-drm-amd-display-increase-polling-interval-for-fbc-st.patch
patch 2292-drm-amd-display-fix-not-enter-exit-PSR-with-latest-d.patch
patch 2293-drm-amd-display-Log-OTG-registers-with-dcn10-hw-stat.patch
patch 2294-drm-amd-display-Fix-FBC-disable-for-stereo.patch
patch 2295-drm-amd-display-separate-scl-functions-out-from-dcn1.patch
patch 2296-drm-amd-display-Cache-edp-config-in-dc-link.patch
patch 2297-drm-amd-display-re-enable-audio-after-LT-test.patch
patch 2298-drm-amd-display-separate-cm-functions-out-from-dcn10.patch
patch 2299-drm-amd-display-Fix-two-MST-not-light-up-regressions.patch
patch 2300-drm-amd-display-Disable-stutter-for-Raven.patch
patch 2301-drm-amd-display-Remove-unnecessary-assignemnt.patch
patch 2302-drm-amd-display-fix-hubp-mpcc-and-opp-tracking.patch
patch 2303-drm-amd-display-Fixed-mpc-add-enable-always-scaler-f.patch
patch 2304-drm-amd-display-cleanup-naming-of-DCN-DPP-functions.patch
patch 2305-drm-amd-display-memory-leak-dwb.patch
patch 2306-drm-amd-display-dc-Remove-unneeded-includes-in-DCN.patch
patch 2307-drm-amd-display-Enable-double-buffer-when-unblank-cr.patch
patch 2308-drm-amd-display-version-3.1.01.patch
patch 2309-drm-amd-display-write-dpcd-0x600-to-2-for-DP-eDP-whe.patch
patch 2310-drm-amd-display-retire-dm_pp_apply_clock_for_voltage.patch
patch 2311-drm-amd-display-Change-log-level-for-DCN-powergattin.patch
patch 2312-drm-amd-display-retry-LT-on-failing-LT-in-automated-.patch
patch 2313-drm-amd-display-Remove-unneeded-code.patch
patch 2314-drm-amd-display-Remove-old-misleading-comment.patch
patch 2315-drm-amd-display-Stop-including-atomfimrwareid.h-dire.patch
patch 2316-drm-amd-display-Fix-return-value-from-rx-irq-handler.patch
patch 2317-drm-amd-display-Safe-stream-encoder-id-in-stream_sta.patch
patch 2318-drm-amd-display-Block-6Ghz-timing-if-SBIOS-set-HDMI_.patch
patch 2319-drm-amd-display-Per-plane-validation-context-build.patch
patch 2320-drm-amd-display-Refactor-atomic-check.patch
patch 2321-drm-amd-display-Clean-up-flattening-core_dc-to-dc.patch
patch 2322-drm-amd-display-do-not-reset-lane-count-in-EQ-fallba.patch
patch 2323-drm-amd-display-work-around-for-8k-sleep-crash.patch
patch 2324-drm-amd-display-Use-DRM-provided-page-flip-flag.patch
patch 2325-drm-amd-display-Fix-MST-downstream-display-not-light.patch
patch 2326-drm-amd-display-Update-DSCL.patch
patch 2327-drm-amd-display-move-cm-registers-from-ipp-to-dpp_cm.patch
patch 2328-drm-amd-display-DF-C-state-entry-blocked-when-DPMS.patch
patch 2329-drm-amd-display-Remove-mpc-from-bios-left-over-keep-.patch
patch 2330-drm-amd-display-clean-up-header-file-includes.patch
patch 2331-drm-amd-display-Rename-dc-validate_context-and-curre.patch
patch 2332-drm-amd-display-Rename-dc-resource_validate_ctx-meth.patch
patch 2333-drm-amd-display-Add-a-clock-source-to-a-sharing-pipe.patch
patch 2334-drm-amd-display-add-aux-arbitration-logic.patch
patch 2335-drm-amd-display-Move-dis_clk-into-dc_state.patch
patch 2336-drm-amd-display-Fix-time-out-on-boot.patch
patch 2337-drm-amd-display-only-polling-VSync-Phase-within-VSyn.patch
patch 2338-drm-amd-display-clean-up-functions-in-dcn10_dpp_cm.patch
patch 2339-drm-amd-display-not-override-the-FMT-setting-set-by-.patch
patch 2340-drm-amd-display-add-backlight-control-in-blankstream.patch
patch 2341-drm-amd-display-program-fbc-for-scatter-gather.patch
patch 2342-drm-amd-display-Program-reg-for-vertical-interrupt.patch
patch 2343-drm-amd-display-Disable-OTG-double-buffer.patch
patch 2344-drm-amd-display-Set-add_stream_ctx-for-CZ-Hawaii-and.patch
patch 2345-drm-amd-display-Restore-missing-DCE8-xfm-regs.patch
patch 2346-drm-amd-display-Don-t-spam-log-with-failed-validatio.patch
patch 2347-drm-amd-display-delete-dead-code.patch
patch 2348-drm-amd-display-clean-up-cm-register-programming-fun.patch
patch 2349-drm-amdgpu-Remove-unused-flip_flags-from-amdgpu_crtc.patch
patch 2350-drm-amd-powerplay-Rename-WM_COUNT-to-avoid-redeclara.patch
patch 2351-drm-amdkcl-4.12-Reserve-flip_flags-used-by-amdgpu_dm.patch
patch 2352-drm-amd-display-move-regamma-from-opp-to-dpp-for-dce.patch
patch 2353-drm-amdkcl-4.12-Kcl-for-drm-old-new-state-iterator-a.patch
patch 2354-drm-amd-display-kcl_dm-Flat-core_dc-to-dc-and-curren.patch
patch 2355-drm-amd-display-Get-OTG-info-if-OTG-master-enabled.patch
patch 2356-drm-amd-display-Added-negative-check-for-vertical-li.patch
patch 2357-drm-amd-display-Remove-sanity-check.patch
patch 2358-drm-amd-display-Use-TPS4-instead-of-CP2520_3-for-phy.patch
patch 2359-drm-amd-display-Request-to-have-DCN-RV-pipe-Harvesti.patch
patch 2360-drm-amd-display-dce110-fix-plane-validation.patch
patch 2361-drm-amd-display-USB-C-to-HDMI-dongle-not-light.patch
patch 2362-drm-amd-display-set-CP2520-Test-pattern-to-use-DP_TE.patch
patch 2363-drm-amd-display-fix-crc_source_select-use-hardcoded-.patch
patch 2364-drm-amd-display-Enable-dcn10_power_on_fe-log-by-defa.patch
patch 2365-drm-amd-display-fix-default-dithering.patch
patch 2366-drm-amd-display-Fix-context-alloc-failed-logging.patch
patch 2367-drm-amd-display-seperate-dpp_cm_helper-functions-int.patch
patch 2368-drm-amd-display-Don-t-reset-clock-source-at-unref.patch
patch 2369-drm-amd-display-Power-down-clock-source-at-commit.patch
patch 2370-drm-amd-display-Remove-switching-of-clk-sources-at-e.patch
patch 2371-drm-amd-display-remove-output_format-from-ipp_setup.patch
patch 2372-drm-amd-display-move-dwb-registers-to-header-file.patch
patch 2373-drm-amd-display-No-need-to-keep-track-of-unreffed-cl.patch
patch 2374-drm-amd-display-Add-2X-Cursor-Magnification-Code.patch
patch 2375-drm-amd-display-Break-out-amdgpu_dm_connector.patch
patch 2376-drm-amd-display-Create-fake-sink-if-needed-when-comm.patch
patch 2377-drm-amd-display-Update-DPP-registers.patch
patch 2378-drm-amd-display-Disable-FBC-for-linear-tiling.patch
patch 2379-drm-amd-display-To-prevent-detecting-new-sink-from-s.patch
patch 2380-drm-amd-display-Format-changes-to-bring-in-line-with.patch
patch 2381-drm-amd-display-Change-comments-to-bring-in-line-wit.patch
patch 2382-drm-amd-display-Update-include-to-bring-in-line-with.patch
patch 2383-drm-amd-display-fix-typo-in-function-name.patch
patch 2384-drm-amd-display-whitespace-cleanup-in-amdgpu_dm.c-h.patch
patch 2385-drm-amd-display-make-a-bunch-of-stuff-in-amdgpu_dm.c.patch
patch 2386-drm-amd-display-drop-unused-functions-in-amdgpu_dm.c.patch
patch 2387-drm-amd-display-drop-unused-functions-in-amdgpu_dm_s.patch
patch 2388-drm-amd-display-whitespace-cleanup-in-amdgpu_dm_mst_.patch
patch 2389-drm-amd-display-make-log_dpcd-static.patch
patch 2390-drm-amd-display-whitespace-cleanup-in-amdgpu_dm_irq..patch
patch 2391-drm-amd-display-remove-unused-functions-in-amdgpu_dm.patch
patch 2392-drm-amd-display-make-amdgpu_dm_irq_handler-static.patch
patch 2393-drm-amd-display-dc-drop-dm_delay_in_microseconds.patch
patch 2394-drm-amd-display-drop-unused-dm_delay_in_microseconds.patch
patch 2395-drm-amd-display-Refactor-dc_state-creation-into-a-fu.patch
patch 2396-drm-amd-display-Move-copy_construct-from-state_alloc.patch
patch 2397-drm-amd-display-don-t-clean-up-bottom-pipe-plane_sta.patch
patch 2398-drm-amd-display-Don-t-leak-dc_stream_state.patch
patch 2399-Revert-drm-amd-display-enable-static-audio-routing.patch
patch 2400-drm-amd-display-Clean-Kconfig-formatting.patch
patch 2401-drm-amdgpu-Add-dc_log-module-parameter.patch
patch 2402-drm-amd-display-Pass-log_mask-from-DM.patch
patch 2403-drm-amd-display-Reduce-DC-chattiness.patch
patch 2404-drm-amd-display-Remove-unused-dc_validate_guaranteed.patch
patch 2405-drm-amd-DC-pull-request-review.patch
patch 2406-drm-amd-display-Use-kernel-alloc-free.patch
patch 2407-drm-amd-display-Remove-alloc-free-macros.patch
patch 2408-drm-amd-display-DC-I2C-review.patch
patch 2409-amdgpu-dc-add-static-to-construct-function.patch
patch 2410-amdgpu-dc-move-filter-taps-to-being-static-const-dat.patch
patch 2411-amdgpu-dc-separate-out-some-common-code-from-bios-pa.patch
patch 2412-amdgpu-dc-don-t-check-for-0-on-register-read-writes-.patch
patch 2413-amdgpu-dc-remove-wait_reg-wait_reg_func-interfaces.patch
patch 2414-drm-amd-display-Remove-DWB.patch
patch 2415-amdgpu-dc-drop-dc_ver-char.patch
patch 2416-amdgpu-dc-static-constify-update_surface_trace_level.patch
patch 2417-amdgpu-dm-constify-yuv_formats.patch
patch 2418-amdgpu-dm-constify-plane-type.patch
patch 2419-amdgpu-dm-constify-rgb-formats.patch
patch 2420-amdgpu-dc-constify-a-bunch-of-dc-structs.patch
patch 2421-amdgpu-dc-make-timing-generator-constructor-return-v.patch
patch 2422-amdgpu-dc-make-stream-encoder-constructor-return-voi.patch
patch 2423-amdgpu-dc-make-link-encoder-construct-void.patch
patch 2424-amdgpu-dc-make-opp-construct-void.patch
patch 2425-amdgpu-dc-make-dce-transform-constructor-void.patch
patch 2426-amdgpu-dc-make-dce80-timing-generator-construct-retu.patch
patch 2427-amdgpu-dc-make-get_audio_clock_info-return-void.patch
patch 2428-amdgpu-dc-make-program_regamma_pwl-return-void.patch
patch 2429-amdgpu-dc-make-some-audio-functions-return-void.patch
patch 2430-amdgpu-dc-remove-pointless-returns-in-the-i2caux-con.patch
patch 2431-amdgpu-dc-cleanup-construct-returns-in-gpio.patch
patch 2432-amdgpu-dc-another-round-of-dce-dcn-construct-cleanup.patch
patch 2433-amdgpu-dc-remove-pointless-return-from-build_pipe_hw.patch
patch 2434-amdgpu-fixup-construct-to-void-paths-on-some-more-dc.patch
patch 2435-amdgpu-dc-fix-construct-return-values-on-irq-service.patch
patch 2436-amdgpu-dc-inline-some-of-the-fixed-32_32-fns.patch
patch 2437-amdgpu-dc-inline-a-bunch-of-the-fixed-31_32-helpers.patch
patch 2438-amdgpu-dc-hide-some-unused-aux-i2c-payload-apis.patch
patch 2439-amdgpu-dc-move-some-one-line-dp-functions-to-inlines.patch
patch 2440-amdgpu-dc-inline-some-of-the-bw_fixed-code.patch
patch 2441-amdgpu-dc-allow-inlining-constant-int-to-fixed-a-lot.patch
patch 2442-amdgpu-dc-use-the-builtin-constant-p-trick-on-the-31.patch
patch 2443-amdgpu-dc-inline-fixed31_32-div_int.patch
patch 2444-amdgpu-dc-inline-all-the-signal_types-code.patch
patch 2445-amdgpu-dc-set-some-of-the-link-dp-code-to-static.patch
patch 2446-amdgpu-dc-rename-bios-get_image-symbol-to-something-.patch
patch 2447-amdgpu-dc-inline-dal-grph-object-id-functions.patch
patch 2448-amdgpu-dc-don-t-memset-after-kzalloc.patch
patch 2449-amdgpu-dc-use-kernel-ilog2-for-log_2.patch
patch 2450-amdgpu-dc-drop-dce110_types.h.patch
patch 2451-amdgpu-dc-drop-hw_sequencer_types.h.patch
patch 2452-amdgpu-dc-fix-a-bunch-of-misc-whitespace.patch
patch 2453-amdgpu-dc-kfree-already-checks-for-NULL.patch
patch 2454-amdgpu-dm-don-t-use-after-free.patch
patch 2455-amdgpu-dc-fix-indentation-on-a-couple-of-returns.patch
patch 2456-amdgpu-dc-kill-some-deadcode-in-dc-core.patch
patch 2457-amdgpu-dc-set-a-bunch-of-functions-to-static.patch
patch 2458-amdgpu-dc-kill-a-bunch-of-dead-code.patch
patch 2459-amdgpu-dc-convert-dc_transfer-to-use-a-kref.patch
patch 2460-amdgpu-dc-convert-dc_gamma-to-kref-reference-countin.patch
patch 2461-amdgpu-dc-use-kref-for-dc_plane_state.patch
patch 2462-amdgpu-dc-convert-dc_stream_state-to-kref.patch
patch 2463-amdgpu-dc-convert-dc_sink-to-kref.patch
patch 2464-amdgpu-dc-use-kref-for-dc_state.patch
patch 2465-drm-amd-display-Driver-message-to-SMU-to-indicate-di.patch
patch 2466-drm-amd-display-Force-always-scale-chroma-set-always.patch
patch 2467-drm-amd-display-fix-usb-c-dongle-regression.patch
patch 2468-drm-amd-display-Add-FBC-on-off-to-front-end-programm.patch
patch 2469-drm-amd-display-To-prevent-detecting-new-sink-from-s.patch
patch 2470-drm-amd-display-Don-t-report-fake-sink-as-connected.patch
patch 2471-drm-amd-display-Refactor-dcn10_dpp_cm_helper-to-dcn1.patch
patch 2472-drm-amd-display-fix-multi-display-on-CZ.patch
patch 2473-drm-amd-display-update-mpc-add-remove-functions.patch
patch 2474-drm-amd-display-fixing-register-includes.patch
patch 2475-drm-amd-display-Exclude-MST-from-fake-sink.patch
patch 2476-drm-amd-display-Fix-NULL-pointer-on-MST-chained-mode.patch
patch 2477-drm-amd-display-Refactor-dc_update_planes_and_stream.patch
patch 2478-drm-amd-display-make-tile-changing-run-at-ISR.patch
patch 2479-drm-amd-display-power_down_Hw-need-signal-type-to-tu.patch
patch 2480-drm-amd-display-removing-remaining-register-definiti.patch
patch 2481-drm-amd-display-set-cp25201-to-use-TPS4.patch
patch 2482-drm-amd-display-add-back-removed-hack-for-mpcc-add.patch
patch 2483-drm-amd-display-update-blending-mode-and-set-output-.patch
patch 2484-drm-amd-display-moving-backlight-registers-to-hwsequ.patch
patch 2485-drm-amd-display-edp-backlight-regression-fix.patch
patch 2486-drm-amd-display-fix-ASSERT-caused-by-missing-registe.patch
patch 2487-drm-amd-display-make-sure-BL-off-to-mainlink-off-has.patch
patch 2488-drm-amd-display-add-hubp-dpp-pg-debug-key.patch
patch 2489-drm-amd-display-Fixed-validation-return-wrong-result.patch
patch 2490-drm-amd-display-version-3.1.02.patch
patch 2491-drm-amd-display-screen-flickers-when-connected-to-ex.patch
patch 2492-drm-amd-display-Fixed-incorrect-return-value-for-val.patch
patch 2493-drm-amd-display-Use-active-border-for-bw-validation.patch
patch 2494-drm-amd-display-update-link-type-to-mst-before-topol.patch
patch 2495-drm-amd-display-Program-stream-s-csc-matrix-instead-.patch
patch 2496-drm-amd-display-Early-return-when-turn-off-a-plane.patch
patch 2497-drm-amd-display-Only-reset-top-pipe-back-end.patch
patch 2498-drm-amd-display-Fix-MST-daisy-chain-SST-not-light-up.patch
patch 2499-drm-amd-display-temp-disable-DCC-on-high-res.patch
patch 2500-drm-amd-display-enable-optional-pipe-split-for-singl.patch
patch 2501-drm-amd-display-add-option-to-disable-DCC-for-DCC-12.patch
patch 2502-drm-amd-display-option-to-maximize-lb-usage.patch
patch 2503-drm-amd-display-fix-bug-in-force_single_disp_pipe_sp.patch
patch 2504-drm-amd-display-dal-3.1.03.patch
patch 2505-drm-amd-display-Fix-ref_count-messed-up-issue.patch
patch 2506-drm-amd-display-moving-cursor-functions-from-ipp-to-.patch
patch 2507-drm-amd-display-Move-power-control-from-link-encoder.patch
patch 2508-drm-amd-display-align-DCLK-to-voltage-level.patch
patch 2509-drm-amd-display-disconnect-on-HPD-low-even-if-edid-i.patch
patch 2510-drm-amd-display-Add-override-for-reporting-wm-ranges.patch
patch 2511-drm-amd-display-soc_bound_box-update-DML-based-on-HW.patch
patch 2512-drm-amd-display-Expose-some-mem_input-functions-for-.patch
patch 2513-drm-amd-display-Restructuring-and-cleaning-up-DML.patch
patch 2514-drm-amd-display-add-mode-support-check-to-dml-vba-co.patch
patch 2515-drm-amd-display-extract-global-sync-params-from-vba.patch
patch 2516-drm-amd-display-change-dml-vba-cursor-count-define-t.patch
patch 2517-drm-amd-display-Enable-double-buffer-as-per-vertical.patch
patch 2518-drm-amd-display-wrong-VM-setting-cause-invalid-DF-re.patch
patch 2519-drm-amd-display-Fix-hotplug-after-s3-resume.patch
patch 2520-drm-amd-display-make-FBC-configurable-option.patch
patch 2521-drm-amd-display-Program-front-end-first-when-set-mod.patch
patch 2522-drm-amd-display-audio-dynamic-resource-acquired-rela.patch
patch 2523-drm-amd-display-renaming-mem-input-to-hubp.patch
patch 2524-drm-amd-display-arbitration-find-the-matching-dig-az.patch
patch 2525-drm-amd-display-Making-hubp1_program_surface_config-.patch
patch 2526-drm-amd-display-Fix-irq-enable-disable-on-resume.patch
patch 2527-drm-amd-display-Do-not-access-fbdev-helper-members.patch
patch 2528-drm-amd-display-Remove-drm_modeset_lock-in-MST-code.patch
patch 2529-drm-amd-display-clean-up-dcn10-dpp-after-HW-review.patch
patch 2530-drm-amd-display-Add-stereo_support-debug-flag.patch
patch 2531-drm-amd-display-Fixed-extend-to-second-screen-mode-h.patch
patch 2532-drm-amd-display-wa-to-program-split-pipedegamma-regs.patch
patch 2533-drm-amd-display-Add-debug-flag-for-VSR-support.patch
patch 2534-drm-amd-display-fix-re-enabling-stutter-for-raven.patch
patch 2535-drm-amd-display-reject-3D-mode-based-on-static-debug.patch
patch 2536-drm-amd-display-increase-pstate-wait-timeout.patch
patch 2537-drm-amd-display-block-video-planes-4k-on-dcn10.patch
patch 2538-drm-amd-display-add-max_video_width-cap-to-dc.patch
patch 2539-drm-amd-display-add-dpms-state-to-DC.patch
patch 2540-drm-amd-display-Fixed-switching-mode-half-screen-gam.patch
patch 2541-drm-amd-display-add-dpms-state-to-DC-follow-up.patch
patch 2542-drm-amd-display-Handle-case-when-stream-not-found-in.patch
patch 2543-drm-amd-display-Ignore-wrong-tautological-warning.patch
patch 2544-drm-amd-display-dal-3.1.04.patch
patch 2545-drm-amd-display-group-DCN-watermark-registers.patch
patch 2546-drm-amd-display-rename-struct-mem_input-to-hubp-for-.patch
patch 2547-drm-amd-display-Add-DPP-capabilities.patch
patch 2548-drm-amd-display-Add-missing-newlines-in-pstate-wait-.patch
patch 2549-drm-amd-display-Fix-up-plane_states-add-remove-logic.patch
patch 2550-drm-amd-display-dal-3.1.05.patch
patch 2551-drm-amd-display-renaming-filename-for-hubp.patch
patch 2552-drm-amd-display-Pull-transfer-func-defines-into-DC.patch
patch 2553-drm-amd-display-Fix-underscan-not-using-proper-scali.patch
patch 2554-drm-amd-display-Expose-some-MPC-functions-for-reuse.patch
patch 2555-drm-amd-display-change-when-to-set-tap_hardcode_coef.patch
patch 2556-drm-amd-display-RV-bug-in-cm-programming.patch
patch 2557-drm-amd-display-Fix-a-logic-defect-in-cursor-move.patch
patch 2558-drm-amd-display-fix-null-dereference-in-reset-hw-ctx.patch
patch 2559-drm-amd-display-add-null-check-for-cursor-functions.patch
patch 2560-drm-amd-display-rename-transform-to-dpp-for-dcn.patch
patch 2561-drm-amd-display-Do-not-set-bandwidth-on-page-flips.patch
patch 2562-drm-amd-display-Remove-a-false-positive-error-messag.patch
patch 2563-drm-amd-display-add-performance-trace-macro-to-dc.patch
patch 2564-drm-amd-display-Set-addressable-region-as-active-bor.patch
patch 2565-drm-amd-display-Report-stream-as-different-on-scalin.patch
patch 2566-drm-amd-display-Fix-non-DCN-build.patch
patch 2567-drm-amd-display-Fix-warning-about-overflow.patch
patch 2568-drm-amd-display-add-hardware_planes_only-to-list-of-.patch
patch 2569-drm-amd-display-Simplify-dm_late_init.patch
patch 2570-drm-amd-display-Fix-indentation-in-dm_suspend.patch
patch 2571-drm-amd-display-Fix-indentation-in-dm_resume.patch
patch 2572-drm-amd-display-Fix-brace-style-in-amdgpu_dm_update_.patch
patch 2573-drm-amd-display-Fix-brace-style-in-dm_handle_hpd_rx_.patch
patch 2574-drm-amd-display-Simplify-handle_hpd_rx_irq.patch
patch 2575-drm-amd-display-Fix-brace-style-in-amdgpu_dm_initial.patch
patch 2576-drm-amd-display-Replace-block-with-strncpy-in-fill_a.patch
patch 2577-drm-amd-display-Fix-indentation-in-create_eml_sink.patch
patch 2578-drm-amd-display-Tidy-up-dm_drm_plane_reset.patch
patch 2579-drm-amd-display-Fix-brace-style-in-amdgpu_dm_connect.patch
patch 2580-drm-amd-display-Remove-needless-cast-in-amdgpu_dm_co.patch
patch 2581-drm-amd-display-Fix-brace-style.patch
patch 2582-drm-amd-dc-fix-semicolon.cocci-warnings.patch
patch 2583-drm-amd-display-fix-ifnullfree.cocci-warnings.patch
patch 2584-drm-amd-display-Don-t-set-cursor-address-is-0-loggin.patch
patch 2585-drm-amd-display-Fix-warning-about-uninitialized-vari.patch
patch 2586-drm-amd-display-Fix-up-some-whitespace-in-handle_cur.patch
patch 2587-drm-amd-display-check-SR_WATERMARK-regs-prior-to-wri.patch
patch 2588-drm-amd-display-Correct-timings-in-build-scaling-par.patch
patch 2589-drm-amd-display-Add-chip-mask-to-HDMI-retimer-redriv.patch
patch 2590-drm-amd-display-Add-DIGD-case-when-getting-retimer-s.patch
patch 2591-drm-amd-display-WA-for-3-display-play-video-hot-plug.patch
patch 2592-drm-amd-display-rename-dscl-functions.patch
patch 2593-drm-amd-display-DAL-3.1.06.patch
patch 2594-drm-amd-display-LGD-panel-willl-flash-line-under-win.patch
patch 2595-drm-amd-display-Move-OS-types-to-os_types.h.patch
patch 2596-drm-amd-display-Fix-one-more-place-for-dc_stream_sta.patch
patch 2597-drm-amd-display-Reduce-stack-size-of-commit_planes_t.patch
patch 2598-drm-amd-display-dal-3.1.07.patch
patch 2599-drm-amd-display-Remove-redundant-condition-in-dml-vb.patch
patch 2600-Compilation-issues-resolved-v7.patch
patch 2601-drm-amd-display-default-force_single_disp_pipe_split.patch
patch 2602-drm-amd-display-change-dml-numdpp-var-to-uint.patch
patch 2603-drm-amdkcl-4.12-Fix-to-use-original-iterator-for_eac.patch
patch 2604-drm-amd-display-Minor-update-to-DML.patch
patch 2605-drm-amd-display-Small-comment-on-dc_commit_planes_to.patch
patch 2606-drm-amd-display-Add-bunch-of-missing-license-headers.patch
patch 2607-drm-amd-display-Add-null-check-for-24BPP-xfm-and-dpp.patch
patch 2608-drm-amd-display-Atomic-freesync-ASSERT-fix.patch
patch 2609-drm-amd-display-Add-APU-cap-in-dc_caps.patch
patch 2610-drm-amd-display-Use-DRM-new-style-object-iterators.patch
patch 2611-drm-amd-display-Use-new-DRM-API-where-possible.patch
patch 2612-drm-amd-display-Unify-DRM-state-variable-namings.patch
patch 2613-drm-amd-display-Unify-amdgpu_dm-state-variable-namin.patch
patch 2614-drm-amd-display-Fix-typo.patch
patch 2615-drm-amd-display-Remove-useless-pcrtc-pointer.patch
patch 2616-drm-amd-display-Cleanup-code-that-enables-freesync.patch
patch 2617-drm-amd-display-Move-lock-to-front-end-program.patch
patch 2618-drm-amd-display-Check-cursor-address-before-program.patch
patch 2619-drm-amd-display-Adding-DCN1-registers.patch
patch 2620-drm-amd-display-Fix-no-display-on-Fiji.patch
patch 2621-drm-amd-display-Cleanup-some-fail-labels-in-dcn10_re.patch
patch 2622-drm-amd-display-Clean-some-unneeded-defines-from-ddc.patch
patch 2623-drm-amd-display-cleaning-up-hubp-for-dcn.patch
patch 2624-drm-amd-display-Explicit-casting-for-grph-object-ids.patch
patch 2625-drm-amd-display-Fix-NULL-pointer-in-Raven-hotplug.patch
patch 2626-drm-amd-display-add-high-part-address-calculation-fo.patch
patch 2627-drm-amd-display-fix-high-part-address-in-dm_plane_he.patch
patch 2628-drm-amd-display-check-if-modeset-is-required-before-.patch
patch 2629-drm-amd-display-Use-constants-from-atom.h-for-HDMI-c.patch
patch 2630-drm-amd-display-Don-t-print-error-when-bo_pin-is-int.patch
patch 2631-amdgpu-dc-Avoid-dereferencing-NULL-pointer.patch
patch 2632-drm-amd-display-fix-null-pointer-dereference.patch
patch 2633-drm-amd-display-Use-plane-pointer-to-avoid-line-brea.patch
patch 2634-drm-amd-display-Use-single-fail-label-in-init_drm_de.patch
patch 2635-drm-amd-display-Explicitly-call-reset-for-each-objec.patch
patch 2636-drm-amd-Add-DCE12-resource-strap-registers.patch
patch 2637-drm-amd-display-Read-resource_straps-from-registers-.patch
patch 2638-drm-amdgpu-display-provide-ASSERT-macros-uncondition.patch
patch 2639-drm-amdgpu-display-remove-unused-REG_OFFSET-macro.patch
patch 2640-drm-amdgpu-display-fix-integer-arithmetic-problem.patch
patch 2641-drm-amd-display-Should-disable-when-new-stream-is-nu.patch
patch 2642-drm-amd-display-Set-cursor-position-as-per-address.patch
patch 2643-drm-amd-display-DMCU-FW-loading-from-PSP.patch
patch 2644-drm-amd-display-Only-add-stream-to-freesync-when-mod.patch
patch 2645-drm-amd-display-Fix-styling-of-freesync-code-in-comm.patch
patch 2646-drm-amd-display-Complete-TODO-item-use-new-DRM-itera.patch
patch 2647-drm-amd-display-Add-timing-validation-against-dongle.patch
patch 2648-drm-amd-display-create-new-files-for-hubbub-function.patch
patch 2649-drm-amd-display-Fix-S3-topology-change.patch
patch 2650-drm-amd-display-Reject-PPLib-clock-values-if-they-ar.patch
patch 2651-drm-amd-display-Power-down-front-end-in-init_hw.patch
patch 2652-drm-amd-display-Not-reset-front-end-when-program-bac.patch
patch 2653-drm-amd-display-dal-3.1.08.patch
patch 2654-drm-amd-display-Added-disconnect-dchub.patch
patch 2655-drm-amd-display-dal-3.1.09.patch
patch 2656-drm-amd-display-fix-split-recout-calculation.patch
patch 2657-drm-amd-display-Handle-as-MST-first-and-then-DP-dong.patch
patch 2658-drm-amd-display-create-new-structure-for-hubbub.patch
patch 2659-drm-amd-display-Apply-VQ-adjustments-in-MPO-case.patch
patch 2660-drm-amd-display-Move-hdr_metadata-from-plane-to-stre.patch
patch 2661-drm-amd-display-fix-bug-from-last-commit-for-hubbub.patch
patch 2662-drm-amd-display-Don-t-reject-3D-timings.patch
patch 2663-drm-amd-display-fix-split-recout-offset.patch
patch 2664-drm-amd-display-correct-DP-is-always-in-full-range-o.patch
patch 2665-drm-amd-display-dal-3.1.10.patch
patch 2666-drm-amd-display-Move-conn_state-to-header.patch
patch 2667-drm-amd-display-Don-t-access-legacy-properties.patch
patch 2668-drm-amd-display-Fix-Freesync-enablement.patch
patch 2669-amdgpu-dce-Use-actual-number-of-CRTCs-and-HPDs-in-se.patch
patch 2670-drm-amd-display-Use-real-number-of-CRTCs-and-HPDs-in.patch
patch 2671-amdgpu-Remove-AMDGPU_-HPD-CRTC_IRQ-PAGEFLIP_IRQ-_LAS.patch
patch 2672-drm-amd-display-Remove-fb_location-parameter-from-ge.patch
patch 2673-drm-amdkcl-4.12-Widely-fix-to-use-original-iterator-.patch
patch 2674-drm-amdkcl-4.12-Kcl-for-get_new_crtc_state-after-sw-.patch
patch 2675-drm-amdkcl-2.6.38-kcl-for-BUILD_BUG_ON.patch
patch 2676-drm-amd-display-kcl_dm-switch-back-to-amdgpu_dm.patch
patch 2677-drm-amd-display-kcl_dm-use-amdgpu_crtc_page_flip-whi.patch
patch 2678-drm-amd-display-Fix-wrongly-deleted-useful-code.patch
patch 2679-amdgpu-dc-inline-a-bunch-of-the-dml-wrappers.patch
patch 2680-drm-amd-display-drop-display_pipe_clocks.c.patch
patch 2681-amdgpu-dc-drop-dml_util_is_420.patch
patch 2682-amdgpu-dc-inline-dml_round_to_multiple.patch
patch 2683-drm-amd-display-small-cleanup-in-destruct.patch
patch 2684-drm-amd-display-checking-for-NULL-instead-of-IS_ERR.patch
patch 2685-drm-amd-display-remove-some-unneeded-code.patch
patch 2686-amdgpu-dc-fix-non-ansi-function-decls.patch
patch 2687-amdgpu-dc-fix-indentation-warning-from-smatch.patch
patch 2688-amdgpu-dc-handle-allocation-failures-in-dc_commit_pl.patch
patch 2689-amdgpu-dc-fix-more-indentation-warnings.patch
patch 2690-amdgpu-dc-Fix-potential-null-dereferences-in-amdgpu_.patch
patch 2691-amdgpu-dc-Fix-missing-null-checks-in-amdgpu_dm.c.patch
patch 2692-amdgpu-dc-Fix-double-unlock-in-amdgpu_dm_commit_plan.patch
patch 2693-drm-amdgpu-Remove-unused-dc_stream-from-amdgpu_crtc.patch
patch 2694-Hybrid-Version-18.10.2.13.patch
patch 2695-amdgpu-dm-Remove-unused-forward-declaration.patch
patch 2696-amdgpu-dm-Remove-fb_location-form-fill_plane_attribu.patch
patch 2697-drm-amd-display-Multi-display-synchronization-logic.patch
patch 2698-drm-amd-display-create-new-function-prototype-update.patch
patch 2699-drm-amd-display-function-renaming-for-hubbub.patch
patch 2700-compilation-issues-resolved-v8.patch
patch 2701-drm-amd-display-Do-post_update_surfaces-on-new-state.patch
patch 2702-drm-amd-display-hubbub-function-flipping-true-and-fa.patch
patch 2703-drm-amd-display-dal-3.1.11.patch
patch 2704-drm-amd-display-Call-ipp_program_bias_and_scale-only.patch
patch 2705-drm-amd-display-Only-update-dchub-if-hubbub-is-avail.patch
patch 2706-drm-amd-display-get-remote-dpcd-caps-for-timing-vali.patch
patch 2707-drm-amd-display-Enalbe-blank-data-double-buffer-afte.patch
patch 2708-drm-amd-display-Add-tg_init-interface.patch
patch 2709-drm-amd-display-Both-timing_sync-and-multisync-need-.patch
patch 2710-drm-amd-display-Don-t-use-dc_link-in-link_encoder.patch
patch 2711-drm-amd-display-cache-pwl-params-and-scl_data-to-avo.patch
patch 2712-drm-amd-display-dal-3.1.12.patch
patch 2713-drm-amd-display-Add-OPP-DPG-blank-function.patch
patch 2714-drm-amd-display-call-set-csc_default-if-enable-adjus.patch
patch 2715-drm-amd-display-dal-3.1.13.patch
patch 2716-drm-amd-display-renaming-dpp-function-to-follow-nami.patch
patch 2717-drm-amd-display-dal-3.1.14.patch
patch 2718-drm-amd-display-Refactor-disable-front-end-pipes.patch
patch 2719-drm-amd-display-Bunch-of-indentation-cleanups-in-col.patch
patch 2720-drm-amd-display-Fix-some-more-color-indentations.patch
patch 2721-drm-amd-display-fix-regamma-programming.patch
patch 2722-drm-amd-display-fix-uninitialized-variable-warning.patch
patch 2723-drm-amd-display-remove-unnecessary-waits-in-dcn10.patch
patch 2724-drm-amd-display-add-warning-on-long-reg_wait.patch
patch 2725-drm-amd-display-Modified-front-end-initiail-in-init_.patch
patch 2726-drm-amd-display-send-display_count-msg-so-SMU-can-en.patch
patch 2727-drm-amd-display-Add-transfer-function-to-dc_surface_.patch
patch 2728-drm-amd-display-fix-dcn10_hubbub_wm_read_state.patch
patch 2729-drm-amd-display-Remove-unused-OPP-functions-from-int.patch
patch 2730-drm-amd-display-dal-3.1.15.patch
patch 2731-drm-amd-display-Fixed-not-set-scaler-bug.patch
patch 2732-drm-amd-display-always-call-set-output-tf.patch
patch 2733-drm-amd-display-dal-3.1.16.patch
patch 2734-drm-amd-display-Remove-extra-arr_points-element.patch
patch 2735-drm-amd-display-Bunch-more-color-indentation-cleanup.patch
patch 2736-drm-amd-display-Remove-unused-register-read-in-progr.patch
patch 2737-drm-amd-display-A-few-more-color-indentation-changes.patch
patch 2738-drm-amd-display-combine-output-signal-and-signal.patch
patch 2739-drm-amd-display-Report-pitch_alignment-for-DCN.patch
patch 2740-drm-amd-display-Loosen-plane_info-and-scaling_info-c.patch
patch 2741-drm-amd-display-remove-dcn10-wait-on-tg-unlock.patch
patch 2742-drm-amd-display-Apply-work-around-for-stutter.patch
patch 2743-drm-amd-display-Fix-unbalanced-locking-in-surface-ap.patch
patch 2744-drm-amd-display-Optimize-programming-front-end.patch
patch 2745-drm-amd-display-Remove-dangling-planes-on-dc-commit-.patch
patch 2746-drm-amd-display-Change-frontend-backend-programming-.patch
patch 2747-drm-amd-display-Early-return-on-stream-programming-f.patch
patch 2748-drm-amd-display-Remove-legacy-unused-workaround.patch
patch 2749-drm-amd-display-Add-update-flags-in-to-determine-sur.patch
patch 2750-drm-amd-display-fix-plane-update-prior-to-stream-ena.patch
patch 2751-drm-amd-display-Added-Opp-and-Diags-Interface-for-P-.patch
patch 2752-drm-amd-display-Rename-pitch_alignment-to-linear_pit.patch
patch 2753-drm-amd-display-Add-check-update-surfaces-for-stream.patch
patch 2754-drm-amd-display-Fix-unused-variable-warning.patch
patch 2755-drm-amd-display-Optimize-front-end-programming.patch
patch 2756-drm-amd-display-Move-dc_stream-interface-to-separate.patch
patch 2757-drm-amd-display-Move-dc_link-interface-to-separate-h.patch
patch 2758-drm-amd-display-Remove-unnecessary-dc_stream-vtable.patch
patch 2759-drm-amd-display-remove-stream_func-vtable.patch
patch 2760-drm-amd-display-Fix-Linux-after-optimize-frontend-pr.patch
patch 2761-drm-amd-display-Fix-use-before-initialize-warning.patch
patch 2762-drm-amd-display-fix-static-checker-warning.patch
patch 2763-drm-amd-display-remove-unnecessary-cast-and-use-kcal.patch
patch 2764-drm-amd-display-dc-core-dc_resource-use-swap-macro-i.patch
patch 2765-drm-amd-display-dc-dce110-dce110_mem_input_v-use-swa.patch
patch 2766-drm-amd-Fix-line-continuation-formats.patch
patch 2767-drm-amd-display-Fix-description-of-module-parameter-.patch
patch 2768-drm-amd-display-call-set_mpc_output_csc-from-hwseque.patch
patch 2769-drm-amd-display-Move-update_plane_addr-to-apply_ctx_.patch
patch 2770-drm-amd-display-Update-dchub-and-dpp-as-per-update-f.patch
patch 2771-drm-amd-display-fix-opp-header-register-define.patch
patch 2772-drm-amd-display-Remove-unnecessary-dc_link-vtable.patch
patch 2773-drm-amd-display-performance-profiling-instrumentatio.patch
patch 2774-drm-amd-display-Only-update-output-transfer-function.patch
patch 2775-drm-amd-display-update-output-csc-matrix-values.patch
patch 2776-drm-amd-display-dal-3.1.17.patch
patch 2777-drm-amd-display-move-csc-matrix-to-hw_shared.patch
patch 2778-drm-amd-display-fix-mpo-validation-failure.patch
patch 2779-drm-amd-display-fix-refclk-conversion-from-khz-int-t.patch
patch 2780-drm-amd-display-Rename-output_bpc-to-opp_input_bpc.patch
patch 2781-drm-amd-display-Trigger-full-update-on-plane-change.patch
patch 2782-drm-amd-display-Do-not-program-front-end-twice.patch
patch 2783-drm-amd-display-Set-full-update-flag-in-dcn_validate.patch
patch 2784-drm-amd-display-dal-3.1.18.patch
patch 2785-drm-amd-display-Only-program-watermark-for-full-upda.patch
patch 2786-drm-amd-display-DMCU-and-ABM-maintenance-and-refacto.patch
patch 2787-drm-amd-display-dal-3.1.19.patch
patch 2788-drm-amd-display-Set-OPP-default-values-in-init_hw.patch
patch 2789-drm-amd-display-dal-3.1.20.patch
patch 2790-Revert-correct-vce-fw-data-and-stack-size-config.patch
patch 2791-drm-amdgpu-correct-vce4.0-fw-config-for-SRIOV-V2.patch
patch 2792-drm-amdgpu-fix-VM-PD-addr-shift.patch
patch 2793-drm-amdgpu-fix-amdgpu_vm_num_entries.patch
patch 2794-drm-amdgpu-unify-VM-size-handling-of-Vega10-with-old.patch
patch 2795-drm-amdgpu-choose-number-of-VM-levels-based-on-VM-si.patch
patch 2796-drm-amdgpu-allow-non-pot-VM-size-values.patch
patch 2797-drm-amdgpu-move-validation-of-the-VM-size-into-the-V.patch
patch 2798-drm-amdgpu-allow-specifying-vm_block_size-for-multi-.patch
patch 2799-drm-amdgpu-Get-rid-of-dep_sync-as-a-seperate-object.patch
patch 2800-drm-amd-amdgpu-not-allow-gtt-size-exceed-75-system-m.patch
patch 2801-drm-amd-amdgpu-set-gtt-size-according-to-system-memo.patch
patch 2802-drm-amdgpu-fix-amdgpu_sync_resv-v2.patch
patch 2803-drm-amdgpu-Fix-to-mark-fence-as-explicit-for-amdgpu_.patch
patch 2804-drm-amdkfd-Fix-to-mark-fence-as-explicit-for-kfd.patch
patch 2805-drm-amdgpu-Fix-amdgpu_sync_add_later-to-preserve-exp.patch
patch 2806-drm-amd-display-fix-AZ-clock-not-enabled-before-prog.patch
patch 2807-drm-amd-display-use-configurable-FBC-option-in-dm.patch
patch 2808-drm-amd-display-use-num_timing_generator-instead-of-.patch
patch 2809-drm-amd-display-Fix-warnings-on-S3-resume.patch
patch 2810-drm-amd-display-Miss-register-MST-encoder-cbs.patch
patch 2811-drm-amd-display-add-flip_immediate-to-commit-update-.patch
patch 2812-drm-amd-display-Remove-dangling-planes-on-dc-commit-.patch
patch 2813-drm-amd-display-Fix-formatting-for-null-pointer-dere.patch
patch 2814-drm-amd-display-fix-MST-link-training-fail-division-.patch
patch 2815-drm-amd-display-Check-aux-channel-before-MST-resume.patch
patch 2816-drm-amd-display-fix-split-viewport-rounding-error.patch
patch 2817-drm-amd-display-Revert-noisy-assert-messages.patch
patch 2818-drm-amd-display-Do-DC-mode-change-check-when-adding-.patch
patch 2819-drm-amd-display-check-plane-state-before-validating-.patch
patch 2820-drm-amd-display-fix-memory-leaks-on-error-exit-retur.patch
patch 2821-drm-amd-display-fix-seq-issue-turn-on-clock-before-p.patch
patch 2822-drm-amd-display-try-to-find-matching-audio-inst-for-.patch
patch 2823-drm-amd-display-Fix-amdgpu_dm-bugs-found-by-smatch.patch
patch 2824-drm-amd-display-Bunch-of-smatch-error-and-warning-fi.patch
patch 2825-drm-amd-display-Fix-use-before-NULL-check-in-validat.patch
patch 2826-drm-amd-display-Fix-hubp-check-in-set_cursor_positio.patch
patch 2827-drm-amd-display-Fix-potential-NULL-and-mem-leak-in-c.patch
patch 2828-drm-amd-display-Fix-couple-more-inconsistent-NULL-ch.patch
patch 2829-drm-amd-display-Do-not-put-drm_atomic_state-on-resum.patch
patch 2830-drm-amd-display-fix-gamma-setting.patch
patch 2831-drm-amd-display-Switch-to-drm_atomic_helper_wait_for.patch
patch 2832-drm-amd-display-USB-C-thunderbolt-dock-specific-work.patch
patch 2833-drm-amdkcl-4.15-Keep-drm_atomic_state-put-free-on-re.patch
patch 2834-drm-amdkcl-4.14-Fix-to-use-drm_atomic_helper_wait_fo.patch
patch 2835-drm-amdkcl-4.12-Fix-to-use-original-iterator-in-amdg.patch
patch 2836-drm-amdkcl-RHEL-6.9-Fix-no-color_mgmt_changed-member.patch
patch 2837-drm-move-amd_gpu_scheduler-into-common-location.patch
patch 2838-drm-sched-move-fence-slab-handling-to-module-init-ex.patch
patch 2839-drm-amdkcl-RHEL-6.9-Fix-kfifo-header-file-difference.patch
patch 2840-drm-amdgpu-Dynamic-initialize-IP-base-offset.patch
patch 2841-drm-amdgpu-Use-dynamic-IP-offset-for-register-access.patch
patch 2842-drm-amdgpu-Avoid-use-SOC15_REG_OFFSET-in-static-cons.patch
patch 2843-drm-amdgpu-Change-SOC15_REG_OFFSET-to-use-dynamic-re.patch
patch 2844-drm-admgpu-Reduce-the-usage-of-soc15ip.h.patch
patch 2845-drm-amdkfd-Fix-change-of-SOC15_REG_OFFSET-using-dyna.patch
patch 2846-drm-amdgpu-cleanup-debugfs-handling-a-bit.patch
patch 2847-drm-amdgpu-add-amdgpu_evict_vram-debugfs-file.patch
patch 2848-drm-amdgpu-stop-joining-PDEs.patch
patch 2849-drm-amdgpu-update-one-PDE-at-a-time-v2.patch
patch 2850-drm-amdkcl-4.8-do-not-pin-fb-for-nonblocking-commits.patch
patch 2851-drm-amdkcl-4.10-free-atomic-state-on-successful-atom.patch
patch 2852-drm-amdkfd-Fix-suspend-resume.patch
patch 2853-drm-amdkfd-RHEL-6.8-fix-for-hash_for_each_rcu.patch
patch 2854-drm-amdkfd-Fix-signal-handling-performance-again.patch
patch 2855-drm-amdkfd-Hardware-DWORD-size-is-4-bytes.patch
patch 2856-drm-amdkfd-Use-order_base_2-to-get-log2-of-buffes-si.patch
patch 2857-drm-amdkfd-Fix-dbg_unregister-on-CZ.patch
patch 2858-drm-amdkfd-Rename-GFX8-trap-handler.patch
patch 2859-drm-amdkfd-Simplify-CWSR-trap-handler-management-for.patch
patch 2860-drm-amdkfd-Fix-and-simplify-TBA-TMA-allocation-and-m.patch
patch 2861-drm-amdkfd-Simplify-kfd_reserved_mem_mmap.patch
patch 2862-drm-amdkfd-Removed-unused-bo-mmap-functions.patch
patch 2863-drm-amdkfd-Address-inconsistent-returns-locks.patch
patch 2864-drm-amdkfd-Fix-PTR_ERR-errors.patch
patch 2865-drm-amdkfd-Address-logic-error-for-actual_size.patch
patch 2866-drm-amdkfd-Fix-printing-pointer-cast.patch
patch 2867-drm-amdkfd-Check-for-NULL-return-on-kzalloc.patch
patch 2868-drm-amdkfd-Fix-logic-for-mem_available.patch
patch 2869-drm-amdkfd-Delete-a-useless-parameter-from-create_qu.patch
patch 2870-drm-amdkfd-no-process-eviction-is-scheduled-after-pr.patch
patch 2871-drm-amdkfd-kmap-PD-bo-after-PD-is-restored.patch
patch 2872-drm-amdkfd-return-error-and-error-code-if-map-to-gpu.patch
patch 2873-amd-amdkfd-Remove-unused-functions-write_vmid_invali.patch
patch 2874-amd-amdkfd-Remove-write_vmid_invalidate_request-from.patch
patch 2875-drm-amdkfd-KFD-doesn-t-support-TONGA-SRIOV.patch
patch 2876-drm-amd-display-remove-usage-of-legacy_cursor_update.patch
patch 2877-drm-amd-display-Add-dm_logger_append_va-API.patch
patch 2878-drm-amd-display-Don-t-call-dm_log_to_buffer-directly.patch
patch 2879-drm-amd-display-Remove-unnecessary-wait-mpcc-idle.patch
patch 2880-drm-amd-display-fix-seq-issue-turn-on-clock-before-p.patch
patch 2881-drm-amd-display-try-to-find-matching-audio-inst-for-.patch
patch 2882-drm-amd-display-dal-3.1.21.patch
patch 2883-drm-amd-display-Integrating-MPC-pseudocode.patch
patch 2884-drm-amd-display-Remove-PSR-functions-in-Linux.patch
patch 2885-drm-amd-display-Remove-plane_res.mi-check-in-dce110_.patch
patch 2886-drm-amd-display-Remove-redundant-checks-in-set_defau.patch
patch 2887-drm-amd-display-Fix-potential-mem-leak-in-DC-constru.patch
patch 2888-drm-amd-display-Fixed-read-wrong-reg-to-get-bot_sel.patch
patch 2889-drm-amd-display-MPC-updates.patch
patch 2890-drm-amd-display-Use-same-wait-mpcc-idle-function.patch
patch 2891-drm-amd-display-Add-optimized_required-flag.patch
patch 2892-drm-amd-display-Change-optimized_required-logic.patch
patch 2893-drm-amd-display-Implement-work-around-for-optc-under.patch
patch 2894-drm-amd-display-Add-dcc_change-surface-update-flag.patch
patch 2895-drm-amd-display-dal-3.1.22.patch
patch 2896-drm-amd-display-Fix-access-of-wrong-array-element-TF.patch
patch 2897-drm-amd-display-Clean-up-os_types.h-a-bit.patch
patch 2898-drm-amd-display-dal-3.1.23.patch
patch 2899-drm-amd-display-Disable-plane-right-after-disconnect.patch
patch 2900-drm-amd-display-CNVC-pseudocode-review-follow-up.patch
patch 2901-Fixing-the-compilation-issues-v9.patch
patch 2902-drm-amd-display-Reset-MPCC-muxes-during-init.patch
patch 2903-drm-amd-display-Build-unity-lut-for-shaper.patch
patch 2904-drm-amd-display-OPP-DPG-test-pattern.patch
patch 2905-drm-amd-display-Add-is_tiling_rotated-flag-to-plane_.patch
patch 2906-drm-amd-display-fix-recout_skip-calculation-when-rot.patch
patch 2907-drm-amd-display-Program-cursor-regs-after-context-sw.patch
patch 2908-drm-amd-display-Cache-cursor-position.patch
patch 2909-drm-amd-display-Refine-update-flags-usage-in-update_.patch
patch 2910-drm-amd-display-Set-mpcc_disconnect_pending-during-M.patch
patch 2911-drm-amd-display-dal-3.1.24.patch
patch 2912-drm-amd-display-Use-macro-for-isnan-check.patch
patch 2913-drm-amd-display-Add-disclaimer-to-BW-and-DML-code-pr.patch
patch 2914-drm-amd-display-really-fix-time-out-in-init-sequence.patch
patch 2915-drm-amd-display-Print-DC_VER-at-DC-init.patch
patch 2916-drm-amd-display-Disable-freesync-by-default.patch
patch 2917-drm-amd-display-set-chroma-taps-to-1-when-not-scalin.patch
patch 2918-drm-amd-display-Add-dppclk-to-dcn_bw_clocks.patch
patch 2919-drm-amd-display-add-assert-to-verify-dcn_calc-input-.patch
patch 2920-drm-amd-display-dpp-clean-up.patch
patch 2921-drm-amd-display-Move-unity-TF-type-to-predefined-typ.patch
patch 2922-drm-amd-display-OPTC-cleanup-implementation.patch
patch 2923-drm-amd-display-Correct-fixed-point-calculation.patch
patch 2924-drm-amd-display-use-REG_UPDATE-for-MPC-mux.patch
patch 2925-drm-amd-display-Move-OPP-mpc-tree-initialization-to-.patch
patch 2926-drm-amd-display-fix-missing-pixel-clock-adjustment-f.patch
patch 2927-drm-amd-display-Move-wait-for-hpd-ready-out-from-edp.patch
patch 2928-drm-amd-display-remove-format_control-from-set_curso.patch
patch 2929-drm-amd-display-use-clamping-rather-than-truncation-.patch
patch 2930-drm-amd-display-Remove-redundant-NULL-check-in-DCE11.patch
patch 2931-drm-amd-display-Remove-grph_object_id.c-and-move-fun.patch
patch 2932-drm-amd-display-Add-TODO-item-to-remove-vector.c.patch
patch 2933-drm-amd-display-dal-3.1.25.patch
patch 2934-drm-amdgpu-use-polling-mem-to-set-SDMA3-wptr-for-VF.patch
patch 2935-drm-amdgpu-resize-VRAM-BAR-for-CPU-access-v6.patch
patch 2936-drm-amdgpu-bypass-FB-resizing-for-SRIOV-VF.patch
patch 2937-drm-amdgpu-require-a-root-bus-window-above-4GB-for-B.patch
patch 2938-drm-amdkcl-4.15-Disable-amdgpu_device_resize_fb_bar-.patch
patch 2939-drm-amdgpu-remove-last_entry_used-from-the-VM-code.patch
patch 2940-drm-amdgpu-remove-keeping-the-addr-of-the-VM-PDs.patch
patch 2941-fixing-the-compilation-errors-v10.patch
patch 2942-drm-amdgpu-batch-PDE-updates-again.patch
patch 2943-drm-amdgpu-allow-get_vm_pde-to-change-flags-as-well.patch
patch 2944-drm-amdgpu-no-need-to-evict-VRAM-in-device_fini.patch
patch 2945-drm-amdgpu-no-need-with-INT-for-fence-polling.patch
patch 2946-drm-amdgpu-fix-MAP_QUEUES-paramter.patch
patch 2947-drm-amdgpu-correct-vce-fw-data-and-stack-size.patch
patch 2948-drm-amdgpu-make-function-names-consistent-in-nbio-fi.patch
patch 2949-drm-amdgpu-convert-nbio-to-use-callbacks.patch
patch 2950-drm-amdgpu-drop-the-bios-scratch-reg-callbacks-from-.patch
patch 2951-drm-amdgpu-drop-soc15_init_golden_registers.patch
patch 2952-drm-amdgpu-fix-huge-page-setting-for-ATS-case.patch
patch 2953-drm-amd-pp-implement-dpm_get_sclk-mclk-for-RV.patch
patch 2954-drm-amdgpu-remove-some-old-gc-9.x-registers.patch
patch 2955-drm-amdgpu-drop-scratch-regs-save-and-restore-from-S.patch
patch 2956-drm-amdgpu-drop-scratch-regs-save-and-restore-from-G.patch
patch 2957-drm-amdgpu-drop-amdgpu_atombios_scratch_regs_save-re.patch
patch 2958-drm-amdgpu-fix-NULL-err-for-sriov-detect.patch
patch 2959-drm-amd-pp-reset-dpm-level-when-adjust-power-state.patch
patch 2960-drm-amdgpu-add-enumerate-for-PDB-PTB-v3.patch
patch 2961-drm-amdgpu-Add-gpu_recovery-parameter.patch
patch 2962-drm-amdgpu-Simplify-amdgpu_lockup_timeout-usage.patch
patch 2963-drm-amdgpu-setup-the-shared-and-private-apertures-on.patch
patch 2964-drm-amd-display-remove-redundant-null-check-of-array.patch
patch 2965-drm-amdgpu-always-cancel-uvd-idle-handler-in-uvd-sus.patch
patch 2966-drm-amdgpu-restore-uvd-fence-seq-in-uvd-resume.patch
patch 2967-drm-amdkfd-Fix-parameter-changes-in-amdgpu_gart_get_.patch
patch 2968-drm-amdgpu-implement-2-1-PD-support-for-Raven-v3.patch
patch 2969-Revert-drm-amd-amdgpu-set-gtt-size-according-to-syst.patch
patch 2970-drm-amdgpu-move-atom-functions-from-amdgpu_device.c.patch
patch 2971-drm-amdgpu-use-consistent-naming-for-static-funcs-in.patch
patch 2972-drm-amdgpu-rename-amdgpu_suspend-to-amdgpu_device_ip.patch
patch 2973-drm-amdgpu-move-debugfs-functions-to-their-own-file.patch
patch 2974-drm-amdgpu-rename-amdgpu_wb_-functions.patch
patch 2975-drm-amdgpu-rename-amdgpu_program_register_sequence.patch
patch 2976-drm-amdgpu-rename-amdgpu_pci_config_reset.patch
patch 2977-drm-amdgpu-move-amdgpu_doorbell_get_kfd_info-to-amdg.patch
patch 2978-drm-amdgpu-rename-amdgpu_-_location-functions.patch
patch 2979-drm-amdgpu-move-fw_reserve-functions-to-amdgpu_ttm.c.patch
patch 2980-fixes-the-compilation-issues-v5.patch
patch 2981-drm-amdgpu-rename-ip-block-helper-functions.patch
patch 2982-drm-amdgpu-rename-amdgpu_need_post.patch
patch 2983-drm-amdgpu-move-dummy-page-functions-to-amdgpu_gart..patch
patch 2984-drm-amdgpu-rename-amdgpu_gpu_recover.patch
patch 2985-drm-amdgpu-move-amdgpu_need_backup-to-amdgpu_object..patch
patch 2986-drm-amdgpu-rename-amdgpu_get_pcie_info.patch
patch 2987-drm-amd-pp-delete-dead-code-of-arbiter-overdriver-cl.patch
patch 2988-drm-amd-pp-implement-phm_reset_power_profile_state.patch
patch 2989-drm-amd-pp-delete-repeated-call-of-force_dpm_level.patch
patch 2990-drm-amd-pp-export-more-smu-message-on-Rv.patch
patch 2991-drm-amdgpu-use-defines-for-mmBIF_IOV_FUNC_IDENTIFIER.patch
patch 2992-drm-amd-pp-Move-smu_version-to-common-code.patch
patch 2993-drm-amd-pp-Save-smu7-fw-version-in-Powerplay.patch
patch 2994-drm-amd-pp-Get-and-save-Rv-smu-version.patch
patch 2995-drm-amd-pp-Implement-force_dpm_level-on-Rv.patch
patch 2996-drm-amd-display-Print-type-if-we-get-wrong-ObjectID-.patch
patch 2997-drm-amd-display-Remove-dead-enable_plane-function-de.patch
patch 2998-drm-amd-display-Error-print-when-ATOM-BIOS-implement.patch
patch 2999-drm-amd-display-Don-t-spam-debug-log-on-long-reg-wai.patch
patch 3000-drm-amd-display-Define-BLNDGAM_CONFIG_STATUS.patch
patch 3001-drm-amd-display-Do-DC-mode-change-check-after-stream.patch
patch 3002-drm-amd-display-Declare-and-share-color-space-types-.patch
patch 3003-drm-amd-display-Fix-check-for-whether-dmcu-fw-is-run.patch
patch 3004-drm-amd-display-Fix-rehook-MST-display-not-light-bac.patch
patch 3005-drm-amd-display-dal-3.1.26.patch
patch 3006-drm-amd-display-clean-up-dcn-soc-params.patch
patch 3007-drm-amd-display-fix-rotated-surface-scaling.patch
patch 3008-drm-amd-display-Update-HUBP.patch
patch 3009-drm-amd-display-fix-global-sync-param-retrieval-when.patch
patch 3010-drm-amd-display-Add-hdr_supported-flag.patch
patch 3011-drm-amd-display-Use-the-maximum-link-setting-which-E.patch
patch 3012-drm-amd-display-Remove-dwbc-from-pipe_ctx.patch
patch 3013-drm-amd-display-reprogram-surface-config-on-scaling-.patch
patch 3014-drm-amd-display-fix-180-full-screen-pipe-split.patch
patch 3015-drm-amd-display-Clean-up-DCN-cursor-code.patch
patch 3016-drm-amd-display-Call-validate_fbc-should_enable_fbc.patch
patch 3017-drm-amd-display-integrating-optc-pseudocode.patch
patch 3018-drm-amd-display-hubp-refactor.patch
patch 3019-drm-amd-display-Put-dcn_mi_registers-with-other-stru.patch
patch 3020-drm-amd-display-Only-blank-DCN-when-we-have-set_blan.patch
patch 3021-drm-amd-display-Fix-unused-variable-warnings.patch
patch 3022-drm-amd-display-dal-3.1.27.patch
patch 3023-drm-amd-display-check-for-null-before-calling-is_bla.patch
patch 3024-drm-amd-display-Update-FMT-and-OPPBUF-functions.patch
patch 3025-drm-amd-display-Expose-dpp1_set_cursor_attributes.patch
patch 3026-drm-amdgpu-fix-test-for-shadow-page-tables.patch
patch 3027-drm-amdgpu-separate-VMID-and-PASID-handling.patch
patch 3028-drm-amdgpu-rename-vm_id-to-vmid.patch
patch 3029-drm-amdgpu-drop-client_id-from-VM.patch
patch 3030-drm-amd-pp-Get-and-save-CZ-ST-smu-version.patch
patch 3031-Revert-drm-amdgpu-drop-client_id-from-VM.patch
patch 3032-Revert-drm-amdgpu-rename-vm_id-to-vmid.patch
patch 3033-Revert-drm-amdgpu-separate-VMID-and-PASID-handling.patch
patch 3034-drm-amdgpu-separate-VMID-and-PASID-handling.patch
patch 3035-drm-amdgpu-rename-vm_id-to-vmid.patch
patch 3036-drm-amdgpu-drop-client_id-from-VM.patch
patch 3037-Revert-drm-amdgpu-Raise-KFD-system-memory-limits-to-.patch
patch 3038-drm-amdgpu-fix-VM-faults-with-per-VM-BOs.patch
patch 3039-drm-ttm-use-an-operation-ctx-for-ttm_tt_populate-in-.patch
patch 3040-Workaround-tlb-invalidating-issue-by-disabling-MMHUB.patch
patch 3041-drm-amdkfd-Do-not-change-amdgpu_vm_size-on-Raven-in-.patch
patch 3042-drm-amdkfd-Fix-return-value-0-when-execute_queues_cp.patch
patch 3043-drm-amdkfd-Fail-public-mem-alloc-on-small-bar-dev.patch
patch 3044-drm-amdgpu-Return-mmap-offset-for-private-vram.patch
patch 3045-drm-amdkfd-avoid-calling-execute_queues_cpsch-when-d.patch
patch 3046-drm-amdkfd-Replace-hardcoded-values-by-using-the-pro.patch
patch 3047-drm-amdkfd-Remove-useless-code.patch
patch 3048-drm-amdkfd-Invalidate-tlb-before-vmid-deallocation-f.patch
patch 3049-drm-amdkfd-Delete-an-useless-call-of-kfd_flush_tlb.patch
patch 3050-drm-amdkfd-Add-invalidate_tlbs_vmid-into-kfd2dgd_cal.patch
patch 3051-drm-amdkfd-Simplify-tlb-invalidation-for-non-HWS-cas.patch
patch 3052-drm-amdkfd-Consolidate-duplicate-memory-banks-info-i.patch
patch 3053-drm-amd-display-Fixed-MST-display-doesn-t-light-up.patch
patch 3054-Hybrid-Version-18.10.3.13.patch
patch 3055-drm-amdgpu-Correct-the-IB-size-of-bo-update-mapping.patch
patch 3056-drm-amd-powerplay-drop-unneeded-newline.patch
patch 3057-drm-amdgpu-gfx9-only-init-the-apertures-used-by-KGD-.patch
patch 3058-drm-amd-powerplay-remove-unused-parameter-of-phm_sta.patch
patch 3059-drm-amd-powerplay-removed-hwmgr_handle_task-unused-p.patch
patch 3060-drm-amd-powerplay-set-pp_num_states-as-0-on-error-si.patch
patch 3061-drm-amdgpu-loosen-the-criteria-for-huge-pages-a-bit.patch
patch 3062-drm-amdgpu-minor-optimize-VM-moved-handling-v2.patch
patch 3063-drm-amdgpu-update-VM-PDs-after-the-PTs.patch
patch 3064-drm-amdgpu-simplify-huge-page-handling.patch
patch 3065-drm-amd-powerplay-correct-PP_TemperatureRange-member.patch
patch 3066-drm-amd-powerplay-new-cgs-interface-setting-dpm-ther.patch
patch 3067-drm-amd-powerplay-added-a-new-callback-for-asic-spec.patch
patch 3068-drm-amd-powerplay-populate-the-hwmon-temp-range-as-p.patch
patch 3069-drm-amd-powerplay-export-vega10-specific-thermal-ran.patch
patch 3070-drm-amd-powerplay-export-the-thermal-ranges-of-VI-as.patch
patch 3071-drm-amd-powerplay-export-the-thermal-ranges-of-Carri.patch
patch 3072-drm-amd-powerplay-use-ffs-fls-instead-of-implementin.patch
patch 3073-drm-amd-powerplay-fix-memory-leakage-when-reload.patch
patch 3074-drm-amdgpu-optimize-moved-handling-only-when-vm_debu.patch
patch 3075-drm-amd-powerplay-fix-typo-error-for-3be7be08ac.patch
patch 3076-drm-amd-pp-Implement-get_max_high_clocks-for-CI-VI.patch
patch 3077-drm-amd-powerplay-Fix-braces-around-scalar-initializ.patch
patch 3078-drm-amdgpu-add-high-priority-compute-support-for-gfx.patch
patch 3079-drm-amdgpu-bump-version-for-gfx9-high-priority-compu.patch
patch 3080-drm-amd-powerplay-Fix-no-cast-warnings-in-smu7_smu_f.patch
patch 3081-drm-amd-pp-Add-a-helper-to-convert-VID-to-voltage-va.patch
patch 3082-drm-amd-pp-Refine-code-shorten-variable-name.patch
patch 3083-drm-amdgpu-fix-semicolon.cocci-warnings.patch
patch 3084-drm-amdgpu-add-new-asic-callbacks-for-HDP-flush-inva.patch
patch 3085-drm-amdgpu-add-HDP-asic-callbacks-for-SI.patch
patch 3086-drm-amdgpu-add-HDP-asic-callbacks-for-CIK.patch
patch 3087-drm-amdgpu-add-HDP-asic-callbacks-for-VI.patch
patch 3088-drm-amdgpu-add-HDP-asic-callbacks-for-SOC15-v2.patch
patch 3089-drm-amdgpu-adjust-HDP-write-queue-flushing-for-tlb-i.patch
patch 3090-drm-amdgpu-drop-extra-tlb-invalidation-in-gpuvm.patch
patch 3091-drm-amd-display-PME-sw-wa-to-support-waking-AZ-D3.patch
patch 3092-drm-amd-display-Fix-Maximus-pixel-clock-programming.patch
patch 3093-drm-amd-display-Eliminate-several-Maximus-specific-c.patch
patch 3094-drm-amd-display-make-FBC-mem-alloc-dynamic.patch
patch 3095-drm-amd-display-cleanup-after-FBC-init-rework.patch
patch 3096-drm-amd-display-Fix-topology-change-issue-in-MST-reh.patch
patch 3097-drm-amd-display-Use-pipe_control_lock-instead-of-tg-.patch
patch 3098-drm-amd-display-Fix-FBC-topology-change.patch
patch 3099-drm-amd-display-Prevent-master-programming-in-multis.patch
patch 3100-drm-amd-display-Pass-full-3x4-remap-matrix-for-color.patch
patch 3101-drm-amd-display-disable-eDP-backlight-for-extend-mon.patch
patch 3102-drm-amd-display-Move-MAX_TMDS_CLOCK-define-to-header.patch
patch 3103-drm-amd-display-Remove-unnecessary-fail-labels-in-cr.patch
patch 3104-drm-amd-display-Pass-signal-directly-to-enable_tmds_.patch
patch 3105-drm-amd-display-dal-3.1.28.patch
patch 3106-drm-amd-display-Disable-eDP-with-a-proper-sequence.patch
patch 3107-drm-amd-display-Debug-print-when-validate_stream-fai.patch
patch 3108-drm-amd-display-Don-t-allow-dual-link-DVI-on-all-ASI.patch
patch 3109-drm-amd-display-Don-t-block-dual-link-DVI-modes.patch
patch 3110-drm-amd-display-Debug-print-reason-for-mode-validati.patch
patch 3111-drm-amd-display-Move-hubp-reg-access-from-hwss-to-hu.patch
patch 3112-drm-amd-display-Use-real-BE-and-FE-index-to-program-.patch
patch 3113-drm-amd-display-Log-which-clocks-are-unsupported.patch
patch 3114-drm-amd-display-Make-create_stream_for_sink-more-con.patch
patch 3115-drm-amd-display-Define-remove_stream_from_ctx-resour.patch
patch 3116-drm-amd-display-Fix-check-for-setting-input-TF.patch
patch 3117-drm-amd-display-Drop-dm_connector_update_modes.patch
patch 3118-drm-amd-display-Check-opplist-in-pipe-ctx-not-in-res.patch
patch 3119-drm-amd-display-Move-dpp-reg-access-from-hwss-to-dpp.patch
patch 3120-drm-amd-display-Fix-null-derefs-on-non-dcn-builds.patch
patch 3121-drm-amd-display-disablePSR-in-UpdatePlanes-in-Passiv.patch
patch 3122-drm-amd-display-Move-opp-reg-access-from-hwss-to-opp.patch
patch 3123-drm-amd-display-Refactor-remove-mpcc-processing.patch
patch 3124-drm-amd-display-clean-up-DCHUBBUB-register-definitio.patch
patch 3125-drm-amd-display-Implement-interface-for-CRC-on-CRTC.patch
patch 3126-drm-amd-display-Implement-CRTC-CRC-for-DCE110.patch
patch 3127-drm-amd-display-Update-dcn10_init_hw-for-FPGA.patch
patch 3128-drm-amd-display-RS4-RV-SDR-Brightness-Boost.patch
patch 3129-drm-amdkcl-4.10-Fix-kcl-for-drm_debugfs_crc-files.patch
patch 3130-drm-amdgpu-Update-page-diretories-after-page-tables.patch
patch 3131-drm-amdkfd-Handle-MEM_VIOL-for-halted-wavefronts.patch
patch 3132-drm-amdkfd-Disable-Raven-KFD-support-on-pre-4.16-ker.patch
patch 3133-drm-amdgpu-fix-64bit-BAR-detection.patch
patch 3134-drm-amdgpu-fix-amdgpu_vm_pasid_fault_credit.patch
patch 3135-drm-amdgpu-Update-MMHUB-power-gating-register-settin.patch
patch 3136-drm-amdgpu-gfx9-fix-ngg-enablement-to-clear-gds-rese.patch
patch 3137-drm-amdgpu-allow-framebuffer-in-GART-memory-as-well.patch
patch 3138-drm-amdgpu-Move-to-gtt-before-cpu-accesses-dma-buf.patch
patch 3139-drm-amd-display-Enable-VM-support-only-on-APUs-newer.patch
patch 3140-drm-amdgpu-only-allow-scatter-gather-display-with-DC.patch
patch 3141-drm-amdgpu-cma-fix-copy-within-same-BO.patch
patch 3142-drm-amdkfd-cma-check-invalid-BO-range.patch
patch 3143-fixes-the-compilation-issues-v6.patch
patch 3144-drm-amdgpu-use-pap-format-string-for-phys_addr_t.patch
patch 3145-drm-amdgpu-fix-typo-in-amdgpu_vce_validate_bo.patch
patch 3146-drm-amdgpu-Remove-immutable-flag-from-freesync_capab.patch
patch 3147-drm-amdgpu-rename-pas_id-to-pasid.patch
patch 3148-drm-amdgpu-print-the-PASID-with-VM-faults-on-GMC-v7.patch
patch 3149-drm-amdgpu-print-the-PASID-with-VM-faults-on-GMC-v8.patch
patch 3150-drm-amdgpu-remove-agp_base.patch
patch 3151-drm-amdgpu-move-struct-amdgpu_mc-into-amdgpu_gmc.h.patch
patch 3152-drm-amdgpu-add-AMD_DC_PRE_VEGA-dc-support-config.patch
patch 3153-amdgpu-dm-Default-PRE_VEGA-ASIC-support-to-y.patch
patch 3154-drm-amdgpu-fix-CPU-based-VM-updates.patch
patch 3155-drm-amdgpu-move-PD-PT-address-calculation-into-backe.patch
patch 3156-drm-amdgpu-add-amdgpu_pasid_free_delayed-v2.patch
patch 3157-drm-amdgpu-always-allocate-a-PASIDs-for-each-VM-v2.patch
patch 3158-drm-amdgpu-trace-allocated-PASIDs.patch
patch 3159-drm-amdgpu-trace-the-PASID-instead-of-the-VM-pointer.patch
patch 3160-drm-amdgpu-forward-pasid-to-backend-flush-implementa.patch
patch 3161-drm-amd-pp-Add-memory-clock-info-display-on-Cz-St.patch
patch 3162-drm-amd-pp-Export-registers-for-read-vddc-on-VI-Vega.patch
patch 3163-drm-amd-pp-Add-querying-current-gfx-voltage-for-CI-V.patch
patch 3164-drm-amd-pp-Add-querying-current-gfx-voltage-for-Vega.patch
patch 3165-drm-amd-pp-Implement-voltage-regulator-config-on-CI.patch
patch 3166-drm-amd-pp-Fix-SMIO-implementation-on-CI.patch
patch 3167-drm-amdgpu-add-custom-power-policy-support-in-sysfs.patch
patch 3168-drm-amd-pp-Add-custom-power-profile-mode-support-on-.patch
patch 3169-drm-amd-pp-Store-stable-Pstate-clocks.patch
patch 3170-drm-amd-pp-Add-stable-Pstate-clk-display-support-in-.patch
patch 3171-drm-amd-pp-Refine-code-abbreviate-variable-name.patch
patch 3172-drm-amd-pp-Move-DPMTABLE_-definitions-to-common-head.patch
patch 3173-drm-amd-pp-Add-a-new-pp-feature-mask-bit-for-OD-feat.patch
patch 3174-drm-amd-pp-Add-and-initialize-OD_dpm_table-for-CI-VI.patch
patch 3175-drm-amd-pp-Add-OD-driver-clock-voltage-display-on-sm.patch
patch 3176-drm-amdgpu-all-vram-is-visible-for-APU.patch
patch 3177-drm-amdgpu-Fix-build-error-in-gmc_v9_0.c.patch
patch 3178-drm-amdkfd-fix-amdgpu_device-renamed-amdgpu_mc-amdgp.patch
patch 3179-drm-amdgpu-only-check-for-ECC-on-Vega10.patch
patch 3180-Revert-drm-amdgpu-always-allocate-a-PASIDs-for-each-.patch
patch 3181-drm-amdkfd-Use-legacy-mode-to-do-tlb-invalidation.patch
patch 3182-Revert-Workaround-tlb-invalidating-issue-by-disablin.patch
patch 3183-drm-amdkfd-Fix-and-simplify-evict-restore-synchroniz.patch
patch 3184-drm-amdgpu-Fix-potential-deadlock-when-restoring-BOs.patch
patch 3185-drm-amdkfd-Fix-eviction-fence-ref.-count.patch
patch 3186-drm-amdgpu-Expose-more-GPU-sensor-queries.patch
patch 3187-drm-amdgpu-Bump-driver-version-for-sensor-pstate-clk.patch
patch 3188-drm-amdgpu-wire-up-emit_wreg-for-gfx-v6.patch
patch 3189-drm-amdgpu-wire-up-emit_wreg-for-gfx-v7.patch
patch 3190-drm-amdgpu-wire-up-emit_wreg-for-gfx-v8.patch
patch 3191-drm-amdgpu-wire-up-emit_wreg-for-gfx-v9.patch
patch 3192-drm-amdgpu-wire-up-emit_wreg-for-SI-DMA.patch
patch 3193-drm-amdgpu-wire-up-emit_wreg-for-CIK-SDMA.patch
patch 3194-drm-amdgpu-wire-up-emit_wreg-for-SDMA-v2.4.patch
patch 3195-drm-amdgpu-wire-up-emit_wreg-for-SDMA-v3.patch
patch 3196-drm-amdgpu-wire-up-emit_wreg-for-SDMA-v4.patch
patch 3197-drm-amdgpu-wire-up-emit_wreg-for-UVD-v6.patch
patch 3198-drm-amdgpu-wire-up-emit_wreg-for-UVD-v7.patch
patch 3199-drm-amdgpu-wire-up-emit_wreg-for-VCE-v4.patch
patch 3200-drm-amdgpu-wire-up-emit_wreg-for-VCN-v1.patch
patch 3201-drm-amdgpu-add-new-amdgpu_gmc_emit_flush_gpu_tlb-cal.patch
patch 3202-drm-amdgpu-implement-gmc_v6_0_emit_flush_gpu_tlb.patch
patch 3203-drm-amdgpu-implement-gmc_v7_0_emit_flush_gpu_tlb.patch
patch 3204-drm-amdgpu-implement-gmc_v8_0_emit_flush_gpu_tlb.patch
patch 3205-drm-amdgpu-implement-gmc_v9_0_emit_flush_gpu_tlb.patch
patch 3206-drm-amdgpu-add-PASID-mapping-for-GMC-v7.patch
patch 3207-drm-amdgpu-add-PASID-mapping-for-GMC-v8.patch
patch 3208-drm-amdgpu-add-PASID-mapping-for-GMC-v9.patch
patch 3209-drm-amdgpu-Reenable-manual-GPU-reset-from-sysfs.patch
patch 3210-drm-amdgpu-Use-new-TTM-flag-to-avoid-OOM-triggering.patch
patch 3211-drm-amd-amdgpu-Add-Polaris-version-check.patch
patch 3212-drm-amdgpu-split-soc15ip-header-into-ip-and-ip_offse.patch
patch 3213-drm-amdgpu-include-new-ip-and-ip-offset-headers.patch
patch 3214-drm-amd-pp-include-new-ip-and-ip-offset-headers.patch
patch 3215-drm-amd-dc-include-new-ip-and-ip_offset-headers.patch
patch 3216-drm-amdgpu-retire-soc15ip.h.patch
patch 3217-drm-amdgpu-powerplay-vega10-fix-compute-profile-name.patch
patch 3218-drm-amdgpu-drop-the-drm-irq-pre-post-un-install-call.patch
patch 3219-drm-amdgpu-change-header-soc15ip-to-soc15_hw_ip.patch
patch 3220-Hybrid-Version-18.10.4.13.patch
patch 3221-drm-amd-pp-Add-hwmgr-interface-for-edit-dpm-table.patch
patch 3222-drm-amd-pp-Add-edit-commit-show-OD-clock-voltage-sup.patch
patch 3223-drm-amd-pp-Disable-OD-feature-if-VBIOS-limits.patch
patch 3224-drm-amd-pp-Disable-OD-feature-on-APU-Iceland.patch
patch 3225-drm-amd-pp-Implement-edit_dpm_table-on-smu7.patch
patch 3226-drm-amd-pp-Update-smu7-dpm-table-with-OD-clock-volta.patch
patch 3227-drm-amd-pp-Add-update_avfs-call-when-set_power_state.patch
patch 3228-drm-amdgpu-add-optional-ring-to-_hdp-callbacks.patch
patch 3229-drm-amdgpu-fallback-to-generic-HDP-operation.patch
patch 3230-drm-amdgpu-remove-now-superflous-_hdp-operation.patch
patch 3231-drm-amdgpu-rename-static-functions-in-amdgpu_display.patch
patch 3232-drm-amdgpu-rename-amdgpu_crtc_page_flip_target.patch
patch 3233-drm-amdgpu-rename-amdgpu_crtc_set_config.patch
patch 3234-drm-amdgpu-rename-amdgpu_print_display_setup.patch
patch 3235-drm-amdgpu-rename-amdgpu_ddc_probe.patch
patch 3236-drm-amdgpu-rename-amdgpu_framebuffer_init.patch
patch 3237-drm-amdgpu-rename-amdgpu_user_framebuffer_create.patch
patch 3238-drm-amdgpu-rename-amdgpu_modeset_create_props.patch
patch 3239-drm-amdgpu-rename-amdgpu_update_display_priority.patch
patch 3240-drm-amdgpu-rename-amdgpu_crtc_scaling_mode_fixup.patch
patch 3241-drm-amdgpu-rename-amdgpu_get_crtc_scanoutpos.patch
patch 3242-drm-amdgpu-rename-amdgpu_crtc_idx_to_irq_type.patch
patch 3243-drm-amdgpu-rename-amdgpu_freesync_ioctl.patch
patch 3244-drm-amdgpu-reduce-reserved-VA-size.patch
patch 3245-drm-amdgpu-apply-top-reserved-VA-space-to-pre-Vega10.patch
patch 3246-drm-amdgpu-consistently-use-AMDGPU_CSA_VADDR.patch
patch 3247-drm-amd-display-dc-Remove-unused-display_mode_vba.c.patch
patch 3248-drm-amd-display-Update-the-register-GRPH_SWAP_CNTL-i.patch
patch 3249-drm-amd-display-Remove-unused-param-in-DML.patch
patch 3250-drm-amd-display-Move-output_tf-to-stream_state-updat.patch
patch 3251-drm-amd-display-Early-return-on-crc-get.patch
patch 3252-drm-amd-display-Call-update_stream_signal-directly-f.patch
patch 3253-fixes-the-compilation-issues-v14.patch
patch 3254-drm-amd-display-Demote-error-print-to-debug-print-wh.patch
patch 3255-drm-amd-display-Synchronize-update-plane-addr-for-fr.patch
patch 3256-drm-amd-display-Add-timing-generator-count-to-resour.patch
patch 3257-drm-amd-display-fix-backlight-not-off-at-resume-from.patch
patch 3258-drm-amd-display-Define-dpp1_set_cursor_position-in-h.patch
patch 3259-drm-amd-display-disable-az_clock_gating-for-endpoint.patch
patch 3260-drm-amd-display-revert-to-hacking-bounding-box-for-p.patch
patch 3261-drm-amd-display-dpms-off-mute-az-audio-endpoint-only.patch
patch 3262-drm-amd-display-dal-3.1.29.patch
patch 3263-drm-amd-display-Force-full-update-on-pixel_format_ch.patch
patch 3264-drm-amd-display-Add-debug-flag-for-p010_mpo_support.patch
patch 3265-drm-amd-display-eDP-sequence-BL-off-first-then-DP-bl.patch
patch 3266-drm-amd-display-Fix-unused-variable-compilation-erro.patch
patch 3267-drm-amd-display-Add-temporary-delay-on-disconnect-pa.patch
patch 3268-drm-amd-display-Remove-unnecessary-register-programm.patch
patch 3269-drm-amd-display-Add-temporary-delay-on-disconnect-pa.patch
patch 3270-drm-amd-display-Fix-warning-about-misaligned-code.patch
patch 3271-drm-amd-display-Remove-unsued-mutex-and-spinlock.patch
patch 3272-drm-amd-display-Remove-timer-handler.patch
patch 3273-drm-amd-pp-Change-activity_target-for-performance-op.patch
patch 3274-drm-amd-pp-Delete-dead-code-in-powerplay.patch
patch 3275-drm-amd-pp-Add-struct-profile_mode_setting-for-smu7.patch
patch 3276-drm-amd-pp-Delete-unnecessary-function-argument-in-p.patch
patch 3277-drm-amdgpu-move-static-CSA-address-to-top-of-address.patch
patch 3278-drm-amdgpu-psp-use-a-function-pointer-structure.patch
patch 3279-drm-amdgpu-soc15-don-t-abuse-IP-soft-reset-for-adapt.patch
patch 3280-drm-amdgpu-pm-handle-fan-properly-when-card-is-power.patch
patch 3281-drm-amdgpu-pm-report-gpu-voltages-via-hwmon-API.patch
patch 3282-drm-amdgpu-pm-report-gpu-average-power-via-hwmon-API.patch
patch 3283-drm-amdgpu-pm-use-read_sensor-API-to-get-temperature.patch
patch 3284-drm-amdgpu-pp-remove-the-get_temperature-API.patch
patch 3285-drm-amdkfd-Remove-executable-permission-requirement-.patch
patch 3286-drm-amdkfd-Fix-crash-in-unmap-to-gpu-while-PD-bo-evi.patch
patch 3287-drm-amd-pp-Delete-debug-info-when-set-power_profile_.patch
patch 3288-drm-amdgpu-Fix-TLB-invalidation-for-gfx7-and-gfx8.patch
patch 3289-drm-amdgpu-fix-vcn_v1_0_dec_ring_emit_wreg.patch
patch 3290-drm-amdgpu-pm-rework-the-hwmon-visibility-settings.patch
patch 3291-drm-amdgpu-use-queue-0-for-kiq-ring.patch
patch 3292-drm-amdgpu-fix-another-potential-cause-of-VM-faults.patch
patch 3293-drm-amdgpu-fix-locking-in-vega10_ih_prescreen_iv.patch
patch 3294-drm-amdgpu-remove-WARN_ON-when-VM-isn-t-found-v2.patch
patch 3295-drm-amdgpu-revert-drm-amdgpu-use-AMDGPU_GEM_CREATE_V.patch
patch 3296-drm-amdgpu-fill-only-the-lower-range-with-ATS-entrie.patch
patch 3297-drm-amdgpu-drop-root-shadow-sync.patch
patch 3298-Revert-drm-amdgpu-fill-only-the-lower-range-with-ATS.patch
patch 3299-drm-amdgpu-revert-Add-a-parameter-to-amdgpu_bo_creat.patch
patch 3300-drm-amdgpu-revert-Add-support-for-filling-a-buffer-w.patch
patch 3301-drm-amdgpu-fill-only-the-lower-range-with-ATS-entrie.patch
patch 3302-drm-amdgpu-fix-amdgpu_bo_create-func-parameter-chang.patch
patch 3303-drm-amdgpu-disable-coarse-grain-clockgating-for-ST.patch
patch 3304-drm-amdgpu-remove-DC-special-casing-for-KB-ML.patch
patch 3305-fixes-the-compilation-issues.patch
patch 3306-drm-amdgpu-limit-the-VM-address-space-with-older-VCE.patch
patch 3307-drm-amdgpu-set-DRIVER_ATOMIC-flag-early.patch
patch 3308-drm-amd-Fix-trailing-semicolons.patch
patch 3309-drm-amdkfd-Unsupport-NULL-device-array-on-GPU-map.patch
patch 3310-drm-amdgpu-Ignore-TLB-flush-before-vmid-allocate.patch
patch 3311-drm-amdkfd-Workaround-SQC-store-failure-in-gfx9-trap.patch
patch 3312-drm-amd-Add-gpu-reset-interfaces-between-amdgpu-and-.patch
patch 3313-drm-amdkfd-Add-gpu-reset-interface-and-place-holder.patch
patch 3314-drm-amdgpu-reset-kfd-during-amdgpu-reset.patch
patch 3315-Revert-drm-amdgpu-fix-vcn_v1_0_dec_ring_emit_wreg.patch
patch 3316-Revert-drm-amdgpu-remove-now-superflous-_hdp-operati.patch
patch 3317-Revert-drm-amdgpu-fallback-to-generic-HDP-operation.patch
patch 3318-Revert-Revert-drm-amdgpu-fix-vcn_v1_0_dec_ring_emit_.patch
patch 3319-drm-amd-pp-Refine-pp_dpm_force_clock_level-functions.patch
patch 3320-drm-amd-pp-Enable-pp_set_power_profile_mode-under-ma.patch
patch 3321-drm-amd-pp-Fix-sysfs-pp_dpm_pcie-bug-on-CI-VI.patch
patch 3322-drm-amdgpu-fix-DW-estimation-on-VI.patch
patch 3323-drm-amdgpu-add-new-emit_reg_wait-callback.patch
patch 3324-drm-amdgpu-implement-gfx_v9_0_ring_emit_reg_wait.patch
patch 3325-drm-amdgpu-implement-sdma_v4_0_ring_emit_reg_wait.patch
patch 3326-drm-amdgpu-implement-uvd_v7_0_-enc_-ring_emit_reg_wa.patch
patch 3327-drm-amdgpu-implement-vce_v4_0_emit_reg_wait-v2.patch
patch 3328-drm-amdgpu-implement-vcn_v1_0_-dec-enc-_ring_emit_re.patch
patch 3329-drm-amdgpu-move-waiting-for-VM-flush-into-gmc_v9_0_e.patch
patch 3330-drm-amd-display-Fixed-non-native-modes-not-lighting-.patch
patch 3331-drm-amd-display-Temporary-fix-for-RHEL6-rotation-iss.patch
patch 3332-drm-amd-Reverting-the-kcl-changes.patch
patch 3333-Fixes-compilation-build-issues.patch
patch 3334-drm-amdgpu-no-job-timeout-setting-on-compute-queues.patch
patch 3335-drm-amdgpu-drop-compute-ring-timeout-setting-for-non.patch
patch 3336-drm-amd-pp-Change-pstate_clk-frequency-unit-to-10KHz.patch
patch 3337-drm-amd-pp-Use-dynamic-gfx_clk-rather-than-hardcoded.patch
patch 3339-revert-to-old-stack.patch
patch 3340-drm-amdkfd-Separate-doorbell-allocation-from-PASID.patch
patch 3341-drm-amdkfd-Use-PASID-manager-from-KGD.patch
patch 3342-drm-amdkfd-Reorganize-kfd-resume-code.patch
patch 3343-drm-amdkfd-Fix-suspend-resume-issue-on-Carrizo-v2.patch
patch 3344-drm-amdkfd-Rectify-the-jiffies-calculation-error-wit.patch
patch 3345-drm-amdkfd-Adjust-dequeue-latencies-and-timeouts.patch
patch 3346-drm-amdkfd-Fix-incorrect-destroy_mqd-parameter.patch
patch 3347-drm-amdkfd-Use-VMID-bitmap-from-KGD-v2.patch
patch 3348-drm-amdkfd-Reuse-CHIP_-from-amdgpu-v2.patch
patch 3349-drm-amdkfd-Drop-_nocpsch-suffix-from-shared-function.patch
patch 3350-drm-amdkfd-Fix-kernel-queue-wrapping-bugs.patch
patch 3351-drm-amdkfd-Print-event-limit-messages-only-once-per-.patch
patch 3352-drm-amdkfd-Avoid-name-confusion-involved-in-queue-un.patch
patch 3353-drm-amdkfd-move-locking-outside-of-unmap_queues_cpsc.patch
patch 3354-drm-amdkfd-Pass-filter-params-to-unmap_queues_cpsch.patch
patch 3355-drm-amdkfd-Fix-MQD-updates.patch
patch 3356-drm-amdkfd-Avoid-submitting-an-unnecessary-packet-to.patch
patch 3357-drm-amdkfd-Improve-process-termination-handling.patch
patch 3358-drm-amdkfd-Compress-unnecessary-function-parameters.patch
patch 3359-drm-amdkfd-Clean-up-process-queue-management.patch
patch 3360-drm-amdkfd-Limit-queue-number-per-process-and-device.patch
patch 3361-drm-amdkfd-Improve-multiple-SDMA-queues-support-per-.patch
patch 3362-drm-amdkfd-Add-SDMA-trap-src-id-to-the-KFD-isr-wante.patch
patch 3363-drm-amdkfd-Don-t-dereference-kfd_process.mm.patch
patch 3364-drm-amdkfd-Short-cut-for-kfd_wait_on_events-without-.patch
patch 3365-drm-amdkfd-Fix-scheduler-race-in-kfd_wait_on_events-.patch
patch 3366-drm-amdkfd-Clean-up-kfd_wait_on_events.patch
patch 3367-drm-amdkfd-Fix-event-destruction-with-pending-waiter.patch
patch 3368-drm-amdkfd-remove-redundant-kfd_event_waiter.input_i.patch
patch 3369-drm-amdkfd-Use-wait_queue_t-to-implement-event-waiti.patch
patch 3370-drm-amdkfd-Simplify-events-page-allocator.patch
patch 3371-drm-amdkfd-Simplify-event-ID-and-signal-slot-managem.patch
patch 3372-drm-amdkfd-Use-IH-context-ID-for-signal-lookup.patch
patch 3373-drm-amdkfd-Make-event-limit-dependent-on-user-mode-m.patch
patch 3374-drm-amdkfd-use-standard-kernel-kfifo-for-IH.patch
patch 3375-drm-amdkfd-increase-IH-num-entries-to-8192.patch
patch 3376-drm-amdkfd-wait-only-for-IH-work-on-IH-exit.patch
patch 3377-drm-amdkfd-use-a-high-priority-workqueue-for-IH-work.patch
patch 3378-drm-radeon-deprecate-and-remove-KFD-interface.patch
patch 3379-drm-amdkfd-Clean-up-the-data-structure-in-kfd_proces.patch
patch 3380-drm-amdkfd-Disable-CP-SDMA-ring-doorbell-in-MQD.patch
patch 3381-drm-amdkfd-Avoid-calling-amd_iommu_unbind_pasid-when.patch
patch 3382-drm-amdkfd-Fix-debug-unregister-procedure-on-process.patch
patch 3383-drm-amdkfd-Register-Deregister-process-on-qpd-resolu.patch
patch 3384-drm-amdkfd-Cleanup-DQM-ASIC-specific-ops.patch
patch 3385-drm-amdkfd-Update-queue_count-before-mapping-queues.patch
patch 3386-drm-amdkfd-Minor-cleanups.patch
patch 3387-License-cleanup-add-SPDX-GPL-2.0-license-identifier-.patch
patch 3388-drm-amdkfd-Fix-SDMA-ring-buffer-size-calculation.patch
patch 3389-drm-amdkfd-Fix-SDMA-oversubsription-handling.patch
patch 3390-drm-amdkfd-fix-amdkfd-use-after-free-GP-fault.patch
patch 3391-drm-amdgpu-add-license-to-Makefiles.patch
patch 3392-drm-amd-Update-kgd_kfd-interface-for-resuming-SDMA-q.patch
patch 3393-drm-amdkfd-Use-ASIC-specific-SDMA-MQD-type.patch
patch 3394-drm-amdkfd-Implement-amdkfd-SDMA-functions-for-VI.patch
patch 3395-drm-amdkfd-Hardware-DWORD-size-is-4-bytes.patch
patch 3396-drm-amdkfd-Use-order_base_2-to-get-log2-of-buffes-si.patch
patch 3397-drm-amdkfd-Cleanup-qpd.pqm-initialization.patch
patch 3398-drm-amdkfd-Add-trap-handler-for-CWSR.patch
patch 3399-drm-amdkfd-Add-CWSR-support.patch
patch 3400-drm-amdkfd-Add-support-for-user-mode-trap-handlers.patch
patch 3401-drm-amdkfd-Delete-a-useless-parameter-from-create_qu.patch
patch 3402-drm-amdkfd-Add-crash-protection-in-debugger-register.patch
patch 3403-drm-amdkfd-Fix-printing-pointer-cast.patch
patch 3404-drm-amdkfd-map-multiple-processes-to-HW-scheduler.patch
patch 3405-drm-amdkfd-Fix-oversubscription-accounting.patch
patch 3406-drm-amdkfd-Add-debugfs-support-to-KFD.patch
patch 3407-drm-amdkfd-Get-reference-to-lead_thread-task-struct.patch
patch 3408-drm-amdkfd-Make-kfd_process-reference-counted.patch
patch 3409-drm-amdkfd-Use-ref-count-to-prevent-kfd_process-dest.patch
patch 3410-drm-amdkfd-Return-NULL-if-kfd_lookup_process_by_pasi.patch
patch 3411-drm-amdkfd-Reduce-nesting-in-kfd_create_process_devi.patch
patch 3412-drm-amdkfd-Factor-PDD-destruction-out-of-kfd_process.patch
patch 3413-drm-amdkfd-Simplify-locking-during-process-creation.patch
patch 3414-drm-amdkfd-Stop-using-get_vmem_size-KGD-KFD-interfac.patch
patch 3415-drm-amdkfd-Update-number-of-compute-unit-from-KGD.patch
patch 3416-drm-amdkfd-Topology-Fix-location_id.patch
patch 3417-drm-amdkfd-Fix-memory-leaks-in-kfd-topology.patch
patch 3418-drm-amdkfd-Group-up-CRAT-related-functions.patch
patch 3419-drm-amdkfd-Reorganize-CRAT-fetching-from-ACPI.patch
patch 3420-drm-amdkfd-Decouple-CRAT-parsing-from-device-list-up.patch
patch 3421-drm-amdkfd-Support-enumerating-non-GPU-devices.patch
patch 3422-drm-amdkfd-sync-IOLINK-defines-to-thunk-spec.patch
patch 3423-drm-amdkfd-Turn-verbose-topology-messages-into-pr_de.patch
patch 3424-drm-amdkfd-Simplify-counting-of-memory-banks.patch
patch 3425-drm-amdkfd-Fix-sibling_map-size.patch
patch 3426-drm-amdkfd-Add-topology-support-for-CPUs.patch
patch 3427-drm-amdkfd-Add-topology-support-for-dGPUs.patch
patch 3428-drm-amdkfd-Add-perf-counters-to-topology.patch
patch 3429-drm-amdkfd-Fixup-incorrect-info-in-the-CZ-CRAT-table.patch
patch 3430-drm-amdkfd-Add-AQL-Queue-Memory-flag-on-topology.patch
patch 3431-drm-amdkfd-Module-option-to-disable-CRAT-table.patch
patch 3432-drm-amdkfd-Ignore-ACPI-CRAT-for-non-APU-systems.patch
patch 3433-drm-amdkfd-Fix-return-value-0-when-execute_queues_cp.patch
patch 3434-drm-amdkfd-don-t-always-call-execute_queues_cpsch.patch
patch 3435-drm-amdkfd-add-ull-suffix-to-64bit-defines.patch
patch 3436-drm-amdkfd-Fix-potential-NULL-pointer-dereferences.patch
patch 3437-drm-amdkfd-Copy-in-KFD-related-files.patch
patch 3438-drm-amdkfd-CMA-Don-t-override-error-value.patch
patch 3439-drm-amdkfd-Create-KFD-VMs-on-demand.patch
patch 3440-drm-amdkfd-Clean-up-kfd_process_alloc_gpuvm.patch
patch 3441-drm-amdkfd-Add-ioctl-to-acquire-VM-from-a-DRM-FD.patch
patch 3442-drm-amdkfd-Dump-HQD-of-HIQ.patch
patch 3443-drm-amdkfd-Export-microcode-version-of-sDMA.patch
patch 3444-compilation-fix-for-raven-rocm.patch
patch 3445-Revert-compilation-fix-for-raven-rocm.patch
patch 3446-compilation-fix-for-raven-rocm.patch
patch 3447-drm-amd-display-fix-lexa-bw-bounding-box.patch
patch 3448-remove-errors-from-radeon-kfd.patch
patch 3449-dynamically-adding-GPIO-may-cause-amdgpu-driver-crac.patch
patch 3450-drm-amd-display-Remove-return-when-no-EDID-read.patch
patch 3451-AMD-VSDB-PARSER.patch
patch 3452-Revert-amd-i2c-AMD-MP2-I2C-Changed-debug-print-level.patch
patch 3453-Revert-amd-i2c-AMD-MP2-I2C-Bug-fix.patch
patch 3454-Revert-amd-i2c-AMD-MP2-I2C-changed-some-debug-logs.patch
patch 3455-Revert-amd-i2c-AMD-MP2-I2C-using-AMD-R-PCI-E-MP2-Com.patch
patch 3456-i2c-amd-I2C-Driver-based-on-PCI-Interface-for-upcomi.patch
patch 3457-i2c-amd-I2C-Bug-fix-for-accessing-multiple-devices.patch
patch 3458-Fix-for-amdgpu-initialization-failure-hang-in-V1000.patch
patch 3459-drm-amd-display-Enable-Vega-by-default.patch
patch 3460-Revert-amdgpu-dc-inline-dml_round_to_multiple.patch
patch 3461-Revert-amdgpu-dc-drop-dml_util_is_420.patch
patch 3462-locking-atomics-COCCINELLE-treewide-Convert-trivial-.patch
patch 3463-amd-display-Fix-potential-null-dereference-in-dce_ca.patch
patch 3464-amdgpu-dm-Don-t-use-DRM_ERROR-in-amdgpu_dm_atomic_ch.patch
patch 3465-treewide-setup_timer-timer_setup-2-field.patch
patch 3466-Revert-drm-amdgpu-fix-rmmod-KCQ-disable-failed-error.patch
patch 3467-drm-amdgpu-don-t-try-to-move-pinned-BOs.patch
patch 3468-drm-amdgpu-add-license-to-files-where-it-was-missing.patch
patch 3469-drm-amdgpu-revise-retry-init-to-fully-cleanup-driver.patch
patch 3470-drm-amdgpu-avoid-the-modulo-in-amdgpu_vm_get_entry.patch
patch 3471-drm-amdgpu-add-amdgpu-interface-to-query-cu-info.patch
patch 3472-Revert-drm-amdgpu-gfx8-Fix-compute-ring-failure-afte.patch
patch 3473-Hybrid-Version-18.20.1.15.patch
patch 3474-drm-amdgpu-Change-default-value-of-module-parameter-.patch
patch 3475-drm-amdgpu-make-VMID-assignment-more-fair-v2.patch
patch 3476-drm-amdgpu-split-finding-idle-VMID-into-separate-fun.patch
patch 3477-drm-amdgpu-make-VMID-owner-none-atomic-v2.patch
patch 3478-drm-amdgpu-stop-checking-GPU-reset-counter-during-VM.patch
patch 3479-drm-amdgpu-cleanup-and-simplify-amdgpu_vmid_grab_res.patch
patch 3480-drm-amdgpu-move-reusing-VMIDs-into-separate-function.patch
patch 3481-drm-amdgpu-restructure-amdgpu_vmid_grab.patch
patch 3482-drm-amdgpu-cache-the-fence-to-wait-for-a-VMID.patch
patch 3483-drm-amd-display-fix-incompatible-structure-layouts.patch
patch 3484-drm-amdgpu-dce-fix-mask-in-dce_v-_0_is_in_vblank.patch
patch 3485-drm-amdgpu-remove-unused-display_vblank_wait-interfa.patch
patch 3486-drm-amdgpu-release-the-VM-shadow-in-the-error-path-a.patch
patch 3487-drm-amdgpu-clear-the-shadow-fence-as-well.patch
patch 3488-drm-amd-display-Adding-missing-TMZ-sh-mask-entries-f.patch
patch 3489-drm-amd-display-BL-setting-save-restore.patch
patch 3490-drm-amd-display-Fix-multiple-definitions-of-handle_c.patch
patch 3491-drm-amd-display-wait-for-T9-after-backlight-off-main.patch
patch 3492-drm-amd-display-Bypass-gamma-set-if-not-standard-typ.patch
patch 3493-drm-amd-display-dal-3.1.30.patch
patch 3494-drm-amdgpu-sync-the-VM-PD-PT-before-clearing-it.patch
patch 3495-drm-amd-display-Check-hubp-in-pipe_ctx-not-in-res_po.patch
patch 3496-drm-amd-display-Null-check-for-gamma-correction.patch
patch 3497-drm-amd-display-Set-irq-state-only-on-existing-crtcs.patch
patch 3498-drm-amd-display-fix-cursor-related-Pstate-hang.patch
patch 3499-drm-amd-display-remove-unused-function-prototypes.patch
patch 3500-drm-amd-display-WBSCL-filter-init-calculation-fixes.patch
patch 3501-drm-amd-display-Expose-is_rgb_cspace-function-in-hw_.patch
patch 3502-drm-amd-display-turn-off-cursor-when-disconnect-plan.patch
patch 3503-drm-amd-display-Remove-couple-of-unused-OPTC-registe.patch
patch 3504-drm-amd-display-fix-boot-up-on-vega10.patch
patch 3505-drm-amd-display-Add-return-value-for-detect-dp.patch
patch 3506-drm-amd-display-Fixed-if-statement-parameters-to-add.patch
patch 3507-drm-amd-display-dal-3.1.31.patch
patch 3508-drm-amd-display-add-eDP-1.2-polling-for-T7.patch
patch 3509-drm-amd-display-resume-from-S3-bypass-power-down-HW-.patch
patch 3510-drm-amd-display-Optimize-regamma-calculations.patch
patch 3511-drm-amd-display-dal-3.1.32.patch
patch 3512-drm-amd-display-enable-PME-code-path-for-RV.patch
patch 3513-drm-amd-display-Add-primary-tmz_c-and-meta-tmz-tmz_c.patch
patch 3514-drm-amd-powerplay-Zero-out-power-data-in-AMDGPU_PP_S.patch
patch 3515-drm-amd-powerplay-delete-some-dead-code.patch
patch 3516-drm-amdgpu-add-an-interface-of-amdgpu_dpm_set_mmhub_.patch
patch 3517-drm-amd-powerplay-implement-set_mmhub_powergating_by.patch
patch 3518-drm-amd-powerplay-add-mmhub-powergating-by-smu-in-po.patch
patch 3519-drm-amdgpu-add-mmhub-powergating-set-by-smu.patch
patch 3520-drm-amd-powerplay-Fix-enum-mismatch.patch
patch 3521-drm-amd-powerplay-Remove-extra-pair-of-parentheses.patch
patch 3522-drm-amdgpu-Enable-ip-block-bit-mask-print-out-info-b.patch
patch 3523-drm-amd-display-Remove-extra-pairs-of-parentheses-in.patch
patch 3524-amdgpu-dc-Fix-enum-mismatch-in-calls-to-program_colo.patch
patch 3525-drm-amd-pp-Expose-set-get_power_limit-for-DGPU.patch
patch 3526-drm-amdgpu-Get-set-dgpu-power-cap-via-hwmon-API.patch
patch 3527-drm-amd-pp-Restore-power-profile-mode-in-auto-dpm-le.patch
patch 3528-drm-amdgpu-Basic-emulation-support.patch
patch 3529-drm-amdgpu-Fix-none-powerplay-issue-when-load-driver.patch
patch 3530-drm-amdgpu-Avoid-get-vram-info-from-atom-bios-on-emu.patch
patch 3531-drm-amdgpu-Double-the-timeout-count-on-emulation-mod.patch
patch 3532-drm-amdgpu-Add-place-holder-for-soc15-asic-init-on-e.patch
patch 3533-amdgpu-dc-dml-Consolidate-redundant-CFLAGS.patch
patch 3534-amdgpu-dc-calcs-Consolidate-redundant-CFLAGS.patch
patch 3535-amdgpu-dc-dml-Support-clang-option-for-stack-alignme.patch
patch 3536-amdgpu-dc-calcs-Support-clang-option-for-stack-align.patch
patch 3537-drm-amdgpu-remove-extra-TT-unpopulated-check.patch
patch 3538-drm-amd-display-Remove-unused-CFLAGS-entry-in-DML-Ma.patch
patch 3539-drm-amdgpu-fix-and-cleanup-UVD-IB-generation.patch
patch 3540-drm-amdgpu-cleanup-VCN-IB-generation.patch
patch 3541-drm-amdgpu-Add-a-missing-lock-for-drm_mm_takedown.patch
patch 3542-drm-amdgpu-Unify-the-dm-resume-calls-into-one.patch
patch 3543-drm-amdgpu-Fix-potential-uninitialized-use-of-idle-i.patch
patch 3544-drm-amd-display-Rearchitecture-HDMI-HPD.patch
patch 3545-drm-amd-display-VGA-black-screen-from-s3-when-attach.patch
patch 3546-drm-amd-display-boot-up-S4-fix-mainlink-off-before-B.patch
patch 3547-drm-amd-display-dal-3.1.33.patch
patch 3548-drm-amd-display-add-force_trigger-even-to-static-scr.patch
patch 3549-drm-amd-display-Change-blackout-time-to-0-on-CZ-ST.patch
patch 3550-drm-amd-display-add-monitor-patch-for-delay-after-DP.patch
patch 3551-drm-amd-display-disable-seamless-vp-adjustment-for-m.patch
patch 3552-drm-amd-display-dal-3.1.34.patch
patch 3553-drm-amd-display-Keep-eDP-stream-enabled-during-boot.patch
patch 3554-drm-amd-display-Remove-unused-DCE80-compressor.patch
patch 3555-drm-amd-display-Re-use-DCE100-display_power_gating-f.patch
patch 3556-drm-amd-display-Make-couple-functions-in-DCE80-TG-st.patch
patch 3557-drm-amd-display-Use-hardware-max-low-point-when-samp.patch
patch 3558-drm-amd-display-Add-color-module-s-gamma-helpers-to-.patch
patch 3559-drm-amd-display-Implement-color-management.patch
patch 3560-drm-amd-display-Hookup-color-management-functions.patch
patch 3561-drm-amd-display-Refactor-max-color-lut-entries-into-.patch
patch 3562-drm-amd-display-Expose-dither-setting-functionality-.patch
patch 3563-drm-amd-display-When-enabling-CRC-disable-dither-ena.patch
patch 3564-drm-amd-display-Rework-DCE-transform-bit-depth-reduc.patch
patch 3565-drm-amd-display-Expose-DCE110-CRC-functions-for-DCE8.patch
patch 3566-drm-amd-display-Skip-2-frames-when-first-reading-CRC.patch
patch 3567-drm-amd-display-Remove-delay-on-disconnect-patch.patch
patch 3568-drm-amd-display-Make-FBC-work-without-fbdev-emulatio.patch
patch 3569-drm-amd-display-Remove-duplicate-entries-from-BIOS-f.patch
patch 3570-drm-amd-display-Treat-bad-EDID-as-no-EDID.patch
patch 3571-drm-amd-display-Add-missing-Vega-defines-to-dal_asic.patch
patch 3572-drm-amd-display-provide-an-interface-to-query-firmwa.patch
patch 3573-drm-amd-display-Set-vsc-pack-revision-when-DPCD-revi.patch
patch 3574-drm-amd-display-Add-logging-for-aux-DPCD-access.patch
patch 3575-drm-amd-display-Remove-unused-dm_pp_-interfaces.patch
patch 3576-drm-amd-display-De-PQ-implementation.patch
patch 3577-drm-amd-display-Fix-increment-when-sampling-OTF-in-D.patch
patch 3578-drm-amdgpu-separate-PASID-mapping-from-VM-flush-v2.patch
patch 3579-drm-amdgpu-update-the-PASID-mapping-only-on-demand.patch
patch 3580-drm-amdgpu_gem-fix-error-handling-path-in-amdgpu_gem.patch
patch 3581-drm-amd-powerplay-remove-unused-headers.patch
patch 3582-drm-amd-powerplay-use-PP_CAP-macro-for-disable_mclk_.patch
patch 3583-drm-amd-powerplay-vega10-allow-mclk-switching-with-n.patch
patch 3584-drm-amd-powerplay-smu7-allow-mclk-switching-with-no-.patch
patch 3585-drm-amdgpu-cgs-add-refresh-rate-checking-to-non-DC-d.patch
patch 3586-drm-amdgpu-powerplay-smu7-drop-refresh-rate-checks-f.patch
patch 3587-drm-amdgpu-implement-amdgpu_gem_map_-attach-detach.patch
patch 3588-drm-amdgpu-use-drm_gem_private_object_init.patch
patch 3589-drm-amd-pp-Fix-error-handling-when-smu-return-failed.patch
patch 3590-drm-amd-pp-Fix-bug-that-dpm-level-was-not-really-loc.patch
patch 3591-drm-amdgpu-use-the-TTM-dummy-page-instead-of-allocat.patch
patch 3592-drm-amdgpu-Add-query-vram-width-in-CGS-query-system-.patch
patch 3593-drm-amd-powerplay-fix-thermal-interrupts-on-vega10.patch
patch 3594-drm-amd-pp-Add-a-pp-feature-mask-bit-for-AutoWattman.patch
patch 3595-drm-amd-remove-inclusion-of-non-existing-scheduler-d.patch
patch 3596-drm-amd-Remove-inclusion-of-non-existing-include-dir.patch
patch 3597-drm-amd-pp-Remove-duplicated-vega10_is_smc_ram_runni.patch
patch 3598-drm-amd-pp-Add-debug-info-when-smu-failed-on-Vega10.patch
patch 3599-drm-amd-pp-Remove-dead-error-checking-code-on-Vega10.patch
patch 3600-drm-amd-pp-Refine-code-in-powerplay-for-Cz-Vega10.patch
patch 3601-drm-amd-pp-Cleaning-up-vega10_enable_dpm_tasks-funct.patch
patch 3602-drm-amd-pp-Move-common-dpm-check-functions-to-hardwa.patch
patch 3603-drm-ttm-drop-ttm-dummy_read_page.patch
patch 3604-drm-amd-amdgpu-Correct-VRAM-width-for-APUs-with-GMC9.patch
patch 3605-drm-amdgpu-powerplay-smu7-use-proper-dep-table-for-m.patch
patch 3606-drm-amdgpu-fix-cleanups-for-wb_clear.patch
patch 3607-drm-amdgpu-skip-ECC-for-SRIOV-in-gmc-late_init.patch
patch 3608-drm-amdgpu-only-flush-hotplug-work-without-DC.patch
patch 3609-drm-amdgpu-cond_exec-only-for-schedule-with-a-job.patch
patch 3610-drm-amdgpu-change-gfx9-ib-test-to-use-WB.patch
patch 3611-drm-amdgpu-move-WB_FREE-to-correct-place.patch
patch 3612-drm-amdgpu-increase-gart-size-to-512MB.patch
patch 3613-drm-amdgpu-Fixed-wrong-emit-frame-size-for-enc.patch
patch 3614-drm-amd-powerplay-fix-power-over-limit-on-Fiji.patch
patch 3615-drm-amd-pp-Print-more-smu-failed-info-on-Vega10.patch
patch 3616-drm-amdgpu-don-t-use-MM-idle_work-for-SRIOV-v2.patch
patch 3617-drm-amdgpu-adjust-timeout-for-ib_ring_tests-v2.patch
patch 3618-drm-amdgpu-Correct-sdma_v4-get_wptr-v2.patch
patch 3619-drm-amdgpu-cleanup-SA-inti-and-fini-v2.patch
patch 3620-drm-amd-display-make-dm_dp_aux_transfer-return-paylo.patch
patch 3621-drm-amd-display-check-for-ipp-before-calling-cursor-.patch
patch 3622-drm-amdgpu-Map-all-visible-VRAM-at-startup.patch
patch 3623-drm-amdgpu-stop-all-rings-before-doing-gpu-recover.patch
patch 3624-drm-amdgpu-cleanups-for-vram-lost-handling.patch
patch 3625-drm-amdgpu-try-again-kiq-access-if-not-in-IRQ-v3.patch
patch 3626-drm-amd-amdgpu-Mask-rptr-as-well-in-ring-debugfs.patch
patch 3627-drm-amdgpu-virt-remove-unused-variable.patch
patch 3628-drm-amd-display-move-MST-branch-initialize-to-before.patch
patch 3629-drm-amd-display-Fix-active-dongle-hotplug.patch
patch 3630-drm-amd-display-Add-passive-dongle-support-for-HPD-R.patch
patch 3631-drm-amd-display-update-cur_clock-correctly-within-se.patch
patch 3632-drm-amd-display-Check-DCN-PState-ASSERT-failure.patch
patch 3633-drm-amd-display-dal-3.1.35.patch
patch 3634-drm-amd-display-fix-missing-az-disable-in-reset-back.patch
patch 3635-drm-amd-display-Clear-dmps-off-for-eDP-when-resume.patch
patch 3636-drm-amd-display-add-psr_version-to-stream.patch
patch 3637-drm-amd-display-Update-Link-Training-Fallback-logic.patch
patch 3638-drm-amd-display-Add-regamma-lut-write-mask-to-SOC-ba.patch
patch 3639-drm-amd-display-allocate-fbc-buffer-in-AMDGPU_GEM_DO.patch
patch 3640-drm-amd-display-Update-DCN-OPTC-registers.patch
patch 3641-drm-amd-display-add-per-pipe-dppclk.patch
patch 3642-drm-amd-display-add-diags-clock-programming.patch
patch 3643-drm-amd-display-dal-3.1.36.patch
patch 3644-drm-amd-display-Fix-DAL-surface-change-test.patch
patch 3645-drm-amd-display-Handle-HDR-use-cases.patch
patch 3646-drm-amd-display-Use-MACROS-instead-of-dm_logger.patch
patch 3647-drm-amd-display-define-DC_LOGGER-for-logger.patch
patch 3648-drm-amd-display-fix-dcn1-dppclk-when-min-dispclk-pat.patch
patch 3649-drm-amd-display-update-infoframe-after-dig-fe-is-tur.patch
patch 3650-drm-amd-display-Remove-duplicate-dm_pp_power_level-e.patch
patch 3651-drm-amd-display-dal-3.1.37.patch
patch 3652-drm-amd-display-Use-crtc-enable-disable_vblank-hooks.patch
patch 3653-drm-amd-display-Return-success-when-enabling-interru.patch
patch 3654-drm-amd-display-Clean-up-formatting-in-irq_service_d.patch
patch 3655-drm-amd-display-defer-modeset-check-in-dm_update_pla.patch
patch 3656-drm-amd-display-validate-plane-in-dce110-for-scaling.patch
patch 3657-drm-amd-display-Don-t-blow-up-if-TG-is-NULL-in-dce11.patch
patch 3658-drm-amd-display-update-plane-params-before-validatio.patch
patch 3659-drm-amd-display-Default-HDMI6G-support-to-true.-Log-.patch
patch 3660-drm-amdgpu-move-some-functions-into-amdgpu_ttm.h.patch
patch 3661-drm-amdgpu-change-amdgpu_ttm_set_active_vram_size.patch
patch 3662-drm-amdgpu-ignore-changes-of-buffer-function-status-.patch
patch 3663-drm-amdgpu-use-separate-status-for-buffer-funcs-avai.patch
patch 3664-drm-amdgpu-dce6-Use-DRM_DEBUG-instead-of-DRM_INFO-fo.patch
patch 3665-drm-amd-pp-Fix-incorrect-return-value-in-smu7_check_.patch
patch 3666-drm-amd-display-disable-CRTCs-with-NULL-FB-on-their-.patch
patch 3667-drm-amd-dc-Use-forward-declaration-instand-of-includ.patch
patch 3668-drm-amd-pp-Simplify-the-create-of-powerplay-instance.patch
patch 3669-drm-amd-pp-Refine-powerplay-instance.patch
patch 3670-drm-amd-pp-Use-amdgpu-acpi-helper-functions-in-power.patch
patch 3671-drm-amd-pp-Remove-the-wrap-functions-for-acpi-in-pow.patch
patch 3672-drm-amd-pp-Remove-cgs_query_system_info.patch
patch 3673-drm-amd-pp-Export-new-smu-message-for-PCC-feature-on.patch
patch 3674-drm-amd-pp-Add-PCC-feature-support-on-Vega.patch
patch 3675-drm-amd-pp-Add-common-interface-in-smu-for-update-dp.patch
patch 3676-drm-amd-pp-Add-a-helper-to-set-field-in-u32.patch
patch 3677-drm-amd-pp-Implement-update_dpm_settings-on-Polaris.patch
patch 3678-drm-amd-pp-Implement-update_dpm_settings-on-Fiji.patch
patch 3679-drm-amd-pp-Implement-update_dpm_settings-on-Tonga.patch
patch 3680-drm-amd-pp-Implement-update_dpm_settings-on-CI.patch
patch 3681-drm-amd-pp-Implement-get-set_power_profile_mode-on-s.patch
patch 3682-drm-amd-pp-Fix-sclk-in-highest-two-levels-when-compu.patch
patch 3683-drm-amd-pp-Revert-gfx-compute-profile-switch-sysfs.patch
patch 3684-drm-amd-pp-Add-auto-power-profilng-switch-based-on-w.patch
patch 3685-Revert-drm-amd-pp-Add-a-pp-feature-mask-bit-for-Auto.patch
patch 3686-drm-amd-pp-Remove-cgs-wrapper-function-for-temperatu.patch
patch 3687-drm-amd-pp-Delete-the-wrapper-layer-of-smu_allocate-.patch
patch 3688-drm-amdgpu-Delete-cgs-wrapper-functions-for-gpu-memo.patch
patch 3689-drm-amd-pp-Drop-wrapper-functions-for-upper-lower_32.patch
patch 3690-drm-amdgpu-add-amdgpu_evict_gtt-debugfs-entry.patch
patch 3691-drm-amdgpu-drop-gtt-adev.patch
patch 3692-drm-amdgpu-further-mitigate-workaround-for-i915.patch
patch 3693-drm-amdgpu-give-warning-before-sleep-in-kiq_r-wreg.patch
patch 3694-drm-amdgpu-stop-allocating-a-page-array-for-prime-sh.patch
patch 3695-drm-amd-pp-fix-Delete-the-wrapper-layer-of-smu_alloc.patch
patch 3696-drm-amd-pp-Add-ifdef-checks-for-CONFIG_ACPI.patch
patch 3697-drm-amd-pp-Fix-Add-auto-power-profilng-switch-based-.patch
patch 3698-drm-amd-display-validate-plane-format-on-primary-pla.patch
patch 3699-drm-amdgpu-replace-iova-debugfs-file-with-iomem-v3.patch
patch 3700-drm-amdgpu-Correct-the-place-of-amdgpu_pm_sysfs_fini.patch
patch 3701-drm-amdgpu-Correct-the-amdgpu_ucode_fini_bo-place-fo.patch
patch 3702-drm-amdgpu-Clean-sdma-wptr-register-when-only-enable.patch
patch 3703-Copy-in-non-KFD-changes.patch
patch 3704-drm-amdgpu-Set-GTT-size-to-be-bigger-than-3-4-of-RAM.patch
patch 3705-drm-amdgpu-Compute-GPU-VM-space-if-unchanged-from-de.patch
patch 3706-drm-amdgpu-Revert-more-changes-related-to-shared-BOs.patch
patch 3707-drm-amdgpu-KFD-Restore-process-Optimize-waiting.patch
patch 3708-drm-amdgpu-Set-correct-information-of-cu.patch
patch 3709-drm-amdgpu-Move-KFD-specific-fields-into-struct-amdg.patch
patch 3710-drm-amdgpu-Fix-initial-validation-of-PD-BO-for-KFD-V.patch
patch 3711-drm-amdgpu-Add-helper-to-turn-an-existing-VM-into-a-.patch
patch 3712-drm-amdgpu-Add-kfd2kgd-interface-to-acquire-an-exist.patch
patch 3713-drm-amdgpu-Fix-bus-address-in-sg-table-export.patch
patch 3714-drm-amdkcl-import-kfd-merge-code-for-amdgpu_vm-compi.patch
patch 3715-drm-amdgpu-query-vram-type-from-atombios.patch
patch 3716-drm-amd-amdgpu-Add-missing-DDR4-label.patch
patch 3717-drm-amdgpu-implement-mmio-byte-access-helper-for-MB.patch
patch 3718-drm-amdgpu-refactoring-mailbox-to-fix-TDR-handshake-.patch
patch 3719-drm-ttm-add-bo-as-parameter-to-the-ttm_tt_create-cal.patch
patch 3720-drm-amdgpu-drop-the-backing-store-when-DMA-buf-impor.patch
patch 3721-drm-amdgpu-initial-validate-the-prime-BOs-into-the-C.patch
patch 3722-drm-amdgpu-explicit-give-BO-type-to-amdgpu_bo_create.patch
patch 3723-drm-amdgpu-forward-operation-context-to-ttm_bo_mem_s.patch
patch 3724-drm-ttm-add-operation-ctx-to-ttm_bo_validate-v2.patch
patch 3725-drm-ttm-use-an-operation-ctx-for-ttm_bo_init_reserve.patch
patch 3726-drm-amdgpu-fix-prime-teardown-order.patch
patch 3727-drm-ttm-use-the-operation-context-inside-TTM.patch
patch 3728-drm-ttm-add-context-to-driver-move-callback-as-well.patch
patch 3729-drm-ttm-add-number-of-bytes-moved-to-the-operation-c.patch
patch 3730-drm-amdgpu-forward-operation-context-to-ttm_bo_mem_s.patch
patch 3731-drm-ttm-use-an-operation-ctx-for-ttm_mem_global_allo.patch
patch 3732-drm-ttm-use-an-operation-ctx-for-ttm_mem_global_allo.patch
patch 3733-drm-ttm-use-an-operation-ctx-for-ttm_tt_populate-in-.patch
patch 3734-drm-ttm-use-an-operation-ctx-for-ttm_tt_bind.patch
patch 3735-drm-ttm-add-new-function-to-check-if-bo-is-allowable.patch
patch 3736-drm-ttm-enable-swapout-for-reserved-BOs-during-alloc.patch
patch 3737-drm-ttm-drop-persistent_swap_storage-from-ttm_bo_ini.patch
patch 3738-drm-ttm-header-file-modifications-to.patch
patch 3739-drm-ttm-ttm-code-modifications-to-fix-the.patch
patch 3740-drm-amd-amdgpu-creating-two-I2S-instances-for-stoney.patch
patch 3741-drm-amdgpu-save-restore-backlight-level-in-legacy-dc.patch
patch 3742-drm-amdgpu-Remove-some-unused-elements-from-amdgpu_c.patch
patch 3743-drm-amd-display-Fix-memleaks-when-atomic-check-fails.patch
patch 3744-drm-amd-display-Use-correct-error-codes.patch
patch 3745-drm-amd-display-Vari-bright-looks-disabled-near-end-.patch
patch 3746-drm-amd-display-Varibright-fix-bug-and-review-commen.patch
patch 3747-drm-amd-display-Varibright-add-null-check.patch
patch 3748-drm-amd-display-Convert-CTM-to-2-s-complement.patch
patch 3749-drm-amd-display-Remove-300Mhz-minimum-disp-clk-limit.patch
patch 3750-drm-amd-display-Allow-passing-of-syspll-id-to-get_sm.patch
patch 3751-drm-amd-display-Fix-takover-from-VGA-mode.patch
patch 3752-drm-amd-display-fix-check-condition-for-edp-power-co.patch
patch 3753-drm-amd-display-Modified-set-bandwidth-sequence.patch
patch 3754-drm-amd-display-Move-DTRACE-and-dml_print-defines.patch
patch 3755-drm-amd-display-Use-MACROS-instead-of-dm_logger.patch
patch 3756-drm-amd-display-use-HW-hdr-mult-for-brightness-boost.patch
patch 3757-drm-amd-display-Enable-backlight-support-for-pre-DCE.patch
patch 3758-drm-amd-display-early-return-if-not-in-vga-mode-in-d.patch
patch 3759-drm-amd-display-Implement-stats-logging.patch
patch 3760-drm-amd-display-Add-variable-refresh-rate-parameters.patch
patch 3761-drm-amd-display-dal-3.1.38.patch
patch 3762-drm-amd-display-Fix-handling-of-linear-transfer-func.patch
patch 3763-drm-amd-display-Correct-the-plane-enumeration-order.patch
patch 3764-drm-amd-display-add-support-for-regkey-LCDFreeSyncDe.patch
patch 3765-drm-amd-display-Set-disp-clk-in-a-safe-way-to-avoid-.patch
patch 3766-drm-amd-display-update-dce_calcs-to-latest-version.patch
patch 3767-drm-amdgpu-Move-IH-clientid-defs-to-separate-file.patch
patch 3768-drm-amd-display-Check-for-HW-blocks-in-HWSS-rather-t.patch
patch 3769-drm-amd-display-Use-actual-TG-instance-instead-of-pi.patch
patch 3770-drm-amd-display-Fixed-dim-around-1sec-when-resume-fr.patch
patch 3771-drm-amd-display-clean-up-dcn-pplib-notification-call.patch
patch 3772-drm-amd-display-Check-msg-size-before-starting-aux-t.patch
patch 3773-drm-amdgpu-psp-add-a-few-more-fw-load-type-checks.patch
patch 3774-drm-amdgpu-move-firmware-loading-type-setup-to-commo.patch
patch 3775-drm-amdgpu-use-adev-firmware-to-determine-whether-to.patch
patch 3776-drm-amdgpu-soc15-always-load-the-psp-module.patch
patch 3777-drm-amdgpu-move-getting-pcie-info-to-common-code.patch
patch 3778-drm-amd-pp-remove-redundant-pointer-internal_buf.patch
patch 3779-drm-amd-display-Fix-DCN-build-breakage.patch
patch 3780-drm-amd-display-Fix-null-pointer-when-setting-backli.patch
patch 3781-drm-amdgpu-dce-Don-t-turn-off-DP-sink-when-disconnec.patch
patch 3782-drm-amdgpu-powerplay-vega10-fix-memory-leak-in-error.patch
patch 3783-drm-amdgpu-remove-trailing-whitespace-from-soc15ip.h.patch
patch 3784-drm-amdgpu-sdma4-use-num_instances-for-clock-powerga.patch
patch 3785-drm-amdgpu-sdma4-Remove-unused-header-file-from-sdma.patch
patch 3786-drm-amd-powerplay-Fix-KASAN-user-after-free-on-drive.patch
patch 3787-drm-amd-pp-Simplified-the-avfs-btc-state-on-smu7.patch
patch 3788-drm-amd-pp-Fix-memory-leak-in-error-path-in-smumgr.patch
patch 3789-drm-amd-pp-Clean-up-header-file-include.patch
patch 3790-drm-amd-pp-Delete-is_smc_ram_running-function-on-RV.patch
patch 3791-drm-amd-pp-Remove-meanless-return-value-check-in-RV.patch
patch 3792-drm-amd-pp-Add-rv_read_arg_from_smc-to-smu-backend-f.patch
patch 3793-drm-amd-pp-Mark-internal-functions-as-static-in-rv_s.patch
patch 3794-drm-amd-pp-Add-new-smu-backend-function-smc_table_ma.patch
patch 3795-drm-amd-pp-Add-rv_copy_table_from-to_smc-to-smu-back.patch
patch 3796-drm-amd-pp-Fix-function-parameter-not-correct.patch
patch 3797-drm-amd-pp-Replace-rv_-with-smu10_.patch
patch 3798-drm-amd-pp-Move-helper-functions-to-smu_help.c.patch
patch 3799-drm-amdgpu-Plus-NULL-function-pointer-check.patch
patch 3800-drm-amdgpu-Don-t-compared-ip_block_type-with-ip_bloc.patch
patch 3801-drm-amdgpu-Remove-wrapper-layer-of-smu-ip-functions.patch
patch 3802-drm-amdgpu-Call-amdgpu_ucode_fini_bo-in-amd_powerpla.patch
patch 3803-drm-amd-pp-Delete-dead-code-on-cz_clockpowergating.c.patch
patch 3804-drm-amd-pp-Remove-dead-header-file-pp_asicblocks.h.patch
patch 3805-drm-amd-pp-Mv-cz-uvd-vce-pg-dpm-functions-to-cz_hwmg.patch
patch 3806-drm-amd-pp-Remove-unneeded-void-casts-in-cz_hwmgr.c-.patch
patch 3807-drm-amd-pp-Replace-function-struct-name-cz_-with-smu.patch
patch 3808-drm-amd-pp-Rename-file-name-cz_-to-smu8_.patch
patch 3809-drm-amdgpu-Improve-documentation-of-bo_ptr-in-amdgpu.patch
patch 3810-drm-amd-display-Refine-disable-VGA.patch
patch 3811-drm-amd-display-fix-dereferencing-possible-ERR_PTR.patch
patch 3812-drm-amd-pp-Remove-the-cgs-wrapper-for-notify-smu-ver.patch
patch 3813-drm-amdgpu-Delete-dead-code-when-early-init.patch
patch 3814-drm-amd-pp-Remove-dead-functions-in-vega10_smumgr.c.patch
patch 3815-drm-amd-pp-Mark-bunches-of-functins-in-vega10_smumgr.patch
patch 3816-drm-amd-pp-Move-functions-to-smu-backend-table-for-v.patch
patch 3817-drm-amd-pp-Clean-up-header-file-for-Vega10.patch
patch 3818-drm-amd-pp-Delete-get_xclk-function-in-powerplay.patch
patch 3819-drm-amd-pp-Remove-unneeded-void-casts-for-Vega10.patch
patch 3820-drm-amd-pp-Delete-debug-info-in-smu7_hwmgr.c.patch
patch 3821-drm-amdgpu-add-VCN-to-firmware-query-interface.patch
patch 3822-drm-amd-powerplay-Fix-NULL-pointer-deref-on-driver-u.patch
patch 3823-drm-amdgpu-nbio6-Correct-PCIE_INDEX-DATA-pair-used-f.patch
patch 3824-drm-amd-amdgpu-fix-offset-into-page-with-amdgpu_iome.patch
patch 3825-drm-amdgpu-Use-atomic-function-to-disable-crtcs-with.patch
patch 3826-drm-amdgpu-Disable-irq-on-device-before-destroying-i.patch
patch 3827-drm-amdgpu-Disable-all-irqs-before-disabling-all-CRT.patch
patch 3828-drm-amdgpu-Fix-kernel-NULL-pointer-dereference-when-.patch
patch 3829-drm-amdgpu-Fix-kernel-NULL-pointer-dereference-in-dp.patch
patch 3830-drm-amd-pp-Fix-gfx-ring-test-failed-on-Fiji-without-.patch
patch 3831-drm-amd-pp-Fix-unable-to-handle-kernel-paging-reques.patch
patch 3832-drm-amdkcl-fix-amdgpu_bo_create-func-para-changed-er.patch
patch 3833-drm-amdkcl-fix-kfd-amdgpu_bo_create-func-para-change.patch
patch 3834-drm-amdkcl-rhel6.9-fix-drm_atomic_helper_shutdown-fu.patch
patch 3835-drm-amd-include-Add-ip-header-files-for-vega12.patch
patch 3836-drm-amdgpu-add-vega12-to-asic_type-enum.patch
patch 3837-drm-amdgpu-add-gpu_info-firmware-for-vega12.patch
patch 3838-drm-amdgpu-set-asic-family-and-ip-blocks-for-vega12.patch
patch 3839-drm-amdgpu-vega12-to-smu-firmware.patch
patch 3840-drm-amdkfd-Deleted-unused-tlb_invalidation_lock.patch
patch 3841-amdgpu-Set-cik-si_support-to-1-by-default-if-radeon-.patch
patch 3842-drm-Remove-drm_driver-set_busid-hook.patch
patch 3843-drm-amd-radeon-Drop-drm_vblank_cleanup.patch
patch 3844-drm-amdgpu-move-some-defines-around.patch
patch 3845-drm-amdgpu-cleanup-the-sync-code-V2.patch
patch 3846-amdgpu-dc-inline-dml_round_to_multiple.patch
patch 3847-amdgpu-dc-drop-dml_util_is_420.patch
patch 3848-drm-amd-display-fix-Polaris-12-bw-bounding-box.patch
patch 3849-drm-amd-display-Fix-MST-daisy-chain-SST-not-light-up.patch
patch 3850-drm-amd-add-ACP-driver-support-V2.patch
patch 3851-drm-amd-display-Add-passive-dongle-support-for-HPD-R.patch
patch 3852-drm-amd-Resolving-compilation-issues.patch
patch 3853-drm-amdkcl-fix-the-func-release_pages-para-changed-f.patch
patch 3854-drm-amdgpu-Fix-always_valid-bos-multiple-LRU-inserti.patch
patch 3855-drm-amd-remove-dead-code-and-pointless-local-lut-sto.patch
patch 3856-drm-amd-amdkcl-add-fence-functions.patch
patch 3857-drm-amd-dc-Add-dc-display-driver-v3.patch
patch 3858-drm-amd-display-Multi-display-synchronization-logic.patch
patch 3859-drm-amdgpu-return-bo-itself-if-userptr-is-cpu-addr-o.patch
patch 3860-drm-amdgpu-Simplify-amdgpu_lockup_timeout-usage.patch
patch 3861-drm-amdgpu-psp-initial-vega12-support.patch
patch 3862-drm-amdgpu-initilize-vega12-psp-firmwares.patch
patch 3863-drm-amdgpu-add-vega12-ucode-loading-method.patch
patch 3864-drm-amdgpu-specify-vega12-uvd-firmware.patch
patch 3865-drm-amdgpu-specify-vega12-vce-firmware.patch
patch 3866-drm-amdgpu-virtual_dce-add-vega12-support.patch
patch 3867-drm-amd-display-dm-add-vega12-support.patch
patch 3868-drm-amd-display-Add-bios-firmware-info-version-for-V.patch
patch 3869-drm-amdgpu-add-vega12-to-dc-support-check.patch
patch 3870-drm-amdgpu-gmc9-add-vega12-support.patch
patch 3871-drm-amdgpu-gmc9-fix-vega12-s-athub-mmhub-golden-sett.patch
patch 3872-drm-amdgpu-mmhub-add-clockgating-support-for-vega12.patch
patch 3873-drm-amdgpu-sdma4-specify-vega12-firmware.patch
patch 3874-drm-amdgpu-sdma4-Add-placeholder-for-vega12-golden-s.patch
patch 3875-drm-amdgpu-sdma4-add-clockgating-support-for-vega12.patch
patch 3876-drm-amdgpu-sdma4-add-sdma4_0_1-support-for-vega12-v3.patch
patch 3877-drm-amdgpu-sdma4-Update-vega12-sdma-golden-setting.patch
patch 3878-drm-amdgpu-gfx9-add-support-for-vega12-firmware.patch
patch 3879-drm-amdgpu-gfx9-Add-placeholder-for-vega12-golden-se.patch
patch 3880-drm-amdgpu-gfx9-add-gfx-config-for-vega12.patch
patch 3881-drm-amdgpu-gfx9-add-support-for-vega12.patch
patch 3882-drm-amdgpu-gfx9-add-clockgating-support-for-vega12.patch
patch 3883-drm-amdgpu-gfx9-add-golden-setting-for-vega12-v3.patch
patch 3884-drm-amdgpu-soc15-add-support-for-vega12.patch
patch 3885-drm-amdgpu-soc15-update-vega12-cg_flags.patch
patch 3886-drm-amd-soc15-Add-external_rev_id-for-vega12.patch
patch 3887-drm-amdgpu-soc15-initialize-reg-base-for-vega12.patch
patch 3888-drm-amd-powerplay-add-vega12_inc.h.patch
patch 3889-drm-amd-powerplay-update-atomfirmware.h-v2.patch
patch 3890-drm-amd-powerplay-add-new-smu9_driver_if.h-for-vega1.patch
patch 3891-drm-amd-powerplay-add-vega12_ppsmc.h.patch
patch 3892-drm-amd-powerplay-add-vega12_pptable.h.patch
patch 3893-drm-amd-powerplay-update-ppatomfwctl-v2.patch
patch 3894-drm-amd-powerplay-add-new-pp_psm-infrastructure-for-.patch
patch 3895-drm-amd-powerplay-add-the-smu-manager-for-vega12-v4.patch
patch 3896-drm-amd-powerplay-add-the-hw-manager-for-vega12-v4.patch
patch 3897-drm-amdgpu-add-vega12-pci-ids-v2.patch
patch 3898-drm-amd-powerplay-Return-per-DPM-level-clock.patch
patch 3899-drm-amdgpu-Remove-wrapper-layer-of-cgs-irq-handling.patch
patch 3900-drm-amd-pp-Refine-register_thermal_interrupt-functio.patch
patch 3901-drm-amd-pp-Add-smu-irq-handlers-in-sw_init-instand-o.patch
patch 3902-drm-amdgpu-Fix-NULL-ptr-on-driver-unload-due-to-init.patch
patch 3903-drm-amd-pp-Fix-set-wrong-temperature-range-on-smu7.patch
patch 3904-drm-amd-pp-Add-smu-irq-handlers-for-legacy-asics.patch
patch 3905-drm-amd-pp-Clean-up-powerplay-code-on-Vega12.patch
patch 3906-drm-amd-pp-Add-new-asic-support-in-pp_psm.c.patch
patch 3907-drm-amdgpu-fix-spelling-mistake-asssert-assert.patch
patch 3908-drm-amdgpu-Don-t-change-preferred-domian-when-fallba.patch
patch 3909-drm-amd-powerplay-Remove-the-SOC-floor-voltage-setti.patch
patch 3910-drm-amdgpu-show-amdgpu-version-in-dmesg.patch
patch 3911-drm-amd-amdgpu-DGMA-add-missing-code.patch
patch 3912-drm-amd-pp-use-mlck_table.count-for-array-loop-index.patch
patch 3913-drm-amd-pp-clean-header-file-hwmgr.h.patch
patch 3914-drm-amdgpu-Add-CM_TEST_DEBUG-regs-for-DCN.patch
patch 3915-drm-amd-display-correct-the-condition-in-setting-cur.patch
patch 3916-drm-amd-display-dal-3.1.39.patch
patch 3917-drm-amd-display-Allow-truncation-to-10-bits.patch
patch 3918-drm-amd-display-Fix-FMT-truncation-programming.patch
patch 3919-drm-amd-display-We-shouldn-t-set-format_default-on-p.patch
patch 3920-drm-amd-display-Retry-when-read-dpcd-caps-failed.patch
patch 3921-drm-amd-display-Add-one-to-EDID-s-audio-channel-coun.patch
patch 3922-drm-amd-display-Update-ASIC-header-files.patch
patch 3923-drm-amd-display-fix-Polaris-12-bw-bounding-box.patch
patch 3924-drm-amd-display-Rename-feature-specific-register-add.patch
patch 3925-drm-amd-display-Don-t-read-EDID-in-atomic_check.patch
patch 3926-drm-amd-display-add-mpc-to-dtn-log.patch
patch 3927-drm-amd-display-Add-debug-prints-for-bandwidth-calcu.patch
patch 3928-drm-amd-display-Don-t-call-amdgpu_dm_display_resume-.patch
patch 3929-drm-amd-display-Adding-stutter-entry-wm-to-dce-bw-st.patch
patch 3930-drm-amd-display-Change-wb_h-vratio-to-double.patch
patch 3931-drm-amd-display-drop-dc_validate_guaranteed.patch
patch 3932-drm-amd-display-Implementing-new-bandwidth-registers.patch
patch 3933-drm-amd-display-dal-3.1.40.patch
patch 3934-drm-amd-display-align-dtn-logs-and-add-mpc-idle-bit-.patch
patch 3935-drm-amd-display-add-assert-in-enable-FBC.patch
patch 3936-drm-amd-display-Separate-mem-input-constuctors-for-d.patch
patch 3937-drm-amd-display-Only-update-mpc-blend-config-if-not-.patch
patch 3938-drm-amd-display-hide-inconsistent-mpcc-programming-f.patch
patch 3939-drm-amd-display-Add-dc_lut_mode-enum.patch
patch 3940-drm-amdgpu-fix-the-missed-vram-gart-usage-counting-f.patch
patch 3941-drm-amd-display-Correct-print-types-in-DC_LOGS.patch
patch 3942-drm-amd-display-Add-num_active_wb-to-DML.patch
patch 3943-drm-amd-display-Add-double-buffer-machanism-to-ICSC.patch
patch 3944-drm-amd-display-Couple-bug-fixes-in-stats-module.patch
patch 3945-drm-amd-display-Rename-encoder_info_packet-to-dc_inf.patch
patch 3946-drm-amd-display-Add-vline-IRQ-programming-for-DCN.patch
patch 3947-drm-amd-display-Add-double-buffer-machanism-to-OCSC.patch
patch 3948-drm-amd-display-Only-program-MSA_TIMING_PARAM-if-it-.patch
patch 3949-drm-amd-display-Move-commit_planes_to_stream-to-amdg.patch
patch 3950-drm-amdgpu-fix-typo-of-domain-fallback.patch
patch 3951-drm-amd-pp-Remove-useless-fw-load-error-handler-on-P.patch
patch 3952-drm-amd-pp-Add-hwmgr_sw_init-fini-functioins.patch
patch 3953-drm-amd-pp-Lock-pm_funcs-when-set-pp-table.patch
patch 3954-drm-amd-pp-Save-vf-state-in-pp-context.patch
patch 3955-drm-amd-pp-Use-release_firmware-directly-in-powerpla.patch
patch 3956-drm-amdgpu-Use-dpm_enabled-as-dpm-state-flag.patch
patch 3957-drm-amd-pp-Fix-spelling-mistake-suppported-supported.patch
patch 3958-drm-amd-pp-silence-a-static-checker-warning.patch
patch 3959-drm-amd-pp-Remove-Dead-functions-on-Vega12.patch
patch 3960-drm-amd-pp-Use-gfx-rlc-funcs-directly-in-powerplay.patch
patch 3961-drm-amdgpu-Get-pci-resource-directly-through-adev.patch
patch 3962-drm-amd-dc-Use-atombios-api-directly-in-DC.patch
patch 3963-drm-amd-pp-Use-atombios-api-directly-in-powerplay.patch
patch 3964-drm-amdgpu-Set-pm_display_cfg-in-non-dc-mode.patch
patch 3965-drm-amd-pp-Not-call-cgs-interface-to-get-display-inf.patch
patch 3966-drm-amdgpu-Delete-some-cgs-functions.patch
patch 3967-drm-amdgpu-remove-duplicate-cg-pg-wrapper-functions.patch
patch 3968-drm-amd-pp-Clean-header-file-in-vega12_smumgr.c.patch
patch 3969-drm-amdgpu-Fix-KIQ-hang-on-bare-metal-for-device-unb.patch
patch 3970-drm-amdgpu-add-documentation-for-amdgpu_device.c.patch
patch 3971-drm-amd-powerplay-Enable-ACG-SS-feature.patch
patch 3972-drm-amdgpu-add-df-v1_7-header-files.patch
patch 3973-drm-amdgpu-add-df-callback-functions-structure.patch
patch 3974-drm-amdgpu-df-implement-df-v1_7-callback-functions.patch
patch 3975-drm-amdgpu-switch-to-use-df-callback-functions.patch
patch 3976-drm-amd-powerply-fix-power-reading-on-Fiji.patch
patch 3977-Revert-drm-amdgpu-Don-t-change-preferred-domian-when.patch
patch 3978-drm-amd-display-Disentangle-dc.h-include-from-amdgpu.patch
patch 3979-drm-amdgpu-Add-support-for-SRBM-selection-v3.patch
patch 3980-drm-amdgpu-add-documentation-on-hwmon-interfaces-exp.patch
patch 3981-drm-amdgpu-add-asic-need_full_reset-callback.patch
patch 3982-drm-amdgpu-si-implement-asic-need_full_reset-callbac.patch
patch 3983-drm-amdgpu-cik-implement-asic-need_full_reset-callba.patch
patch 3984-drm-amdgpu-vi-implement-asic-need_full_reset-callbac.patch
patch 3985-drm-amdgpu-soc15-implement-asic-need_full_reset-call.patch
patch 3986-drm-amdgpu-use-new-asic-need_full_reset-callback.patch
patch 3987-drm-amdgpu-powerplay-whitespace-cleanup.patch
patch 3988-drm-amdgpu-Fix-memory-leaks-at-amdgpu_init-error-pat.patch
patch 3989-drm-amd-display-fix-spelling-mistake-Usupported-Unsu.patch
patch 3990-drm-amdgpu-Don-t-change-preferred-domian-when-fallba.patch
patch 3991-drm-amdgpu-add-new-bo-flag-that-indicates-BOs-don-t-.patch
patch 3992-drm-amdgpu-fix-merge-confilicts.patch
patch 3993-drm-amdgpu-Added-support-for-MV-packet.patch
patch 3994-drm-amd-display-Only-register-backlight-device-if-em.patch
patch 3995-drm-amd-display-Don-t-register-backlight-on-connecto.patch
patch 3996-drm-amd-display-Program-v_total_min-max-after-v_tota.patch
patch 3997-drm-amd-display-Set-ignore_msa_timing_param.patch
patch 3998-drm-amd-display-Fix-potential-access-beyond-end-of-a.patch
patch 3999-drm-amd-display-Add-Dynamic-debug-prints.patch
patch 4000-drm-amd-display-Add-vmax-min_sel-prints-to-dcn10_log.patch
patch 4001-drm-amd-display-Implement-dm_get_timestamp.patch
patch 4002-drm-amd-display-add-delay-between-panel-pwr-off-to-o.patch
patch 4003-drm-amd-display-Set-all-update-flags-when-we-have-fu.patch
patch 4004-drm-amd-display-Refactor-FreeSync-module.patch
patch 4005-drm-amd-display-Refactor-stream-encoder-for-HW-revie.patch
patch 4006-drm-amd-display-remove-unused-enum.patch
patch 4007-drm-amd-display-fix-link-bw-calculation-for-422-and-.patch
patch 4008-drm-amd-display-Fill-calcs-date-from-stream-src-dst-.patch
patch 4009-drm-amd-display-Change-disable-backlight-ramp-change.patch
patch 4010-drm-amd-display-Update-scaler-v_active-data-if-inter.patch
patch 4011-drm-amd-display-Make-DCN-stream-encoder-shareable.patch
patch 4012-drm-amd-display-csc-updates-require-FULL-update.patch
patch 4013-drm-amd-display-Fix-FBC-text-console-corruption.patch
patch 4014-drm-amd-display-dal-3.1.41.patch
patch 4015-drm-amd-display-Updated-HDR-Static-Metadata-to-direc.patch
patch 4016-drm-amd-display-Get-rid-of-unused-input_tf.patch
patch 4017-drm-amd-display-Remove-unused-fields.patch
patch 4018-drm-amd-display-Do-not-use-os-types.patch
patch 4019-drm-amd-display-csc_transform-to-dc_csc_transform.patch
patch 4020-drm-amd-display-Refactor-color-module.patch
patch 4021-drm-amd-display-move-color_transfer_func-to-color-mo.patch
patch 4022-drm-amd-display-Fix-structure-initialization-of-hdmi.patch
patch 4023-drm-amd-display-Have-DC-manage-its-own-allocation-of.patch
patch 4024-drm-amd-display-Fix-dim-display-on-DCE11.patch
patch 4025-drm-amd-display-Fix-memleak-on-input-transfer-functi.patch
patch 4026-drm-amdkcl-rhel6.9-fix-for_each_oldnew_connector_in_.patch
patch 4027-Hybrid-Version-18.20.2.15.patch
patch 4028-drm-amd-display-Don-t-program-bypass-on-linear-regam.patch
patch 4029-drm-amd-pp-Fix-performance-drop-on-Fiji.patch
patch 4030-drm-amdgpu-Fix-display-corruption-on-CI-with-dpm-ena.patch
patch 4031-drm-amdgpu-update-psp-gfx-if-header.patch
patch 4032-drm-amdgpu-add-new-rlc-firmware-header-format-v2.1.patch
patch 4033-drm-amdgpu-add-save-restore-list-cntl-gpm-and-srm-fi.patch
patch 4034-drm-amdgpu-enter-rlc-safe-mode-before-set-cgpg.patch
patch 4035-drm-amdgpu-cleanup-init-power-gating-function.patch
patch 4036-drm-amdgpu-revise-init_rlc_save_restore_list-behavio.patch
patch 4037-drm-amdgpu-add-setting-powergating-method-for-gfx9.patch
patch 4038-drm-amd-powerplay-send-CGPG-smc-message-if-PG-is-ena.patch
patch 4039-drm-amdgpu-move-PP_FEATURE_MASK-to-amd_shared-header.patch
patch 4040-drm-amdgpu-add-gfxoff-feature-mask.patch
patch 4041-drm-amdgpu-set-gfxoff-disabled-by-default.patch
patch 4042-drm-amd-powerplay-add-gfx-off-control-function.patch
patch 4043-drm-amd-powerplay-enable-disable-gfxoff-through-smu.patch
patch 4044-drm-amdgpu-use-pp_feature-member-to-store-the-mask.patch
patch 4045-drm-amdgpu-clear-gfxoff-featue-mask-if-the-asic-is-n.patch
patch 4046-drm-amd-powerplay-add-control-gfxoff-enabling-in-lat.patch
patch 4047-drm-amdgpu-it-should-disable-gfxoff-when-system-is-g.patch
patch 4048-drm-amdgpu-fix-to-disable-powergating-in-hw_fini.patch
patch 4049-drm-amdgpu-set-CGPG-if-gfxoff-is-enabled-for-raven.patch
patch 4050-drm-amd-powerplay-use-the-flag-to-decide-whether-sen.patch
patch 4051-drm-amdgpu-enable-GFXOFF-on-raven-as-default.patch
patch 4052-drm-amdgpu-add-MP1-and-THM-hw-ip-base-reg-offset.patch
patch 4053-drm-amd-pp-use-soc15-common-macros-instead-of-vega10.patch
patch 4054-drm-amd-pp-Workaround-flickering-issue-on-RV.patch
patch 4055-drm-amd-pp-Implement-force_clock_level-for-RV.patch
patch 4056-drm-amd-pp-Change-pstate_clk-frequency-unit-to-10KHz.patch
patch 4057-drm-amd-pp-Move-common-code-to-smu_helper.c.patch
patch 4058-drm-amd-pp-Fix-NULL-point-check-error-in-smu_set_wat.patch
patch 4059-drm-amd-pp-Adding-set_watermarks_for_clocks_ranges-f.patch
patch 4060-drm-amd-pp-Adding-a-function-to-store-cc6-data-in-SM.patch
patch 4061-drm-amd-powerplay-add-PME-smu-message-for-raven.patch
patch 4062-drm-amd-powerplay-Add-notify-PWE-function-to-SMU10.patch
patch 4063-drm-amdgpu-Reserved-vram-for-smu-to-save-debug-info.patch
patch 4064-drm-amd-pp-Refine-pp_atomfwctrl_get_vbios_bootup_val.patch
patch 4065-drm-amd-pp-fix-the-wrong-readout-engine-clock-in-dee.patch
patch 4066-drm-amd-pp-Move-same-macro-definitions-to-hwmgr.h.patch
patch 4067-drm-amd-pp-Remove-unnecessary-forward-declaration.patch
patch 4068-drm-amd-pp-Remove-dead-function-in-smu7_smumgr.c.patch
patch 4069-drm-amd-pp-Remove-useless-smu7-running-state-check.patch
patch 4070-drm-amdgpu-powerplay-fix-smu7_get_memory_type-for-fi.patch
patch 4071-drm-amdgpu-powerplay-rename-smu7_upload_mc_firmware.patch
patch 4072-Revert-drm-amd-powerply-fix-power-reading-on-Fiji.patch
patch 4073-drm-amd-pp-Refine-get_gpu_power-for-VI.patch
patch 4074-drm-amd-pp-Remove-struct-pp_gpu_power.patch
patch 4075-drm-amdgpu-powerplay-actually-return-the-power-with-.patch
patch 4076-drm-amd-pp-Clear-smu-response-register-before-send-s.patch
patch 4077-drm-amd-pp-Remove-dead-interface.patch
patch 4078-drm-amd-pp-Fix-bug-voltage-can-t-be-OD-separately-on.patch
patch 4079-drm-amd-pp-Refine-the-OD-state-checking-code-in-smu7.patch
patch 4080-drm-amd-pp-Change-voltage-clk-range-for-OD-feature-o.patch
patch 4081-drm-amd-pp-Print-out-voltage-clock-range-in-sysfs.patch
patch 4082-drm-amd-pp-Refine-the-output-of-pp_power_profile_mod.patch
patch 4083-drm-amd-pp-Skip-fan-attributes-if-fan-not-present.patch
patch 4084-drm-amd-pp-Add-OVERDRIVE-support-on-Vega10.patch
patch 4085-drm-amdgpu-powerplay-fix-a-warning-in-vega10_populat.patch
patch 4086-drm-amd-pp-Fix-static-checker-warning.patch
patch 4087-drm-amd-pp-fix-a-couple-locking-issues.patch
patch 4088-Revert-drm-amdgpu-enable-GFXOFF-on-raven-as-default.patch
patch 4089-drm-amd-display-Don-t-spam-debug-messages.patch
patch 4090-drm-amdkcl-4.17-fix-prime-bo-for-raven-A-A-issue.patch
patch 4091-drm-amdgpu-defer-test-IBs-on-the-rings-at-boot-V3.patch
patch 4092-drm-amdgpu-fix-CG-enabling-hang-with-gfxoff-enabled.patch
patch 4093-drm-amd-powerplay-remove-uncessary-extra-gfxoff-cont.patch
patch 4094-drm-amd-amdkfd-added-BUILD_AS_DKMS-flag-to-fix-the-c.patch
patch 4095-drm-amd-amdgpu-workaround-to-resolve-the-mgpu.patch
patch 4096-check-pci-dev-before-getting-pci-alias.patch
patch 4097-Revert-drm-amdgpu-Restore-scalable-VM-size-calculati.patch
patch 4098-drm-handle-override-and-firmware-EDID-at-drm_do_get_.patch
patch 4099-drm-amd-pp-Use-dynamic-gfx_clk-rather-than-hardcoded.patch
patch 4112-drm-amdgpu-add-tmr-mac-address-into-amdgpu_firmware_.patch
patch 4113-drm-amdgpu-update-tmr-mac-address.patch
patch 4114-Fix-for-ROCm-not-working-on-dGPU-issue.patch
patch 4115-Revert-Revert-drm-amd-display-Release-cached-atomic-.patch
patch 4116-drm-amd-display-calculate-stream-phy_pix_clk-in-fill.patch
patch 4117-drm-amd-display-Check-if-clock-source-in-use-before-.patch
patch 4118-Revert-i2c-amd-I2C-Bug-fix-for-accessing-multiple-de.patch
patch 4119-Revert-i2c-amd-I2C-Driver-based-on-PCI-Interface-for.patch
patch 4120-mp2-i2c-Updated-driver-Aug17.patch
patch 4121-mp2-i2c-error-handling-in-read-write-operation.patch
patch 4122-mp2-i2c-Bus-id-is-used-instead-of-i2c-device-context.patch
patch 4123-Fix-to-the-crash-observed-when-the-following-operati.patch
patch 4124-mp2-i2c-Connect-should-be-called-whenever-there-is-a.patch
patch 4125-mp2-i2c-lock-is-used-in-i2c_amd_xfer-This-fix-is-req.patch
patch 4126-mp2-i2c-Fix-to-i2c-write-with-more-than-32-bytes.-wo.patch
patch 4127-Added-REPORTING-BUGS-file-to-resolve-kernel-compilat.patch
patch 4128-drm-amdgpu-Disable-CG-clockgating-on-stoney.patch
patch 4129-drm-amd-display-fix-multisync-for-any-connection-ena.patch
patch 4130-RTQA3-compilation-fix-after-back-porting.patch
patch 4131-RTQA3-Backporting-comilation-fix-for-drm-change.patch
patch 4132-RQTAQ3-compilaton-fix-added-io.h.patch