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
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
|
/*
* Copyright © 2008 Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*
* Authors:
* Eric Anholt <eric@anholt.net>
* Keith Packard <keithp@keithp.com>
*
*/
#include <linux/seq_file.h>
#include <linux/debugfs.h>
#include <linux/slab.h>
#include <linux/export.h>
#include <linux/list_sort.h>
#include <linux/string.h>
#include <asm/msr-index.h>
#include <drm/drmP.h>
#include "intel_drv.h"
#include "intel_ringbuffer.h"
#include <drm/i915_drm.h>
#include "i915_drv.h"
#include "i915_debugfs.h"
#include <linux/moduleparam.h>
#include "linux/mfd/intel_mid_pmic.h"
#include <linux/pwm.h>
#define DRM_I915_RING_DEBUG 1
#if defined(CONFIG_DEBUG_FS)
static const char *yesno(int v)
{
return v ? "yes" : "no";
}
static int i915_capabilities(struct seq_file *m, void *data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
const struct intel_device_info *info = INTEL_INFO(dev);
seq_printf(m, "gen: %d\n", info->gen);
seq_printf(m, "pch: %d\n", INTEL_PCH_TYPE(dev));
#define PRINT_FLAG(x) seq_printf(m, #x ": %s\n", yesno(info->x))
#define SEP_SEMICOLON ;
DEV_INFO_FOR_EACH_FLAG(PRINT_FLAG, SEP_SEMICOLON);
#undef PRINT_FLAG
#undef SEP_SEMICOLON
return 0;
}
static const char *get_pin_flag(struct drm_i915_gem_object *obj)
{
if (obj->user_pin_count > 0)
return "P";
else if (obj->pin_count > 0)
return "p";
else
return " ";
}
static const char *get_tiling_flag(struct drm_i915_gem_object *obj)
{
switch (obj->tiling_mode) {
default:
case I915_TILING_NONE: return " ";
case I915_TILING_X: return "X";
case I915_TILING_Y: return "Y";
}
}
static inline const char *get_global_flag(struct drm_i915_gem_object *obj)
{
return obj->has_global_gtt_mapping ? "g" : " ";
}
ssize_t i915_gamma_adjust_read(struct file *filp,
char __user *ubuf,
size_t max,
loff_t *ppos)
{
/* To do: Not implemented yet */
DRM_ERROR("Gamma adjust: Not implemented\n");
return -EINVAL;
}
ssize_t i915_gamma_adjust_write(struct file *filp,
const char __user *ubuf,
size_t count,
loff_t *ppos)
{
int ret = 0;
int pipe;
int crtc_id = -1;
int bytes_count;
int bytes_read;
char *buf = NULL;
char *temp_buf = NULL;
struct drm_device *dev = filp->private_data;
struct drm_crtc *crtc = NULL;
struct drm_mode_object *obj;
/* Validate input */
if (!count) {
DRM_ERROR("Gamma adjust: insufficient data\n");
return -EINVAL;
}
buf = kzalloc(count, GFP_KERNEL);
if (!buf) {
DRM_ERROR("Gamma adjust: insufficient memory\n");
return -ENOMEM;
}
/* Get the data */
if (copy_from_user(buf, ubuf, count)) {
DRM_ERROR("Gamma adjust: copy failed\n");
ret = -EINVAL;
goto exit;
}
bytes_read = 0;
bytes_count = count;
if (bytes_count > 0) {
temp_buf = buf + bytes_read;
/* Parse data and read the crtc_id */
ret = parse_clrmgr_input(&crtc_id, temp_buf,
CRTC_ID_TOKEN_COUNT, &bytes_count);
if (ret < CRTC_ID_TOKEN_COUNT) {
DRM_ERROR("CRTC_ID loading failed\n");
goto exit;
} else
DRM_DEBUG("CRTC_ID loading done\n");
}
obj = drm_mode_object_find(dev, crtc_id, DRM_MODE_OBJECT_CRTC);
if (!obj) {
DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_id);
return -EINVAL;
}
crtc = obj_to_crtc(obj);
DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
pipe = to_intel_crtc(crtc)->pipe;
bytes_read += bytes_count;
bytes_count = count - bytes_read;
if (bytes_count > 0) {
temp_buf = buf + bytes_read;
/* Parse data and load the gamma table */
ret = parse_clrmgr_input(gamma_softlut[pipe], temp_buf,
GAMMA_CORRECT_MAX_COUNT, &bytes_count);
if (ret < GAMMA_CORRECT_MAX_COUNT) {
DRM_ERROR("Gamma table loading failed\n");
goto exit;
} else
DRM_DEBUG("Gamma table loading done\n");
}
bytes_read += bytes_count;
bytes_count = count - bytes_read;
if (bytes_count > 0) {
temp_buf = buf + bytes_read;
/* Parse data and load the gcmax table */
ret = parse_clrmgr_input(gcmax_softlut[pipe], temp_buf,
GC_MAX_COUNT, &bytes_count);
if (ret < GC_MAX_COUNT)
DRM_ERROR("GCMAX table loading failed\n");
else
DRM_DEBUG("GCMAX table loading done\n");
}
exit:
kfree(buf);
if (ret < 0)
return ret;
return count;
}
ssize_t i915_gamma_enable_read(struct file *filp,
char __user *ubuf,
size_t max,
loff_t *ppos)
{
int len = 0;
char buf[40] = {0,};
struct drm_device *dev = filp->private_data;
drm_i915_private_t *dev_priv = dev->dev_private;
len = scnprintf(buf, sizeof(buf), "%s\n%s\n",
dev_priv->gamma_enabled[0] ? "Pipe 0: Enabled" : "Pipe 0: Disabled",
dev_priv->gamma_enabled[1] ? "Pipe 1: Enabled" : "Pipe 1: Disabled");
return simple_read_from_buffer(ubuf, max, ppos,
(const void *) buf, len);
}
ssize_t i915_gamma_enable_write(struct file *filp,
const char __user *ubuf,
size_t count,
loff_t *ppos)
{
int ret = 0;
int bytes_read;
int bytes_count;
int crtc_id = -1;
int req_state = 0;
struct drm_crtc *crtc = NULL;
struct drm_device *dev = filp->private_data;
char *buf = NULL, *temp_buf = NULL;
struct drm_mode_object *obj;
/* Validate input */
if (!count) {
DRM_ERROR("Gamma adjust: insufficient data\n");
return -EINVAL;
}
buf = kzalloc(count, GFP_KERNEL);
if (!buf) {
DRM_ERROR("Gamma enable: Out of mem\n");
return -ENOMEM;
}
/* Get the data */
if (copy_from_user(buf, ubuf, count)) {
DRM_ERROR("Gamma adjust: copy failed\n");
ret = -EINVAL;
goto exit;
}
bytes_read = 0;
bytes_count = count;
if (bytes_count > 0) {
temp_buf = buf + bytes_read;
/* Parse data and load the crtc_id */
ret = parse_clrmgr_input(&crtc_id, temp_buf,
CRTC_ID_TOKEN_COUNT, &bytes_count);
if (ret < CRTC_ID_TOKEN_COUNT) {
DRM_ERROR("CRTC_ID loading failed\n");
goto exit;
} else
DRM_DEBUG("CRTC_ID loading done\n");
}
obj = drm_mode_object_find(dev, crtc_id, DRM_MODE_OBJECT_CRTC);
if (!obj) {
DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_id);
return -EINVAL;
}
crtc = obj_to_crtc(obj);
DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
bytes_read += bytes_count;
bytes_count = count - bytes_read;
if (bytes_count > 0) {
temp_buf = buf + bytes_read;
/* Parse data and load the gamma table */
ret = parse_clrmgr_input(&req_state, temp_buf,
ENABLE_TOKEN_MAX_COUNT, &bytes_count);
if (ret < ENABLE_TOKEN_MAX_COUNT) {
DRM_ERROR("Enable-token loading failed\n");
goto exit;
} else
DRM_DEBUG("Enable-token loading done\n");
}
/* if gamma enabled, apply gamma correction on PIPE */
if (req_state) {
if (intel_crtc_enable_gamma(crtc,
to_intel_crtc(crtc)->pipe ? PIPEB : PIPEA)) {
DRM_ERROR("Apply gamma correction failed\n");
ret = -EINVAL;
} else
ret = count;
} else {
/* Disable gamma on this plane */
intel_crtc_disable_gamma(crtc,
to_intel_crtc(crtc)->pipe ? PIPEB : PIPEA);
ret = count;
}
exit:
kfree(buf);
return ret;
}
const struct file_operations i915_gamma_adjust_fops = {
.owner = THIS_MODULE,
.open = simple_open,
.read = i915_gamma_adjust_read,
.write = i915_gamma_adjust_write,
.llseek = default_llseek,
};
const struct file_operations i915_gamma_enable_fops = {
.owner = THIS_MODULE,
.open = simple_open,
.read = i915_gamma_enable_read,
.write = i915_gamma_enable_write,
.llseek = default_llseek,
};
ssize_t i915_cb_adjust_read(struct file *filp,
char __user *ubuf,
size_t max,
loff_t *ppos)
{
/* To do: Not implemented yet */
DRM_ERROR("Contrast Brightness adjust: Read Not implemented\n");
return -EINVAL;
}
ssize_t i915_cb_adjust_write(struct file *filp,
const char __user *ubuf,
size_t count,
loff_t *ppos)
{
int ret = count;
int bytes_count = count;
struct drm_device *dev = filp->private_data;
struct cont_brightlut *cb_ptr = NULL;
drm_i915_private_t *dev_priv = dev->dev_private;
char *buf = NULL;
/* Validate input */
if (!count) {
DRM_ERROR("Contrast Brightness: insufficient data\n");
return -EINVAL;
}
buf = kzalloc(count, GFP_KERNEL);
if (!buf) {
DRM_ERROR("Contrast Brightness adjust: insufficient memory\n");
return -ENOMEM;
}
cb_ptr = kzalloc(sizeof(struct cont_brightlut), GFP_KERNEL);
if (!cb_ptr) {
DRM_ERROR("Contrast Brightness adjust: insufficient memory\n");
kfree(buf);
return -ENOMEM;
}
/* Get the data */
if (copy_from_user(buf, ubuf, count)) {
DRM_ERROR("Contrast Brightness: copy failed\n");
ret = -EINVAL;
goto exit;
}
/* Parse input data */
ret = parse_clrmgr_input((uint *)cb_ptr, buf, CB_MAX_COEFF_COUNT, &bytes_count);
if (ret < CB_MAX_COEFF_COUNT) {
DRM_ERROR("Contrast Brightness loading failed\n");
goto exit;
}
else
DRM_DEBUG("Contrast Brightness loading done\n");
if (cb_ptr->sprite_no < SPRITEA || cb_ptr->sprite_no > SPRITED ||
cb_ptr->sprite_no == PLANEB) {
DRM_ERROR("Sprite value out of range. Enter 2,3, 5 or 6\n");
goto exit;
}
DRM_DEBUG("sprite = %d Val=0x%x,\n", cb_ptr->sprite_no, cb_ptr->val);
if (intel_sprite_cb_adjust(dev_priv, cb_ptr))
DRM_ERROR("Contrast Brightness update failed\n");
exit:
kfree(cb_ptr);
kfree(buf);
if (ret < 0)
return ret;
return count;
}
ssize_t i915_hs_adjust_read(struct file *filp,
char __user *ubuf,
size_t max,
loff_t *ppos)
{
/* To do: Not implemented yet */
DRM_ERROR("Hue Saturation adjust: Read Not implemented\n");
return -EINVAL;
}
ssize_t i915_hs_adjust_write(struct file *filp,
const char __user *ubuf,
size_t count,
loff_t *ppos)
{
int ret = count;
int bytes_count = count;
struct drm_device *dev = filp->private_data;
struct hue_saturationlut *hs_ptr = NULL;
drm_i915_private_t *dev_priv = dev->dev_private;
char *buf = NULL;
/* Validate input */
if (!count) {
DRM_ERROR("Hue Saturation: insufficient data\n");
return -EINVAL;
}
buf = kzalloc(count, GFP_KERNEL);
if (!buf) {
DRM_ERROR("Hue Saturation adjust: insufficient memory\n");
return -ENOMEM;
}
hs_ptr = kzalloc(sizeof(struct hue_saturationlut), GFP_KERNEL);
if (!hs_ptr) {
DRM_ERROR("Hue Saturation adjust: insufficient memory\n");
kfree(buf);
return -ENOMEM;
}
/* Get the data */
if (copy_from_user(buf, ubuf, count)) {
DRM_ERROR("Hue Saturation: copy failed\n");
ret = -EINVAL;
goto exit;
}
/* Parse input data */
ret = parse_clrmgr_input((uint *)hs_ptr, buf, HS_MAX_COEFF_COUNT, &bytes_count);
if (ret < HS_MAX_COEFF_COUNT) {
DRM_ERROR("Hue Saturation loading failed\n");
goto exit;
}
else
DRM_DEBUG("Hue Saturation loading done\n");
if (hs_ptr->sprite_no < SPRITEA || hs_ptr->sprite_no > SPRITED ||
hs_ptr->sprite_no == PLANEB) {
DRM_ERROR("sprite = %d Val=0x%x,\n", hs_ptr->sprite_no,
hs_ptr->val);
goto exit;
}
DRM_DEBUG("sprite = %d Val=0x%x,\n", hs_ptr->sprite_no, hs_ptr->val);
if (intel_sprite_hs_adjust(dev_priv, hs_ptr))
DRM_ERROR("Hue Saturation update failed\n");
exit:
kfree(hs_ptr);
kfree(buf);
if (ret < 0)
return ret;
return count;
}
ssize_t i915_csc_adjust_read(struct file *filp,
char __user *ubuf,
size_t max,
loff_t *ppos)
{
/* To do: Not implemented yet */
DRM_ERROR("CSC adjust: Not implemented\n");
return -EINVAL;
}
ssize_t i915_csc_adjust_write(struct file *filp,
const char __user *ubuf,
size_t count,
loff_t *ppos)
{
int bytes_count;
int bytes_read;
int ret = 0;
int pipe;
int crtc_id = -1;
char *buf = NULL;
char *temp_buf = NULL;
struct drm_device *dev = filp->private_data;
struct drm_crtc *crtc = NULL;
struct drm_mode_object *obj;
/* Validate input */
if (!count) {
DRM_ERROR("CSC adjust: insufficient data\n");
return -EINVAL;
}
buf = kzalloc(count, GFP_KERNEL);
if (!buf) {
DRM_ERROR("CSC adjust: insufficient memory\n");
return -ENOMEM;
}
/* Get the data */
if (copy_from_user(buf, ubuf, count)) {
DRM_ERROR("CSC adjust: copy failed\n");
ret = -EINVAL;
goto exit;
}
bytes_read = 0;
bytes_count = count;
if (bytes_count > 0) {
temp_buf = buf + bytes_read;
/* Parse data and load the crtc_id */
ret = parse_clrmgr_input(&crtc_id, temp_buf,
CRTC_ID_TOKEN_COUNT, &bytes_count);
if (ret < CRTC_ID_TOKEN_COUNT) {
DRM_ERROR("CONNECTOR_TYPE_TOKEN loading failed\n");
goto exit;
} else
DRM_DEBUG("CONNECTOR_TYPE_TOKEN loading done\n");
}
obj = drm_mode_object_find(dev, crtc_id, DRM_MODE_OBJECT_CRTC);
if (!obj) {
DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_id);
return -EINVAL;
}
crtc = obj_to_crtc(obj);
DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
pipe = to_intel_crtc(crtc)->pipe;
bytes_read += bytes_count;
bytes_count = count - bytes_read;
if (bytes_count > 0) {
temp_buf = buf + bytes_read;
/* Parse data and load the csc table */
ret = parse_clrmgr_input(csc_softlut[pipe], temp_buf,
CSC_MAX_COEFF_COUNT, &bytes_count);
if (ret < CSC_MAX_COEFF_COUNT)
DRM_ERROR("CSC table loading failed\n");
else
DRM_DEBUG("CSC table loading done\n");
}
exit:
kfree(buf);
if (ret < 0)
return ret;
return count;
}
ssize_t i915_csc_enable_read(struct file *filp,
char __user *ubuf,
size_t max,
loff_t *ppos)
{
int len = 0;
char buf[40] = {0,};
struct drm_device *dev = filp->private_data;
drm_i915_private_t *dev_priv = dev->dev_private;
len = scnprintf(buf, sizeof(buf), "%s\n%s\n",
dev_priv->csc_enabled[0] ? "Pipe 0: Enabled" : "Pipe 0: Disabled",
dev_priv->csc_enabled[1] ? "Pipe 1: Enabled" : "Pipe 1: Disabled");
return simple_read_from_buffer(ubuf, max, ppos,
(const void *) buf, len);
}
ssize_t i915_csc_enable_write(struct file *filp,
const char __user *ubuf,
size_t count,
loff_t *ppos)
{
int ret = 0;
int pipe;
int req_state = 0;
int bytes_read;
int bytes_count;
int crtc_id = -1;
char *buf = NULL;
char *temp_buf = NULL;
struct drm_crtc *crtc = NULL;
struct drm_device *dev = filp->private_data;
struct drm_mode_object *obj;
/* Validate input */
if (!count) {
DRM_ERROR("CSC enable: insufficient data\n");
return -EINVAL;
}
buf = kzalloc(count, GFP_KERNEL);
if (!buf) {
DRM_ERROR("CSC enable: Out of mem\n");
return -ENOMEM;
}
/* Get the data */
if (copy_from_user(buf, ubuf, count)) {
DRM_ERROR("CSC enable: copy failed\n");
ret = -EINVAL;
goto exit;
}
bytes_read = 0;
bytes_count = count;
if (bytes_count > 0) {
temp_buf = buf + bytes_read;
/* Parse data and load the crtc_id */
ret = parse_clrmgr_input(&crtc_id, temp_buf,
CRTC_ID_TOKEN_COUNT, &bytes_count);
if (ret < CRTC_ID_TOKEN_COUNT) {
DRM_ERROR("CRTC_ID_TOKEN loading failed\n");
goto exit;
} else
DRM_DEBUG("CRTC_ID_TOKEN loading done\n");
}
obj = drm_mode_object_find(dev, crtc_id, DRM_MODE_OBJECT_CRTC);
if (!obj) {
DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_id);
return -EINVAL;
}
crtc = obj_to_crtc(obj);
DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
pipe = to_intel_crtc(crtc)->pipe;
bytes_read += bytes_count;
bytes_count = count - bytes_read;
if (bytes_count > 0) {
temp_buf = buf + bytes_read;
/* Parse data and load the gamma table */
ret = parse_clrmgr_input(&req_state, temp_buf,
ENABLE_TOKEN_MAX_COUNT, &bytes_count);
if (ret < ENABLE_TOKEN_MAX_COUNT) {
DRM_ERROR("Enable-token loading failed\n");
goto exit;
} else
DRM_DEBUG("Enable-token loading done\n");
}
DRM_DEBUG_KMS("req_state:%d\n", req_state);
/* if CSC enabled, apply CSC correction */
if (req_state) {
if (do_intel_enable_csc(dev,
(void *) csc_softlut[pipe], crtc)) {
DRM_ERROR("CSC correction failed\n");
ret = -EINVAL;
} else
ret = count;
} else {
/* Disable CSC on this CRTC */
do_intel_disable_csc(dev, crtc);
ret = count;
}
exit:
kfree(buf);
return ret;
}
static const struct file_operations i915_cb_adjust_fops = {
.owner = THIS_MODULE,
.open = simple_open,
.read = i915_cb_adjust_read,
.write = i915_cb_adjust_write,
.llseek = default_llseek,
};
static const struct file_operations i915_hs_adjust_fops = {
.owner = THIS_MODULE,
.open = simple_open,
.read = i915_hs_adjust_read,
.write = i915_hs_adjust_write,
.llseek = default_llseek,
};
static const struct file_operations i915_csc_adjust_fops = {
.owner = THIS_MODULE,
.open = simple_open,
.read = i915_csc_adjust_read,
.write = i915_csc_adjust_write,
.llseek = default_llseek,
};
static const struct file_operations i915_csc_enable_fops = {
.owner = THIS_MODULE,
.open = simple_open,
.read = i915_csc_enable_read,
.write = i915_csc_enable_write,
.llseek = default_llseek,
};
static void
describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj)
{
struct i915_vma *vma;
seq_printf(m, "%pK: %s%s%s %8zdKiB %02x %02x %u %u %u%s%s%s",
&obj->base,
get_pin_flag(obj),
get_tiling_flag(obj),
get_global_flag(obj),
obj->base.size / 1024,
obj->base.read_domains,
obj->base.write_domain,
obj->last_read_seqno,
obj->last_write_seqno,
obj->last_fenced_seqno,
i915_cache_level_str(obj->cache_level),
obj->dirty ? " dirty" : "",
obj->madv == I915_MADV_DONTNEED ? " purgeable" : "");
if (obj->base.name)
seq_printf(m, " (name: %d)", obj->base.name);
if (obj->pin_count)
seq_printf(m, " (pinned x %d)", obj->pin_count);
if (obj->pin_display)
seq_printf(m, " (display)");
if (obj->fence_reg != I915_FENCE_REG_NONE)
seq_printf(m, " (fence: %d)", obj->fence_reg);
list_for_each_entry(vma, &obj->vma_list, vma_link) {
if (!i915_is_ggtt(vma->vm))
seq_puts(m, " (pp");
else
seq_puts(m, " (g");
seq_printf(m, "gtt offset: %08lx, size: %08lx)",
vma->node.start, vma->node.size);
}
if (obj->stolen)
seq_printf(m, " (stolen: %08lx)", obj->stolen->start);
if (obj->pin_mappable || obj->fault_mappable) {
char s[3], *t = s;
if (obj->pin_mappable)
*t++ = 'p';
if (obj->fault_mappable)
*t++ = 'f';
*t = '\0';
seq_printf(m, " (%s mappable)", s);
}
if (obj->ring != NULL)
seq_printf(m, " (%s)", obj->ring->name);
}
static int i915_gem_object_list_info(struct seq_file *m, void *data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
uintptr_t list = (uintptr_t) node->info_ent->data;
struct list_head *head;
struct drm_device *dev = node->minor->dev;
struct drm_i915_private *dev_priv = dev->dev_private;
struct i915_address_space *vm = &dev_priv->gtt.base;
struct i915_vma *vma;
size_t total_obj_size, total_gtt_size;
int count, ret;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
/* FIXME: the user of this interface might want more than just GGTT */
switch (list) {
case ACTIVE_LIST:
seq_puts(m, "Active:\n");
head = &vm->active_list;
break;
case INACTIVE_LIST:
seq_puts(m, "Inactive:\n");
head = &vm->inactive_list;
break;
default:
mutex_unlock(&dev->struct_mutex);
return -EINVAL;
}
total_obj_size = total_gtt_size = count = 0;
list_for_each_entry(vma, head, mm_list) {
seq_printf(m, " ");
describe_obj(m, vma->obj);
seq_printf(m, "\n");
total_obj_size += vma->obj->base.size;
total_gtt_size += vma->node.size;
count++;
}
mutex_unlock(&dev->struct_mutex);
seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n",
count, total_obj_size, total_gtt_size);
return 0;
}
static int obj_rank_by_stolen(void *priv,
struct list_head *A, struct list_head *B)
{
struct drm_i915_gem_object *a =
container_of(A, struct drm_i915_gem_object, obj_exec_link);
struct drm_i915_gem_object *b =
container_of(B, struct drm_i915_gem_object, obj_exec_link);
return a->stolen->start - b->stolen->start;
}
static int i915_gem_stolen_list_info(struct seq_file *m, void *data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
struct drm_i915_private *dev_priv = dev->dev_private;
struct drm_i915_gem_object *obj;
size_t total_obj_size, total_gtt_size;
LIST_HEAD(stolen);
int count, ret;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
total_obj_size = total_gtt_size = count = 0;
list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
if (obj->stolen == NULL)
continue;
list_add(&obj->obj_exec_link, &stolen);
total_obj_size += obj->base.size;
total_gtt_size += i915_gem_obj_ggtt_size(obj);
count++;
}
list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
if (obj->stolen == NULL)
continue;
list_add(&obj->obj_exec_link, &stolen);
total_obj_size += obj->base.size;
count++;
}
list_sort(NULL, &stolen, obj_rank_by_stolen);
seq_puts(m, "Stolen:\n");
while (!list_empty(&stolen)) {
obj = list_first_entry(&stolen, typeof(*obj), obj_exec_link);
seq_puts(m, " ");
describe_obj(m, obj);
seq_putc(m, '\n');
list_del_init(&obj->obj_exec_link);
}
mutex_unlock(&dev->struct_mutex);
seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n",
count, total_obj_size, total_gtt_size);
return 0;
}
#define count_objects(list, member) do { \
list_for_each_entry(obj, list, member) { \
size += i915_gem_obj_ggtt_size(obj); \
++count; \
if (obj->map_and_fenceable) { \
mappable_size += i915_gem_obj_ggtt_size(obj); \
++mappable_count; \
} \
} \
} while (0)
struct file_stats {
int count;
size_t total, active, inactive, unbound;
};
static int per_file_stats(int id, void *ptr, void *data)
{
struct drm_i915_gem_object *obj = ptr;
struct file_stats *stats = data;
stats->count++;
stats->total += obj->base.size;
if (i915_gem_obj_ggtt_bound(obj)) {
if (!list_empty(&obj->ring_list))
stats->active += obj->base.size;
else
stats->inactive += obj->base.size;
} else {
if (!list_empty(&obj->global_list))
stats->unbound += obj->base.size;
}
return 0;
}
#define count_vmas(list, member) do { \
list_for_each_entry(vma, list, member) { \
size += i915_gem_obj_ggtt_size(vma->obj); \
++count; \
if (vma->obj->map_and_fenceable) { \
mappable_size += i915_gem_obj_ggtt_size(vma->obj); \
++mappable_count; \
} \
} \
} while (0)
static int i915_gem_object_info(struct seq_file *m, void* data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
struct drm_i915_private *dev_priv = dev->dev_private;
u32 count, mappable_count, purgeable_count;
size_t size, mappable_size, purgeable_size;
struct drm_i915_gem_object *obj;
struct i915_address_space *vm = &dev_priv->gtt.base;
struct drm_file *file;
struct i915_vma *vma;
int ret;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
seq_printf(m, "%u objects, %zu bytes\n",
dev_priv->mm.object_count,
dev_priv->mm.object_memory);
size = count = mappable_size = mappable_count = 0;
count_objects(&dev_priv->mm.bound_list, global_list);
seq_printf(m, "%u [%u] objects, %zu [%zu] bytes in gtt\n",
count, mappable_count, size, mappable_size);
size = count = mappable_size = mappable_count = 0;
count_vmas(&vm->active_list, mm_list);
seq_printf(m, " %u [%u] active objects, %zu [%zu] bytes\n",
count, mappable_count, size, mappable_size);
size = count = mappable_size = mappable_count = 0;
count_vmas(&vm->inactive_list, mm_list);
seq_printf(m, " %u [%u] inactive objects, %zu [%zu] bytes\n",
count, mappable_count, size, mappable_size);
size = count = purgeable_size = purgeable_count = 0;
list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
size += obj->base.size, ++count;
if (obj->madv == I915_MADV_DONTNEED)
purgeable_size += obj->base.size, ++purgeable_count;
}
seq_printf(m, "%u unbound objects, %zu bytes\n", count, size);
size = count = mappable_size = mappable_count = 0;
list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
if (obj->fault_mappable) {
size += i915_gem_obj_ggtt_size(obj);
++count;
}
if (obj->pin_mappable) {
mappable_size += i915_gem_obj_ggtt_size(obj);
++mappable_count;
}
if (obj->madv == I915_MADV_DONTNEED) {
purgeable_size += obj->base.size;
++purgeable_count;
}
}
seq_printf(m, "%u purgeable objects, %zu bytes\n",
purgeable_count, purgeable_size);
seq_printf(m, "%u pinned mappable objects, %zu bytes\n",
mappable_count, mappable_size);
seq_printf(m, "%u fault mappable objects, %zu bytes\n",
count, size);
seq_printf(m, "%zu [%lu] gtt total\n",
dev_priv->gtt.base.total,
dev_priv->gtt.mappable_end - dev_priv->gtt.base.start);
seq_putc(m, '\n');
list_for_each_entry_reverse(file, &dev->filelist, lhead) {
struct file_stats stats;
memset(&stats, 0, sizeof(stats));
spin_lock(&file->table_lock);
idr_for_each(&file->object_idr, per_file_stats, &stats);
spin_unlock(&file->table_lock);
seq_printf(m, "%s: %u objects, %zu bytes (%zu active, %zu inactive, %zu unbound)\n",
get_pid_task(file->pid, PIDTYPE_PID)->comm,
stats.count,
stats.total,
stats.active,
stats.inactive,
stats.unbound);
}
mutex_unlock(&dev->struct_mutex);
return 0;
}
static int i915_gem_gtt_info(struct seq_file *m, void *data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
uintptr_t list = (uintptr_t) node->info_ent->data;
struct drm_i915_private *dev_priv = dev->dev_private;
struct drm_i915_gem_object *obj;
size_t total_obj_size, total_gtt_size;
int count, ret;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
total_obj_size = total_gtt_size = count = 0;
list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
if (list == PINNED_LIST && obj->pin_count == 0)
continue;
seq_puts(m, " ");
describe_obj(m, obj);
seq_putc(m, '\n');
total_obj_size += obj->base.size;
total_gtt_size += i915_gem_obj_ggtt_size(obj);
count++;
}
mutex_unlock(&dev->struct_mutex);
seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n",
count, total_obj_size, total_gtt_size);
return 0;
}
static int i915_gem_pageflip_info(struct seq_file *m, void *data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
unsigned long flags;
struct intel_crtc *crtc;
list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
const char pipe = pipe_name(crtc->pipe);
const char plane = plane_name(crtc->plane);
struct intel_unpin_work *work;
spin_lock_irqsave(&dev->event_lock, flags);
work = crtc->unpin_work;
if (work == NULL) {
seq_printf(m, "No flip due on pipe %c (plane %c)\n",
pipe, plane);
} else {
if (atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
seq_printf(m, "Flip queued on pipe %c (plane %c)\n",
pipe, plane);
} else {
seq_printf(m, "Flip pending (waiting for vsync) on pipe %c (plane %c)\n",
pipe, plane);
}
if (work->enable_stall_check)
seq_puts(m, "Stall check enabled, ");
else
seq_puts(m, "Stall check waiting for page flip ioctl, ");
seq_printf(m, "%d prepares\n", atomic_read(&work->pending));
if (work->old_fb_obj) {
struct drm_i915_gem_object *obj = work->old_fb_obj;
if (obj)
seq_printf(m, "Old framebuffer gtt_offset 0x%08lx\n",
i915_gem_obj_ggtt_offset(obj));
}
if (work->pending_flip_obj) {
struct drm_i915_gem_object *obj = work->pending_flip_obj;
if (obj)
seq_printf(m, "New framebuffer gtt_offset 0x%08lx\n",
i915_gem_obj_ggtt_offset(obj));
}
}
spin_unlock_irqrestore(&dev->event_lock, flags);
}
return 0;
}
static int i915_gem_request_info(struct seq_file *m, void *data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
struct intel_ring_buffer *ring;
struct drm_i915_gem_request *gem_request;
int ret, count, i;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
count = 0;
for_each_ring(ring, dev_priv, i) {
if (list_empty(&ring->request_list))
continue;
seq_printf(m, "%s requests:\n", ring->name);
list_for_each_entry(gem_request,
&ring->request_list,
list) {
seq_printf(m, " %d @ %d\n",
gem_request->seqno,
(int) (jiffies - gem_request->emitted_jiffies));
}
count++;
}
mutex_unlock(&dev->struct_mutex);
if (count == 0)
seq_puts(m, "No requests\n");
return 0;
}
static void i915_ring_seqno_info(struct seq_file *m,
struct intel_ring_buffer *ring)
{
if (ring->get_seqno) {
seq_printf(m, "Current sequence (%s): %u\n",
ring->name, ring->get_seqno(ring, false));
}
}
static int i915_gem_seqno_info(struct seq_file *m, void *data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
struct intel_ring_buffer *ring;
int ret, i;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
for_each_ring(ring, dev_priv, i)
i915_ring_seqno_info(m, ring);
mutex_unlock(&dev->struct_mutex);
return 0;
}
static int i915_interrupt_info(struct seq_file *m, void *data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
struct intel_ring_buffer *ring;
int ret, i, pipe;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
if (IS_VALLEYVIEW(dev)) {
seq_printf(m, "Display IER:\t%08x\n",
I915_READ(VLV_IER));
seq_printf(m, "Display IIR:\t%08x\n",
I915_READ(VLV_IIR));
seq_printf(m, "Display IIR_RW:\t%08x\n",
I915_READ(VLV_IIR_RW));
seq_printf(m, "Display IMR:\t%08x\n",
I915_READ(VLV_IMR));
for_each_pipe(pipe)
seq_printf(m, "Pipe %c stat:\t%08x\n",
pipe_name(pipe),
I915_READ(PIPESTAT(pipe)));
seq_printf(m, "Master IER:\t%08x\n",
I915_READ(VLV_MASTER_IER));
seq_printf(m, "Render IER:\t%08x\n",
I915_READ(GTIER));
seq_printf(m, "Render IIR:\t%08x\n",
I915_READ(GTIIR));
seq_printf(m, "Render IMR:\t%08x\n",
I915_READ(GTIMR));
seq_printf(m, "PM IER:\t\t%08x\n",
I915_READ(GEN6_PMIER));
seq_printf(m, "PM IIR:\t\t%08x\n",
I915_READ(GEN6_PMIIR));
seq_printf(m, "PM IMR:\t\t%08x\n",
I915_READ(GEN6_PMIMR));
seq_printf(m, "Port hotplug:\t%08x\n",
I915_READ(PORT_HOTPLUG_EN));
seq_printf(m, "DPFLIPSTAT:\t%08x\n",
I915_READ(VLV_DPFLIPSTAT));
seq_printf(m, "DPINVGTT:\t%08x\n",
I915_READ(DPINVGTT));
} else if (!HAS_PCH_SPLIT(dev)) {
seq_printf(m, "Interrupt enable: %08x\n",
I915_READ(IER));
seq_printf(m, "Interrupt identity: %08x\n",
I915_READ(IIR));
seq_printf(m, "Interrupt mask: %08x\n",
I915_READ(IMR));
for_each_pipe(pipe)
seq_printf(m, "Pipe %c stat: %08x\n",
pipe_name(pipe),
I915_READ(PIPESTAT(pipe)));
} else {
seq_printf(m, "North Display Interrupt enable: %08x\n",
I915_READ(DEIER));
seq_printf(m, "North Display Interrupt identity: %08x\n",
I915_READ(DEIIR));
seq_printf(m, "North Display Interrupt mask: %08x\n",
I915_READ(DEIMR));
seq_printf(m, "South Display Interrupt enable: %08x\n",
I915_READ(SDEIER));
seq_printf(m, "South Display Interrupt identity: %08x\n",
I915_READ(SDEIIR));
seq_printf(m, "South Display Interrupt mask: %08x\n",
I915_READ(SDEIMR));
seq_printf(m, "Graphics Interrupt enable: %08x\n",
I915_READ(GTIER));
seq_printf(m, "Graphics Interrupt identity: %08x\n",
I915_READ(GTIIR));
seq_printf(m, "Graphics Interrupt mask: %08x\n",
I915_READ(GTIMR));
}
seq_printf(m, "Interrupts received: %d\n",
atomic_read(&dev_priv->irq_received));
for_each_ring(ring, dev_priv, i) {
if (IS_GEN6(dev) || IS_GEN7(dev)) {
seq_printf(m,
"Graphics Interrupt mask (%s): %08x\n",
ring->name, I915_READ_IMR(ring));
}
i915_ring_seqno_info(m, ring);
}
mutex_unlock(&dev->struct_mutex);
return 0;
}
static int i915_gem_fence_regs_info(struct seq_file *m, void *data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
int i, ret;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
seq_printf(m, "Reserved fences = %d\n", dev_priv->fence_reg_start);
seq_printf(m, "Total fences = %d\n", dev_priv->num_fence_regs);
for (i = 0; i < dev_priv->num_fence_regs; i++) {
struct drm_i915_gem_object *obj = dev_priv->fence_regs[i].obj;
seq_printf(m, "Fence %d, pin count = %d, object = ",
i, dev_priv->fence_regs[i].pin_count);
if (obj == NULL)
seq_puts(m, "unused");
else
describe_obj(m, obj);
seq_putc(m, '\n');
}
mutex_unlock(&dev->struct_mutex);
return 0;
}
static int i915_hws_info(struct seq_file *m, void *data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
struct intel_ring_buffer *ring;
const u32 *hws;
int i;
ring = &dev_priv->ring[(uintptr_t)node->info_ent->data];
hws = ring->status_page.page_addr;
if (hws == NULL)
return 0;
for (i = 0; i < 4096 / sizeof(u32) / 4; i += 4) {
seq_printf(m, "0x%08x: 0x%08x 0x%08x 0x%08x 0x%08x\n",
i * 4,
hws[i], hws[i + 1], hws[i + 2], hws[i + 3]);
}
return 0;
}
static ssize_t
i915_error_state_write(struct file *filp,
const char __user *ubuf,
size_t cnt,
loff_t *ppos)
{
struct i915_error_state_file_priv *error_priv = filp->private_data;
struct drm_device *dev = error_priv->dev;
int ret;
DRM_DEBUG_DRIVER("Resetting error state\n");
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
i915_destroy_error_state(dev);
mutex_unlock(&dev->struct_mutex);
return cnt;
}
static int i915_error_state_open(struct inode *inode, struct file *file)
{
struct drm_device *dev = inode->i_private;
struct i915_error_state_file_priv *error_priv;
error_priv = kzalloc(sizeof(*error_priv), GFP_KERNEL);
if (!error_priv)
return -ENOMEM;
error_priv->dev = dev;
i915_error_state_get(dev, error_priv);
file->private_data = error_priv;
return 0;
}
static int i915_error_state_release(struct inode *inode, struct file *file)
{
struct i915_error_state_file_priv *error_priv = file->private_data;
i915_error_state_put(error_priv);
kfree(error_priv);
return 0;
}
static ssize_t i915_error_state_read(struct file *file, char __user *userbuf,
size_t count, loff_t *pos)
{
struct i915_error_state_file_priv *error_priv = file->private_data;
struct drm_i915_error_state_buf error_str;
loff_t tmp_pos = 0;
ssize_t ret_count = 0;
int ret;
ret = i915_error_state_buf_init(&error_str, count, *pos);
if (ret)
return ret;
ret = i915_error_state_to_str(&error_str, error_priv);
if (ret)
goto out;
ret_count = simple_read_from_buffer(userbuf, count, &tmp_pos,
error_str.buf,
error_str.bytes);
if (ret_count < 0)
ret = ret_count;
else
*pos = error_str.start + ret_count;
out:
i915_error_state_buf_release(&error_str);
return ret ?: ret_count;
}
static const struct file_operations i915_error_state_fops = {
.owner = THIS_MODULE,
.open = i915_error_state_open,
.read = i915_error_state_read,
.write = i915_error_state_write,
.llseek = default_llseek,
.release = i915_error_state_release,
};
static int
i915_next_seqno_get(void *data, u64 *val)
{
struct drm_device *dev = data;
drm_i915_private_t *dev_priv = dev->dev_private;
int ret;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
*val = dev_priv->next_seqno;
mutex_unlock(&dev->struct_mutex);
return 0;
}
static int
i915_next_seqno_set(void *data, u64 val)
{
struct drm_device *dev = data;
int ret;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
ret = i915_gem_set_seqno(dev, val);
mutex_unlock(&dev->struct_mutex);
return ret;
}
DEFINE_SIMPLE_ATTRIBUTE(i915_next_seqno_fops,
i915_next_seqno_get, i915_next_seqno_set,
"0x%llx\n");
static int i915_rstdby_delays(struct seq_file *m, void *unused)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
u16 crstanddelay;
int ret;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
crstanddelay = I915_READ16(CRSTANDVID);
mutex_unlock(&dev->struct_mutex);
seq_printf(m, "w/ctx: %d, w/o ctx: %d\n", (crstanddelay >> 8) & 0x3f, (crstanddelay & 0x3f));
return 0;
}
static int i915_cur_delayinfo(struct seq_file *m, void *unused)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
int ret;
if (IS_GEN5(dev)) {
u16 rgvswctl = I915_READ16(MEMSWCTL);
u16 rgvstat = I915_READ16(MEMSTAT_ILK);
seq_printf(m, "Requested P-state: %d\n", (rgvswctl >> 8) & 0xf);
seq_printf(m, "Requested VID: %d\n", rgvswctl & 0x3f);
seq_printf(m, "Current VID: %d\n", (rgvstat & MEMSTAT_VID_MASK) >>
MEMSTAT_VID_SHIFT);
seq_printf(m, "Current P-state: %d\n",
(rgvstat & MEMSTAT_PSTATE_MASK) >> MEMSTAT_PSTATE_SHIFT);
} else if ((IS_GEN6(dev) || IS_GEN7(dev)) && !IS_VALLEYVIEW(dev)) {
u32 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
u32 rp_state_limits = I915_READ(GEN6_RP_STATE_LIMITS);
u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
u32 rpstat, cagf;
u32 rpupei, rpcurup, rpprevup;
u32 rpdownei, rpcurdown, rpprevdown;
int max_freq;
/* RPSTAT1 is in the GT power well */
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
gen6_gt_force_wake_get(dev_priv, FORCEWAKE_ALL);
rpstat = I915_READ(GEN6_RPSTAT1);
rpupei = I915_READ(GEN6_RP_CUR_UP_EI);
rpcurup = I915_READ(GEN6_RP_CUR_UP);
rpprevup = I915_READ(GEN6_RP_PREV_UP);
rpdownei = I915_READ(GEN6_RP_CUR_DOWN_EI);
rpcurdown = I915_READ(GEN6_RP_CUR_DOWN);
rpprevdown = I915_READ(GEN6_RP_PREV_DOWN);
if (IS_HASWELL(dev))
cagf = (rpstat & HSW_CAGF_MASK) >> HSW_CAGF_SHIFT;
else
cagf = (rpstat & GEN6_CAGF_MASK) >> GEN6_CAGF_SHIFT;
cagf *= GT_FREQUENCY_MULTIPLIER;
gen6_gt_force_wake_put(dev_priv, FORCEWAKE_ALL);
mutex_unlock(&dev->struct_mutex);
seq_printf(m, "GT_PERF_STATUS: 0x%08x\n", gt_perf_status);
seq_printf(m, "RPSTAT1: 0x%08x\n", rpstat);
seq_printf(m, "Render p-state ratio: %d\n",
(gt_perf_status & 0xff00) >> 8);
seq_printf(m, "Render p-state VID: %d\n",
gt_perf_status & 0xff);
seq_printf(m, "Render p-state limit: %d\n",
rp_state_limits & 0xff);
seq_printf(m, "CAGF: %dMHz\n", cagf);
seq_printf(m, "RP CUR UP EI: %dus\n", rpupei &
GEN6_CURICONT_MASK);
seq_printf(m, "RP CUR UP: %dus\n", rpcurup &
GEN6_CURBSYTAVG_MASK);
seq_printf(m, "RP PREV UP: %dus\n", rpprevup &
GEN6_CURBSYTAVG_MASK);
seq_printf(m, "RP CUR DOWN EI: %dus\n", rpdownei &
GEN6_CURIAVG_MASK);
seq_printf(m, "RP CUR DOWN: %dus\n", rpcurdown &
GEN6_CURBSYTAVG_MASK);
seq_printf(m, "RP PREV DOWN: %dus\n", rpprevdown &
GEN6_CURBSYTAVG_MASK);
max_freq = (rp_state_cap & 0xff0000) >> 16;
seq_printf(m, "Lowest (RPN) frequency: %dMHz\n",
max_freq * GT_FREQUENCY_MULTIPLIER);
max_freq = (rp_state_cap & 0xff00) >> 8;
seq_printf(m, "Nominal (RP1) frequency: %dMHz\n",
max_freq * GT_FREQUENCY_MULTIPLIER);
max_freq = rp_state_cap & 0xff;
seq_printf(m, "Max non-overclocked (RP0) frequency: %dMHz\n",
max_freq * GT_FREQUENCY_MULTIPLIER);
seq_printf(m, "Max overclocked frequency: %dMHz\n",
dev_priv->rps.hw_max * GT_FREQUENCY_MULTIPLIER);
} else if (IS_VALLEYVIEW(dev)) {
u32 freq_sts;
mutex_lock(&dev_priv->rps.hw_lock);
freq_sts = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
seq_printf(m, "PUNIT_REG_GPU_FREQ_STS: 0x%08x\n", freq_sts);
seq_printf(m, "DDR freq: %d MHz\n", dev_priv->mem_freq);
seq_printf(m, "Max HW Supported GPU freq: %d MHz (%u)\n",
vlv_gpu_freq(dev_priv,
dev_priv->rps.hw_max),
dev_priv->rps.hw_max);
seq_printf(m, "Min HW Supported GPU freq: %d MHz (%u)\n",
vlv_gpu_freq(dev_priv,
dev_priv->rps.hw_min),
dev_priv->rps.hw_min);
seq_printf(m, "Max User Selected GPU freq: %d MHz (%u)\n",
vlv_gpu_freq(dev_priv,
dev_priv->rps.max_delay),
dev_priv->rps.max_delay);
seq_printf(m, "Min User Selected GPU freq: %d MHz (%u)\n",
vlv_gpu_freq(dev_priv,
dev_priv->rps.min_delay),
dev_priv->rps.min_delay);
seq_printf(m, "Current GPU freq: %d MHz (%u)\n",
vlv_gpu_freq(dev_priv,
dev_priv->rps.cur_delay),
dev_priv->rps.cur_delay);
seq_printf(m, "Last Requested Gpu freq: %d MHz (%u)\n",
vlv_gpu_freq(dev_priv,
dev_priv->rps.requested_delay),
dev_priv->rps.requested_delay);
seq_printf(m, "Up Threshold: %d\n",
atomic_read(&dev_priv->turbodebug.up_threshold));
seq_printf(m, "Down Threshold: %d\n",
atomic_read(&dev_priv->turbodebug.down_threshold));
seq_printf(m, "RP_UP: %d\nRP_DOWN:%d\n",
dev_priv->rps.rp_up_masked,
dev_priv->rps.rp_down_masked);
mutex_unlock(&dev_priv->rps.hw_lock);
} else {
seq_puts(m, "no P-state info available\n");
}
return 0;
}
static int i915_delayfreq_table(struct seq_file *m, void *unused)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
u32 delayfreq;
int ret, i;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
for (i = 0; i < 16; i++) {
delayfreq = I915_READ(PXVFREQ_BASE + i * 4);
seq_printf(m, "P%02dVIDFREQ: 0x%08x (VID: %d)\n", i, delayfreq,
(delayfreq & PXVFREQ_PX_MASK) >> PXVFREQ_PX_SHIFT);
}
mutex_unlock(&dev->struct_mutex);
return 0;
}
static inline int MAP_TO_MV(int map)
{
return 1250 - (map * 25);
}
static int i915_inttoext_table(struct seq_file *m, void *unused)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
u32 inttoext;
int ret, i;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
for (i = 1; i <= 32; i++) {
inttoext = I915_READ(INTTOEXT_BASE_ILK + i * 4);
seq_printf(m, "INTTOEXT%02d: 0x%08x\n", i, inttoext);
}
mutex_unlock(&dev->struct_mutex);
return 0;
}
static int ironlake_drpc_info(struct seq_file *m)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
u32 rgvmodectl, rstdbyctl;
u16 crstandvid;
int ret;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
rgvmodectl = I915_READ(MEMMODECTL);
rstdbyctl = I915_READ(RSTDBYCTL);
crstandvid = I915_READ16(CRSTANDVID);
mutex_unlock(&dev->struct_mutex);
seq_printf(m, "HD boost: %s\n", (rgvmodectl & MEMMODE_BOOST_EN) ?
"yes" : "no");
seq_printf(m, "Boost freq: %d\n",
(rgvmodectl & MEMMODE_BOOST_FREQ_MASK) >>
MEMMODE_BOOST_FREQ_SHIFT);
seq_printf(m, "HW control enabled: %s\n",
rgvmodectl & MEMMODE_HWIDLE_EN ? "yes" : "no");
seq_printf(m, "SW control enabled: %s\n",
rgvmodectl & MEMMODE_SWMODE_EN ? "yes" : "no");
seq_printf(m, "Gated voltage change: %s\n",
rgvmodectl & MEMMODE_RCLK_GATE ? "yes" : "no");
seq_printf(m, "Starting frequency: P%d\n",
(rgvmodectl & MEMMODE_FSTART_MASK) >> MEMMODE_FSTART_SHIFT);
seq_printf(m, "Max P-state: P%d\n",
(rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT);
seq_printf(m, "Min P-state: P%d\n", (rgvmodectl & MEMMODE_FMIN_MASK));
seq_printf(m, "RS1 VID: %d\n", (crstandvid & 0x3f));
seq_printf(m, "RS2 VID: %d\n", ((crstandvid >> 8) & 0x3f));
seq_printf(m, "Render standby enabled: %s\n",
(rstdbyctl & RCX_SW_EXIT) ? "no" : "yes");
seq_puts(m, "Current RS state: ");
switch (rstdbyctl & RSX_STATUS_MASK) {
case RSX_STATUS_ON:
seq_puts(m, "on\n");
break;
case RSX_STATUS_RC1:
seq_puts(m, "RC1\n");
break;
case RSX_STATUS_RC1E:
seq_puts(m, "RC1E\n");
break;
case RSX_STATUS_RS1:
seq_puts(m, "RS1\n");
break;
case RSX_STATUS_RS2:
seq_puts(m, "RS2 (RC6)\n");
break;
case RSX_STATUS_RS3:
seq_puts(m, "RC3 (RC6+)\n");
break;
default:
seq_puts(m, "unknown\n");
break;
}
return 0;
}
static int gen6_drpc_info(struct seq_file *m)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
struct drm_i915_private *dev_priv = dev->dev_private;
u32 rpmodectl1, gt_core_status, rcctl1, rc6vids = 0;
unsigned forcewake_count;
int count = 0, ret;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
spin_lock_irq(&dev_priv->uncore.lock);
forcewake_count = dev_priv->uncore.forcewake_count;
spin_unlock_irq(&dev_priv->uncore.lock);
if (forcewake_count) {
seq_puts(m, "RC information inaccurate because somebody "
"holds a forcewake reference \n");
} else {
/* NB: we cannot use forcewake, else we read the wrong values */
while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_ACK) & 1))
udelay(10);
seq_printf(m, "RC information accurate: %s\n", yesno(count < 51));
}
gt_core_status = readl(dev_priv->regs + GEN6_GT_CORE_STATUS);
trace_i915_reg_rw(false, GEN6_GT_CORE_STATUS, gt_core_status, 4, true);
rpmodectl1 = I915_READ(GEN6_RP_CONTROL);
rcctl1 = I915_READ(GEN6_RC_CONTROL);
mutex_unlock(&dev->struct_mutex);
mutex_lock(&dev_priv->rps.hw_lock);
sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
mutex_unlock(&dev_priv->rps.hw_lock);
seq_printf(m, "Video Turbo Mode: %s\n",
yesno(rpmodectl1 & GEN6_RP_MEDIA_TURBO));
seq_printf(m, "HW control enabled: %s\n",
yesno(rpmodectl1 & GEN6_RP_ENABLE));
seq_printf(m, "SW control enabled: %s\n",
yesno((rpmodectl1 & GEN6_RP_MEDIA_MODE_MASK) ==
GEN6_RP_MEDIA_SW_MODE));
seq_printf(m, "RC1e Enabled: %s\n",
yesno(rcctl1 & GEN6_RC_CTL_RC1e_ENABLE));
seq_printf(m, "RC6 Enabled: %s\n",
yesno(rcctl1 & GEN6_RC_CTL_RC6_ENABLE));
seq_printf(m, "Deep RC6 Enabled: %s\n",
yesno(rcctl1 & GEN6_RC_CTL_RC6p_ENABLE));
seq_printf(m, "Deepest RC6 Enabled: %s\n",
yesno(rcctl1 & GEN6_RC_CTL_RC6pp_ENABLE));
seq_puts(m, "Current RC state: ");
switch (gt_core_status & GEN6_RCn_MASK) {
case GEN6_RC0:
if (gt_core_status & GEN6_CORE_CPD_STATE_MASK)
seq_puts(m, "Core Power Down\n");
else
seq_puts(m, "on\n");
break;
case GEN6_RC3:
seq_puts(m, "RC3\n");
break;
case GEN6_RC6:
seq_puts(m, "RC6\n");
break;
case GEN6_RC7:
seq_puts(m, "RC7\n");
break;
default:
seq_puts(m, "Unknown\n");
break;
}
seq_printf(m, "Core Power Down: %s\n",
yesno(gt_core_status & GEN6_CORE_CPD_STATE_MASK));
/* Not exactly sure what this is */
seq_printf(m, "RC6 \"Locked to RPn\" residency since boot: %u\n",
I915_READ(GEN6_GT_GFX_RC6_LOCKED));
seq_printf(m, "RC6 residency since boot: %u\n",
I915_READ(GEN6_GT_GFX_RC6));
seq_printf(m, "RC6+ residency since boot: %u\n",
I915_READ(GEN6_GT_GFX_RC6p));
seq_printf(m, "RC6++ residency since boot: %u\n",
I915_READ(GEN6_GT_GFX_RC6pp));
seq_printf(m, "RC6 voltage: %dmV\n",
GEN6_DECODE_RC6_VID(((rc6vids >> 0) & 0xff)));
seq_printf(m, "RC6+ voltage: %dmV\n",
GEN6_DECODE_RC6_VID(((rc6vids >> 8) & 0xff)));
seq_printf(m, "RC6++ voltage: %dmV\n",
GEN6_DECODE_RC6_VID(((rc6vids >> 16) & 0xff)));
return 0;
}
static int i915_drpc_info(struct seq_file *m, void *unused)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
if (IS_GEN6(dev) || IS_GEN7(dev))
return gen6_drpc_info(m);
else
return ironlake_drpc_info(m);
}
static int i915_fbc_status(struct seq_file *m, void *unused)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
if (!I915_HAS_FBC(dev)) {
seq_puts(m, "FBC unsupported on this chipset\n");
return 0;
}
if (intel_fbc_enabled(dev)) {
seq_puts(m, "FBC enabled\n");
} else {
seq_puts(m, "FBC disabled: ");
switch (dev_priv->fbc.no_fbc_reason) {
case FBC_OK:
seq_puts(m, "FBC actived, but currently disabled in hardware");
break;
case FBC_UNSUPPORTED:
seq_puts(m, "unsupported by this chipset");
break;
case FBC_NO_OUTPUT:
seq_puts(m, "no outputs");
break;
case FBC_STOLEN_TOO_SMALL:
seq_puts(m, "not enough stolen memory");
break;
case FBC_UNSUPPORTED_MODE:
seq_puts(m, "mode not supported");
break;
case FBC_MODE_TOO_LARGE:
seq_puts(m, "mode too large");
break;
case FBC_BAD_PLANE:
seq_puts(m, "FBC unsupported on plane");
break;
case FBC_NOT_TILED:
seq_puts(m, "scanout buffer not tiled");
break;
case FBC_MULTIPLE_PIPES:
seq_puts(m, "multiple pipes are enabled");
break;
case FBC_MODULE_PARAM:
seq_puts(m, "disabled per module param (default off)");
break;
case FBC_CHIP_DEFAULT:
seq_puts(m, "disabled per chip default");
break;
default:
seq_puts(m, "unknown reason");
}
seq_putc(m, '\n');
}
return 0;
}
static int i915_ips_status(struct seq_file *m, void *unused)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
struct drm_i915_private *dev_priv = dev->dev_private;
if (!HAS_IPS(dev)) {
seq_puts(m, "not supported\n");
return 0;
}
if (I915_READ(IPS_CTL) & IPS_ENABLE)
seq_puts(m, "enabled\n");
else
seq_puts(m, "disabled\n");
return 0;
}
static int i915_sr_status(struct seq_file *m, void *unused)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
bool sr_enabled = false;
if (HAS_PCH_SPLIT(dev))
sr_enabled = I915_READ(WM1_LP_ILK) & WM1_LP_SR_EN;
else if (IS_CRESTLINE(dev) || IS_I945G(dev) || IS_I945GM(dev))
sr_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
else if (IS_I915GM(dev))
sr_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
else if (IS_PINEVIEW(dev))
sr_enabled = I915_READ(DSPFW3) & PINEVIEW_SELF_REFRESH_EN;
seq_printf(m, "self-refresh: %s\n",
sr_enabled ? "enabled" : "disabled");
return 0;
}
static int i915_emon_status(struct seq_file *m, void *unused)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
unsigned long temp, chipset, gfx;
int ret;
if (!IS_GEN5(dev))
return -ENODEV;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
temp = i915_mch_val(dev_priv);
chipset = i915_chipset_val(dev_priv);
gfx = i915_gfx_val(dev_priv);
mutex_unlock(&dev->struct_mutex);
seq_printf(m, "GMCH temp: %ld\n", temp);
seq_printf(m, "Chipset power: %ld\n", chipset);
seq_printf(m, "GFX power: %ld\n", gfx);
seq_printf(m, "Total power: %ld\n", chipset + gfx);
return 0;
}
static int i915_ring_freq_table(struct seq_file *m, void *unused)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
int ret;
int gpu_freq, ia_freq;
if (!(IS_GEN6(dev) || IS_GEN7(dev))) {
seq_puts(m, "unsupported on this chipset\n");
return 0;
}
ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
if (ret)
return ret;
seq_puts(m, "GPU freq (MHz)\tEffective CPU freq (MHz)\tEffective Ring freq (MHz)\n");
for (gpu_freq = dev_priv->rps.min_delay;
gpu_freq <= dev_priv->rps.max_delay;
gpu_freq++) {
ia_freq = gpu_freq;
sandybridge_pcode_read(dev_priv,
GEN6_PCODE_READ_MIN_FREQ_TABLE,
&ia_freq);
seq_printf(m, "%d\t\t%d\t\t\t\t%d\n",
gpu_freq * GT_FREQUENCY_MULTIPLIER,
((ia_freq >> 0) & 0xff) * 100,
((ia_freq >> 8) & 0xff) * 100);
}
mutex_unlock(&dev_priv->rps.hw_lock);
return 0;
}
static int i915_gfxec(struct seq_file *m, void *unused)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
int ret;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
seq_printf(m, "GFXEC: %ld\n", (unsigned long)I915_READ(0x112f4));
mutex_unlock(&dev->struct_mutex);
return 0;
}
static int i915_opregion(struct seq_file *m, void *unused)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
struct intel_opregion *opregion = &dev_priv->opregion;
void *data = kmalloc(OPREGION_SIZE, GFP_KERNEL);
int ret;
if (data == NULL)
return -ENOMEM;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
goto out;
if (opregion->header) {
memcpy_fromio(data, opregion->header, OPREGION_SIZE);
seq_write(m, data, OPREGION_SIZE);
}
mutex_unlock(&dev->struct_mutex);
out:
kfree(data);
return 0;
}
static int i915_gem_framebuffer_info(struct seq_file *m, void *data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
struct intel_fbdev *ifbdev;
struct intel_framebuffer *fb;
int ret;
ret = mutex_lock_interruptible(&dev->mode_config.mutex);
if (ret)
return ret;
ifbdev = dev_priv->fbdev;
fb = to_intel_framebuffer(ifbdev->helper.fb);
seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, refcount %d, obj ",
fb->base.width,
fb->base.height,
fb->base.depth,
fb->base.bits_per_pixel,
atomic_read(&fb->base.refcount.refcount));
describe_obj(m, fb->obj);
seq_putc(m, '\n');
mutex_unlock(&dev->mode_config.mutex);
mutex_lock(&dev->mode_config.fb_lock);
list_for_each_entry(fb, &dev->mode_config.fb_list, base.head) {
if (&fb->base == ifbdev->helper.fb)
continue;
seq_printf(m, "user size: %d x %d, depth %d, %d bpp, refcount %d, obj ",
fb->base.width,
fb->base.height,
fb->base.depth,
fb->base.bits_per_pixel,
atomic_read(&fb->base.refcount.refcount));
describe_obj(m, fb->obj);
seq_putc(m, '\n');
}
mutex_unlock(&dev->mode_config.fb_lock);
return 0;
}
static int i915_context_status(struct seq_file *m, void *unused)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
drm_i915_private_t *dev_priv = dev->dev_private;
struct intel_ring_buffer *ring;
int ret, i;
ret = mutex_lock_interruptible(&dev->mode_config.mutex);
if (ret)
return ret;
if (dev_priv->ips.pwrctx) {
seq_puts(m, "power context ");
describe_obj(m, dev_priv->ips.pwrctx);
seq_putc(m, '\n');
}
if (dev_priv->ips.renderctx) {
seq_puts(m, "render context ");
describe_obj(m, dev_priv->ips.renderctx);
seq_putc(m, '\n');
}
for_each_ring(ring, dev_priv, i) {
if (ring->default_context) {
seq_printf(m, "HW default context %s ring ", ring->name);
describe_obj(m, ring->default_context->obj);
seq_putc(m, '\n');
}
}
mutex_unlock(&dev->mode_config.mutex);
return 0;
}
static int i915_gen6_forcewake_count_info(struct seq_file *m, void *data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
struct drm_i915_private *dev_priv = dev->dev_private;
unsigned forcewake_count = 0;
unsigned fw_rendercount = 0;
unsigned fw_mediacount = 0;
spin_lock_irq(&dev_priv->uncore.lock);
if (IS_VALLEYVIEW(dev)) {
fw_rendercount = dev_priv->uncore.fw_rendercount;
fw_mediacount = dev_priv->uncore.fw_mediacount;
} else
forcewake_count = dev_priv->uncore.forcewake_count;
spin_unlock_irq(&dev_priv->uncore.lock);
if (IS_VALLEYVIEW(dev)) {
seq_printf(m, "fw_rendercount = %u\n", fw_rendercount);
seq_printf(m, "fw_mediacount = %u\n", fw_mediacount);
} else
seq_printf(m, "forcewake count = %u\n", forcewake_count);
return 0;
}
static const char *swizzle_string(unsigned swizzle)
{
switch (swizzle) {
case I915_BIT_6_SWIZZLE_NONE:
return "none";
case I915_BIT_6_SWIZZLE_9:
return "bit9";
case I915_BIT_6_SWIZZLE_9_10:
return "bit9/bit10";
case I915_BIT_6_SWIZZLE_9_11:
return "bit9/bit11";
case I915_BIT_6_SWIZZLE_9_10_11:
return "bit9/bit10/bit11";
case I915_BIT_6_SWIZZLE_9_17:
return "bit9/bit17";
case I915_BIT_6_SWIZZLE_9_10_17:
return "bit9/bit10/bit17";
case I915_BIT_6_SWIZZLE_UNKNOWN:
return "unknown";
}
return "bug";
}
static int i915_swizzle_info(struct seq_file *m, void *data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
struct drm_i915_private *dev_priv = dev->dev_private;
int ret;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
seq_printf(m, "bit6 swizzle for X-tiling = %s\n",
swizzle_string(dev_priv->mm.bit_6_swizzle_x));
seq_printf(m, "bit6 swizzle for Y-tiling = %s\n",
swizzle_string(dev_priv->mm.bit_6_swizzle_y));
if (IS_GEN3(dev) || IS_GEN4(dev)) {
seq_printf(m, "DDC = 0x%08x\n",
I915_READ(DCC));
seq_printf(m, "C0DRB3 = 0x%04x\n",
I915_READ16(C0DRB3));
seq_printf(m, "C1DRB3 = 0x%04x\n",
I915_READ16(C1DRB3));
} else if (IS_GEN6(dev) || IS_GEN7(dev)) {
seq_printf(m, "MAD_DIMM_C0 = 0x%08x\n",
I915_READ(MAD_DIMM_C0));
seq_printf(m, "MAD_DIMM_C1 = 0x%08x\n",
I915_READ(MAD_DIMM_C1));
seq_printf(m, "MAD_DIMM_C2 = 0x%08x\n",
I915_READ(MAD_DIMM_C2));
seq_printf(m, "TILECTL = 0x%08x\n",
I915_READ(TILECTL));
seq_printf(m, "ARB_MODE = 0x%08x\n",
I915_READ(ARB_MODE));
seq_printf(m, "DISP_ARB_CTL = 0x%08x\n",
I915_READ(DISP_ARB_CTL));
}
mutex_unlock(&dev->struct_mutex);
return 0;
}
static int i915_ppgtt_info(struct seq_file *m, void *data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
struct drm_i915_private *dev_priv = dev->dev_private;
struct intel_ring_buffer *ring;
int i, ret;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
if (INTEL_INFO(dev)->gen == 6)
seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(GFX_MODE));
for_each_ring(ring, dev_priv, i) {
seq_printf(m, "%s\n", ring->name);
if (INTEL_INFO(dev)->gen == 7)
seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(RING_MODE_GEN7(ring)));
seq_printf(m, "PP_DIR_BASE: 0x%08x\n", I915_READ(RING_PP_DIR_BASE(ring)));
seq_printf(m, "PP_DIR_BASE_READ: 0x%08x\n", I915_READ(RING_PP_DIR_BASE_READ(ring)));
seq_printf(m, "PP_DIR_DCLV: 0x%08x\n", I915_READ(RING_PP_DIR_DCLV(ring)));
}
if (dev_priv->mm.aliasing_ppgtt) {
struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
seq_puts(m, "aliasing PPGTT:\n");
seq_printf(m, "pd gtt offset: 0x%08x\n", ppgtt->pd_offset);
}
seq_printf(m, "ECOCHK: 0x%08x\n", I915_READ(GAM_ECOCHK));
mutex_unlock(&dev->struct_mutex);
return 0;
}
static int i915_dpio_info(struct seq_file *m, void *data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
struct drm_i915_private *dev_priv = dev->dev_private;
int ret;
if (!IS_VALLEYVIEW(dev)) {
seq_puts(m, "unsupported\n");
return 0;
}
ret = mutex_lock_interruptible(&dev_priv->dpio_lock);
if (ret)
return ret;
seq_printf(m, "DPIO_CTL: 0x%08x\n", I915_READ(DPIO_CTL));
seq_printf(m, "DPIO_DIV_A: 0x%08x\n",
vlv_dpio_read(dev_priv, _DPIO_DIV_A));
seq_printf(m, "DPIO_DIV_B: 0x%08x\n",
vlv_dpio_read(dev_priv, _DPIO_DIV_B));
seq_printf(m, "DPIO_REFSFR_A: 0x%08x\n",
vlv_dpio_read(dev_priv, _DPIO_REFSFR_A));
seq_printf(m, "DPIO_REFSFR_B: 0x%08x\n",
vlv_dpio_read(dev_priv, _DPIO_REFSFR_B));
seq_printf(m, "DPIO_CORE_CLK_A: 0x%08x\n",
vlv_dpio_read(dev_priv, _DPIO_CORE_CLK_A));
seq_printf(m, "DPIO_CORE_CLK_B: 0x%08x\n",
vlv_dpio_read(dev_priv, _DPIO_CORE_CLK_B));
seq_printf(m, "DPIO_LPF_COEFF_A: 0x%08x\n",
vlv_dpio_read(dev_priv, _DPIO_LPF_COEFF_A));
seq_printf(m, "DPIO_LPF_COEFF_B: 0x%08x\n",
vlv_dpio_read(dev_priv, _DPIO_LPF_COEFF_B));
seq_printf(m, "DPIO_FASTCLK_DISABLE: 0x%08x\n",
vlv_dpio_read(dev_priv, DPIO_FASTCLK_DISABLE));
mutex_unlock(&dev_priv->dpio_lock);
return 0;
}
static int i915_llc(struct seq_file *m, void *data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
struct drm_i915_private *dev_priv = dev->dev_private;
/* Size calculation for LLC is a bit of a pain. Ignore for now. */
seq_printf(m, "LLC: %s\n", yesno(HAS_LLC(dev)));
seq_printf(m, "eLLC: %zuMB\n", dev_priv->ellc_size);
return 0;
}
static int i915_edp_psr_status(struct seq_file *m, void *data)
{
struct drm_info_node *node = m->private;
struct drm_device *dev = node->minor->dev;
struct drm_i915_private *dev_priv = dev->dev_private;
u32 psrstat, psrperf;
if (!IS_HASWELL(dev)) {
seq_puts(m, "PSR not supported on this platform\n");
} else if (IS_HASWELL(dev) && I915_READ(EDP_PSR_CTL) & EDP_PSR_ENABLE) {
seq_puts(m, "PSR enabled\n");
} else {
seq_puts(m, "PSR disabled: ");
switch (dev_priv->no_psr_reason) {
case PSR_NO_SOURCE:
seq_puts(m, "not supported on this platform");
break;
case PSR_NO_SINK:
seq_puts(m, "not supported by panel");
break;
case PSR_MODULE_PARAM:
seq_puts(m, "disabled by flag");
break;
case PSR_CRTC_NOT_ACTIVE:
seq_puts(m, "crtc not active");
break;
case PSR_PWR_WELL_ENABLED:
seq_puts(m, "power well enabled");
break;
case PSR_NOT_TILED:
seq_puts(m, "not tiled");
break;
case PSR_SPRITE_ENABLED:
seq_puts(m, "sprite enabled");
break;
case PSR_S3D_ENABLED:
seq_puts(m, "stereo 3d enabled");
break;
case PSR_INTERLACED_ENABLED:
seq_puts(m, "interlaced enabled");
break;
case PSR_HSW_NOT_DDIA:
seq_puts(m, "HSW ties PSR to DDI A (eDP)");
break;
default:
seq_puts(m, "unknown reason");
}
seq_puts(m, "\n");
return 0;
}
psrstat = I915_READ(EDP_PSR_STATUS_CTL);
seq_puts(m, "PSR Current State: ");
switch (psrstat & EDP_PSR_STATUS_STATE_MASK) {
case EDP_PSR_STATUS_STATE_IDLE:
seq_puts(m, "Reset state\n");
break;
case EDP_PSR_STATUS_STATE_SRDONACK:
seq_puts(m, "Wait for TG/Stream to send on frame of data after SRD conditions are met\n");
break;
case EDP_PSR_STATUS_STATE_SRDENT:
seq_puts(m, "SRD entry\n");
break;
case EDP_PSR_STATUS_STATE_BUFOFF:
seq_puts(m, "Wait for buffer turn off\n");
break;
case EDP_PSR_STATUS_STATE_BUFON:
seq_puts(m, "Wait for buffer turn on\n");
break;
case EDP_PSR_STATUS_STATE_AUXACK:
seq_puts(m, "Wait for AUX to acknowledge on SRD exit\n");
break;
case EDP_PSR_STATUS_STATE_SRDOFFACK:
seq_puts(m, "Wait for TG/Stream to acknowledge the SRD VDM exit\n");
break;
default:
seq_puts(m, "Unknown\n");
break;
}
seq_puts(m, "Link Status: ");
switch (psrstat & EDP_PSR_STATUS_LINK_MASK) {
case EDP_PSR_STATUS_LINK_FULL_OFF:
seq_puts(m, "Link is fully off\n");
break;
case EDP_PSR_STATUS_LINK_FULL_ON:
seq_puts(m, "Link is fully on\n");
break;
case EDP_PSR_STATUS_LINK_STANDBY:
seq_puts(m, "Link is in standby\n");
break;
default:
seq_puts(m, "Unknown\n");
break;
}
seq_printf(m, "PSR Entry Count: %u\n",
psrstat >> EDP_PSR_STATUS_COUNT_SHIFT &
EDP_PSR_STATUS_COUNT_MASK);
seq_printf(m, "Max Sleep Timer Counter: %u\n",
psrstat >> EDP_PSR_STATUS_MAX_SLEEP_TIMER_SHIFT &
EDP_PSR_STATUS_MAX_SLEEP_TIMER_MASK);
seq_printf(m, "Had AUX error: %s\n",
yesno(psrstat & EDP_PSR_STATUS_AUX_ERROR));
seq_printf(m, "Sending AUX: %s\n",
yesno(psrstat & EDP_PSR_STATUS_AUX_SENDING));
seq_printf(m, "Sending Idle: %s\n",
yesno(psrstat & EDP_PSR_STATUS_SENDING_IDLE));
seq_printf(m, "Sending TP2 TP3: %s\n",
yesno(psrstat & EDP_PSR_STATUS_SENDING_TP2_TP3));
seq_printf(m, "Sending TP1: %s\n",
yesno(psrstat & EDP_PSR_STATUS_SENDING_TP1));
seq_printf(m, "Idle Count: %u\n",
psrstat & EDP_PSR_STATUS_IDLE_MASK);
psrperf = (I915_READ(EDP_PSR_PERF_CNT)) & EDP_PSR_PERF_CNT_MASK;
seq_printf(m, "Performance Counter: %u\n", psrperf);
return 0;
}
static int i915_energy_uJ(struct seq_file *m, void *data)
{
struct drm_info_node *node = m->private;
struct drm_device *dev = node->minor->dev;
struct drm_i915_private *dev_priv = dev->dev_private;
u64 power;
u32 units;
if (INTEL_INFO(dev)->gen < 6)
return -ENODEV;
rdmsrl(MSR_RAPL_POWER_UNIT, power);
power = (power & 0x1f00) >> 8;
units = 1000000 / (1 << power); /* convert to uJ */
power = I915_READ(MCH_SECP_NRG_STTS);
power *= units;
seq_printf(m, "%llu", (long long unsigned)power);
return 0;
}
static int i915_pc8_status(struct seq_file *m, void *unused)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_device *dev = node->minor->dev;
struct drm_i915_private *dev_priv = dev->dev_private;
if (!IS_HASWELL(dev)) {
seq_puts(m, "not supported\n");
return 0;
}
mutex_lock(&dev_priv->pc8.lock);
seq_printf(m, "Requirements met: %s\n",
yesno(dev_priv->pc8.requirements_met));
seq_printf(m, "GPU idle: %s\n", yesno(dev_priv->pc8.gpu_idle));
seq_printf(m, "Disable count: %d\n", dev_priv->pc8.disable_count);
seq_printf(m, "IRQs disabled: %s\n",
yesno(dev_priv->pc8.irqs_disabled));
seq_printf(m, "Enabled: %s\n", yesno(dev_priv->pc8.enabled));
mutex_unlock(&dev_priv->pc8.lock);
return 0;
}
static int
i915_wedged_get(void *data, u64 *val)
{
struct drm_device *dev = data;
drm_i915_private_t *dev_priv = dev->dev_private;
*val = atomic_read(&dev_priv->gpu_error.reset_counter);
return 0;
}
static int
i915_wedged_set(void *data, u64 val)
{
struct drm_device *dev = data;
drm_i915_private_t *dev_priv = dev->dev_private;
/* This triggers a global reset */
DRM_INFO("Manually setting wedged to %llu\n", val);
if (val) {
if (!i915_reset_in_progress(&dev_priv->gpu_error))
i915_handle_error(dev, NULL, 0);
}
return 0;
}
DEFINE_SIMPLE_ATTRIBUTE(i915_wedged_fops,
i915_wedged_get, i915_wedged_set,
"%llu\n");
static int
i915_ring_stop_get(void *data, u64 *val)
{
struct drm_device *dev = data;
drm_i915_private_t *dev_priv = dev->dev_private;
*val = dev_priv->gpu_error.stop_rings;
return 0;
}
static int
i915_ring_stop_set(void *data, u64 val)
{
struct drm_device *dev = data;
struct drm_i915_private *dev_priv = dev->dev_private;
int ret;
DRM_DEBUG_DRIVER("Stopping rings 0x%08llx\n", val);
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
dev_priv->gpu_error.stop_rings = val;
mutex_unlock(&dev->struct_mutex);
return 0;
}
DEFINE_SIMPLE_ATTRIBUTE(i915_ring_stop_fops,
i915_ring_stop_get, i915_ring_stop_set,
"0x%08llx\n");
#define DROP_UNBOUND 0x1
#define DROP_BOUND 0x2
#define DROP_RETIRE 0x4
#define DROP_ACTIVE 0x8
#define DROP_ALL (DROP_UNBOUND | \
DROP_BOUND | \
DROP_RETIRE | \
DROP_ACTIVE)
static int
i915_drop_caches_get(void *data, u64 *val)
{
*val = DROP_ALL;
return 0;
}
static int
i915_drop_caches_set(void *data, u64 val)
{
struct drm_device *dev = data;
struct drm_i915_private *dev_priv = dev->dev_private;
struct drm_i915_gem_object *obj, *next;
struct i915_address_space *vm;
struct i915_vma *vma, *x;
int ret;
DRM_DEBUG_DRIVER("Dropping caches: 0x%08llx\n", val);
/* No need to check and wait for gpu resets, only libdrm auto-restarts
* on ioctls on -EAGAIN. */
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
if (val & DROP_ACTIVE) {
ret = i915_gpu_idle(dev);
if (ret)
goto unlock;
}
if (val & (DROP_RETIRE | DROP_ACTIVE))
i915_gem_retire_requests(dev);
if (val & DROP_BOUND) {
list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
list_for_each_entry_safe(vma, x, &vm->inactive_list,
mm_list) {
if (vma->obj->pin_count)
continue;
ret = i915_vma_unbind(vma);
if (ret)
goto unlock;
}
}
}
if (val & DROP_UNBOUND) {
list_for_each_entry_safe(obj, next, &dev_priv->mm.unbound_list,
global_list)
if (obj->pages_pin_count == 0) {
ret = i915_gem_object_put_pages(obj);
if (ret)
goto unlock;
}
}
unlock:
mutex_unlock(&dev->struct_mutex);
return ret;
}
DEFINE_SIMPLE_ATTRIBUTE(i915_drop_caches_fops,
i915_drop_caches_get, i915_drop_caches_set,
"0x%08llx\n");
/* Helper function to set max freq turbo based on input */
static int
i915_set_max_freq(struct drm_device *dev, int val)
{
int ret;
u32 hw_max, hw_min;
drm_i915_private_t *dev_priv = dev->dev_private;
DRM_DEBUG_DRIVER("Manually setting max freq to %d\n", val);
ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
if (ret)
return ret;
hw_max = dev_priv->rps.hw_max;
hw_min = dev_priv->rps.hw_min;
if (val < hw_min || val > hw_max ||
val < dev_priv->rps.min_delay) {
mutex_unlock(&dev_priv->rps.hw_lock);
return -1;
}
if (IS_VALLEYVIEW(dev))
dev_priv->rps.max_delay = val;
else
dev_priv->rps.max_delay = val / 50;
/*
* Turbo will still be enabled, but won't go above the set value.
*/
if (dev_priv->rps.cur_delay > val) {
if (IS_VALLEYVIEW(dev)) {
valleyview_set_rps(dev, val);
/* if rps frequency is changed above we need to take
* care of bringing it down to rpe through rps timer */
mod_delayed_work(dev_priv->rpswq,
&dev_priv->rps.vlv_work,
msecs_to_jiffies(100));
} else
gen6_set_rps(dev, val / 50);
}
mutex_unlock(&dev_priv->rps.hw_lock);
return 0;
}
static ssize_t
i915_ring_hangcheck_read(struct file *filp,
char __user *ubuf,
size_t max,
loff_t *ppos)
{
/* Returns the total number of times the rings
* have hung and been reset since boot */
struct drm_device *dev = filp->private_data;
drm_i915_private_t *dev_priv = dev->dev_private;
char buf[200];
int len;
len = scnprintf(buf, sizeof(buf),
"GPU=0x%08X,RCS=0x%08X,VCS=0x%08X,BCS=0x%08X\n,"
"RCS_T=0x%08x,VCS_T=0x%08x,BCS_T=0x%08x,"
"RCS_W=0x%08x,VCS_W=0x%08x,BCS_W=0x%08x\n",
dev_priv->gpu_error.total_resets,
dev_priv->hangcheck[RCS].total,
dev_priv->hangcheck[VCS].total,
dev_priv->hangcheck[BCS].total,
dev_priv->hangcheck[RCS].tdr_count,
dev_priv->hangcheck[VCS].tdr_count,
dev_priv->hangcheck[BCS].tdr_count,
dev_priv->hangcheck[RCS].watchdog_count,
dev_priv->hangcheck[VCS].watchdog_count,
dev_priv->hangcheck[BCS].watchdog_count);
return simple_read_from_buffer(ubuf, max, ppos, buf, len);
}
static ssize_t
i915_ring_hangcheck_write(struct file *filp,
const char __user *ubuf,
size_t cnt,
loff_t *ppos)
{
struct drm_device *dev = filp->private_data;
struct drm_i915_private *dev_priv = dev->dev_private;
int ret;
uint32_t i;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
for (i = 0; i < I915_NUM_RINGS; i++) {
/* Reset the hangcheck counters */
dev_priv->hangcheck[i].total = 0;
dev_priv->hangcheck[i].tdr_count = 0;
dev_priv->hangcheck[i].watchdog_count = 0;
}
dev_priv->gpu_error.total_resets = 0;
mutex_unlock(&dev->struct_mutex);
return cnt;
}
static const struct file_operations i915_ring_hangcheck_fops = {
.owner = THIS_MODULE,
.open = simple_open,
.read = i915_ring_hangcheck_read,
.write = i915_ring_hangcheck_write,
.llseek = default_llseek,
};
/* Helper function to enable and disable dpst based on input */
int
i915_dpst_enable_disable(struct drm_device *dev, unsigned int val)
{
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
/* 1=> Enable DPST, else disable. */
if (val == 1)
i915_dpst_enable_hist_interrupt(dev, true);
else
i915_dpst_disable_hist_interrupt(dev, true);
/* Send a fake signal to start the process */
i915_dpst_irq_handler(dev);
return 0;
}
static int
i915_dpst_status(struct drm_device *dev, char *buf, int *len)
{
drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
*len = scnprintf(buf, MAX_BUFFER_STR_LEN, "DPST Enabled: %s\n",
yesno(dev_priv->dpst.enabled ? 1 : 0));
return 0;
}
static int
i915_dpst_irq_count(struct drm_device *dev, char *buf, int *len)
{
drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
*len = scnprintf(buf, MAX_BUFFER_STR_LEN, "DPST Interrupt Count: %d\n",
dev_priv->dpst.num_interrupt);
return 0;
}
static int
i915_dpst_dump_reg(struct drm_device *dev, char *buf, int *len)
{
drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
u32 btgr_data, hcr_data, bpcr_data, dpst_set_level;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
btgr_data = I915_READ(BLC_HIST_GUARD);
hcr_data = I915_READ(BLC_HIST_BIN);
bpcr_data = I915_READ(BLC_PWM_CTL);
dpst_set_level = I915_READ(BLC_PWM_CTL) & 0xffff;
*len = scnprintf(buf, MAX_BUFFER_STR_LEN, "IEBTGR: 0x%x & IEHCR: 0x%x",
btgr_data, hcr_data);
*len += scnprintf(&buf[*len], (MAX_BUFFER_STR_LEN - *len),
" & IEBPCR: 0x%x DPST_SET_LEVEL: 0x%x\n",
bpcr_data, dpst_set_level);
return 0;
}
static int
i915_dpst_get_bin_data(struct drm_device *dev, char *buf, int *len)
{
drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
int index;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
*len = scnprintf(buf, MAX_BUFFER_STR_LEN, "Bin Data:\n");
for (index = 0; index < DPST_BIN_COUNT; index++)
*len += scnprintf(&buf[*len], (MAX_BUFFER_STR_LEN - *len),
"%d ", dev_priv->dpst.bin_data[index]);
*len += scnprintf(&buf[*len], (MAX_BUFFER_STR_LEN - *len), "\n");
return 0;
}
static int
i915_dpst_get_luma_data(struct drm_device *dev, char *buf, int *len)
{
drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
int index;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
*len = scnprintf(buf, MAX_BUFFER_STR_LEN, "LUMA Data:\n");
for (index = 0; index < DPST_LUMA_COUNT; index++)
*len += scnprintf(&buf[*len], (MAX_BUFFER_STR_LEN - *len),
"%d ", dev_priv->dpst.luma_data[index]);
*len += scnprintf(&buf[*len], (MAX_BUFFER_STR_LEN - *len), "\n");
return 0;
}
static ssize_t
i915_read_dpst_api(struct file *filp,
char __user *ubuf,
size_t max,
loff_t *ppos)
{
struct drm_device *dev = filp->private_data;
drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
char buf[200], control[10], operation[20], val[20], format[20];
int len = 0, ret, no_of_tokens;
u32 dpst_set_level;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
if (i915_debugfs_vars.dpst.dpst_input == 0)
return len;
scnprintf(format, sizeof(format), "%%%zus %%%zus %%%zus",
sizeof(control), sizeof(operation), sizeof(val));
no_of_tokens = sscanf(i915_debugfs_vars.dpst.dpst_vars,
format, control, operation, val);
if (no_of_tokens < 3)
return len;
len = sizeof(i915_debugfs_vars.dpst.dpst_vars);
if (strcmp(operation, STATUS_TOKEN) == 0) {
ret = i915_dpst_status(dev, buf, &len);
if (ret)
return ret;
} else if (strcmp(operation, ENABLE_TOKEN) == 0) {
/* 1 => Enable DPST only for video playback scenarios
* when source content is 18 bpp, for higher bpp source
* content DPST is enabled always */
ret = i915_dpst_enable_disable(dev, 1);
if (ret)
return ret;
dev_priv->dpst.feature_control = true;
i915_dpst_status(dev, buf, &len);
} else if (strcmp(operation, DISABLE_TOKEN) == 0) {
/* 0 => Disable DPST */
dev_priv->dpst.feature_control = false;
ret = i915_dpst_enable_disable(dev, 0);
if (ret)
return ret;
i915_dpst_status(dev, buf, &len);
} else if (strcmp(operation, DPST_DUMP_REG_TOKEN) == 0) {
i915_dpst_dump_reg(dev, buf, &len);
} else if (strcmp(operation, DPST_GET_BIN_DATA_TOKEN) == 0) {
i915_dpst_get_bin_data(dev, buf, &len);
} else if (strcmp(operation, DPST_GET_LUMA_DATA_TOKEN) == 0) {
i915_dpst_get_luma_data(dev, buf, &len);
} else if (strcmp(operation, DPST_IRQ_COUNT_TOKEN) == 0) {
i915_dpst_irq_count(dev, buf, &len);
} else if (strcmp(operation, DPST_FACTOR_TOKEN) == 0) {
len = scnprintf(buf, sizeof(buf),
"DPST Backlight Factor: %d\n",
(dev_priv->dpst.blc_adjustment / 100));
} else if (strcmp(operation, DPST_LEVEL_TOKEN) == 0) {
dpst_set_level = I915_READ(BLC_PWM_CTL) & 0xffff;
len = scnprintf(buf, sizeof(buf),
"User Applied Backlight Level: 0x%x\n",
(dev_priv->backlight.level));
if (len < 0)
return len;
if (dev_priv->is_mipi) {
#ifdef CONFIG_CRYSTAL_COVE
u32 max = intel_panel_get_max_backlight(dev);
u32 val = 0;
if (BYT_CR_CONFIG) {
val = lpio_bl_read(0, LPIO_PWM_CTRL);
val = (0xff - (val & 0xff)) * max/0xff;
len += scnprintf(&buf[len], (sizeof(buf) - len),
"DPST Applied Backlight Level: 0x%x\n", val);
} else
len += scnprintf(&buf[len], (sizeof(buf) - len),
"DPST Applied Backlight Level: 0x%x\n",
(intel_mid_pmic_readb(0x4E)));
#else
len += scnprintf(&buf[len], (sizeof(buf) - len),
"DPST Applied Backlight not supported\n");
#endif
} else {
len += scnprintf(&buf[len], (sizeof(buf) - len),
"DPST Applied Backlight Level: 0x%x\n",
dpst_set_level);
}
} else
len = scnprintf(buf, sizeof(buf), "NOTSUPPORTED\n");
i915_debugfs_vars.dpst.dpst_input = 0;
simple_read_from_buffer(ubuf, max, ppos, buf, len);
return len;
}
static ssize_t
i915_write_dpst_api(struct file *filp,
const char __user *ubuf,
size_t cnt,
loff_t *ppos)
{
struct drm_device *dev = filp->private_data;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
/* Reset the string */
memset(i915_debugfs_vars.dpst.dpst_vars, 0, MAX_BUFFER_STR_LEN);
if (cnt > 0) {
if (cnt > sizeof(i915_debugfs_vars.dpst.dpst_vars) - 1)
return -EINVAL;
if (copy_from_user(i915_debugfs_vars.dpst.dpst_vars,
ubuf, cnt))
return -EFAULT;
i915_debugfs_vars.dpst.dpst_vars[cnt] = 0;
/* Enable read */
i915_debugfs_vars.dpst.dpst_input = 1;
}
return cnt;
}
static const struct file_operations i915_dpst_fops = {
.owner = THIS_MODULE,
.open = simple_open,
.read = i915_read_dpst_api,
.write = i915_write_dpst_api,
.llseek = default_llseek,
};
/* Helper function to set min freq turbo based on input */
static int
i915_set_min_freq(struct drm_device *dev, int val)
{
int ret;
u32 hw_max, hw_min;
drm_i915_private_t *dev_priv = dev->dev_private;
DRM_DEBUG_DRIVER("Manually setting min freq to %d\n", val);
ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
if (ret)
return ret;
hw_max = dev_priv->rps.hw_max;
hw_min = dev_priv->rps.hw_min;
if (val < hw_min || val > hw_max || val > dev_priv->rps.max_delay) {
mutex_unlock(&dev_priv->rps.hw_lock);
return -EINVAL;
}
if (IS_VALLEYVIEW(dev))
dev_priv->rps.min_delay = val;
else
dev_priv->rps.min_delay = val / 50;
/*
* Turbo will still be enabled, but won't go below the set value.
*/
if (dev_priv->rps.cur_delay < val) {
if (IS_VALLEYVIEW(dev)) {
valleyview_set_rps(dev, val);
/* If rps frequency is changed above we need to take
* care of bringing it down to rpe through rps timer*/
mod_delayed_work(dev_priv->rpswq,
&dev_priv->rps.vlv_work,
msecs_to_jiffies(100));
} else
gen6_set_rps(dev, val / 50);
}
mutex_unlock(&dev_priv->rps.hw_lock);
return 0;
}
/* Helper function to enable and disable turbo based on input */
static int
i915_rps_enable_disable(struct drm_device *dev, long unsigned int val)
{
int ret;
drm_i915_private_t *dev_priv = dev->dev_private;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
if (ret)
return ret;
/* 1=> Enable Turbo, else disable. */
/* Vlv specific function are not added Yet.*/
if (val == 1)
vlv_turbo_initialize(dev);
else
vlv_turbo_disable(dev);
mutex_unlock(&dev_priv->rps.hw_lock);
return 0;
}
static ssize_t
i915_rps_init_read(struct file *filp, char __user *ubuf, size_t max,
loff_t *ppos)
{
struct drm_device *dev = filp->private_data;
drm_i915_private_t *dev_priv = dev->dev_private;
char buf[] = "rps init read is not defined";
int len;
u32 rval;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
rval = I915_READ(GEN6_RP_CONTROL);
len = scnprintf(buf, sizeof(buf),
"Turbo Enabled: %s\n", yesno(rval & GEN6_RP_ENABLE));
return simple_read_from_buffer(ubuf, max, ppos, buf, len);
}
static ssize_t
i915_rps_init_write(struct file *filp, const char __user *ubuf, size_t cnt,
loff_t *ppos)
{
struct drm_device *dev = filp->private_data;
char buf[20];
long unsigned int val = 1;
int ret;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
if (cnt > 0) {
if (cnt > sizeof(buf) - 1)
return -EINVAL;
if (copy_from_user(buf, ubuf, cnt))
return -EFAULT;
buf[cnt] = 0;
ret = kstrtoul(buf, 0, (unsigned long *)&val);
if (ret)
return -EINVAL;
}
ret = i915_rps_enable_disable(dev, val);
if (ret)
return ret;
return cnt;
}
static const struct file_operations i915_rps_init_fops = {
.owner = THIS_MODULE,
.open = simple_open,
.read = i915_rps_init_read,
.write = i915_rps_init_write,
.llseek = default_llseek,
};
/* Helper function for the rpm related operations */
static int
i915_rpm_enabled(struct drm_device *drm_dev, char *buf, int *len)
{
struct device *dev = drm_dev->dev;
if (!(IS_VALLEYVIEW(drm_dev)))
return -ENODEV;
*len = scnprintf(buf, MAX_BUFFER_STR_LEN, "RPM Enabled: %s\n",
yesno(i915_pm_runtime_enabled(dev)));
return 0;
}
static int
i915_rpm_control(struct drm_device *drm_dev, long unsigned int val)
{
struct device *dev = drm_dev->dev;
if (!(IS_VALLEYVIEW(drm_dev)))
return -ENODEV;
/* 1=> Enable RPM(D0IX), else disable. */
if (val == 1)
i915_rpm_enable(dev);
else
i915_rpm_disable(drm_dev);
return 0;
}
static int
i915_display_pm(struct drm_device *drm_dev, long unsigned int val)
{
if (!(IS_VALLEYVIEW(drm_dev)))
return -ENODEV;
/* 1=> Suspend RPM(D0IX), else Resume. */
if (val)
display_runtime_suspend(drm_dev);
else
display_runtime_resume(drm_dev);
return 0;
}
static ssize_t
i915_read_rpm_api(struct file *filp,
char __user *ubuf,
size_t max,
loff_t *ppos)
{
struct drm_device *drm_dev = filp->private_data;
char buf[200], control[10], operation[20], val[20], format[20];
int len = 0, ret, no_of_tokens;
if (!(IS_VALLEYVIEW(drm_dev)))
return -ENODEV;
if (i915_debugfs_vars.rpm.rpm_input == 0)
return len;
scnprintf(format, sizeof(format), "%%%zus %%%zus %%%zus",
sizeof(control), sizeof(operation), sizeof(val));
no_of_tokens = sscanf(i915_debugfs_vars.rpm.rpm_vars,
format, control, operation, val);
if (no_of_tokens < 3)
return len;
if (strcmp(operation, STATUS_TOKEN) == 0) {
ret = i915_rpm_enabled(drm_dev, buf, &len);
if (ret)
return ret;
} else if (strcmp(operation, ENABLE_TOKEN) == 0) {
/*
* 1=> Enable RPM, else disable.
*/
ret = i915_rpm_control(drm_dev, 1);
if (ret)
return ret;
i915_rpm_enabled(drm_dev, buf, &len);
} else if (strcmp(operation, DISABLE_TOKEN) == 0) {
/*
* 1=> Enable RPM, else disable.
*/
ret = i915_rpm_control(drm_dev, 0);
if (ret)
return ret;
i915_rpm_enabled(drm_dev, buf, &len);
} else if (strcmp(operation, RPM_DISPLAY_RUNTIME_SUSPEND_TOKEN) == 0) {
/*
* 1=> Suspend RPM(D0IX), else Resume.
*/
ret = i915_display_pm(drm_dev, 1);
if (ret)
return ret;
} else if (strcmp(operation, RPM_DISPLAY_RUNTIME_RESUME_TOKEN) == 0) {
/*
* 1=> Suspend RPM(D0IX), else Resume.
*/
ret = i915_display_pm(drm_dev, 0);
if (ret)
return ret;
} else
len = scnprintf(buf, sizeof(buf), "NOTSUPPORTED\n");
i915_debugfs_vars.rpm.rpm_input = 0;
simple_read_from_buffer(ubuf, max, ppos, buf, len);
return len;
}
static ssize_t
i915_write_rpm_api(struct file *filp,
const char __user *ubuf,
size_t cnt,
loff_t *ppos)
{
struct drm_device *dev = filp->private_data;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
/* Reset the string */
memset(i915_debugfs_vars.rpm.rpm_vars, 0, MAX_BUFFER_STR_LEN);
if (cnt > 0) {
if (cnt > sizeof(i915_debugfs_vars.rpm.rpm_vars) - 1)
return -EINVAL;
if (copy_from_user(i915_debugfs_vars.rpm.rpm_vars, ubuf, cnt))
return -EFAULT;
i915_debugfs_vars.rpm.rpm_vars[cnt] = 0;
/* Enable read */
i915_debugfs_vars.rpm.rpm_input = 1;
}
return cnt;
}
static const struct file_operations i915_rpm_fops = {
.owner = THIS_MODULE,
.open = simple_open,
.read = i915_read_rpm_api,
.write = i915_write_rpm_api,
.llseek = default_llseek,
};
static ssize_t
i915_read_turbo_api(struct file *filp,
char __user *ubuf,
size_t max,
loff_t *ppos)
{
struct drm_device *dev = filp->private_data;
drm_i915_private_t *dev_priv = dev->dev_private;
char buf[200], control[10], operation[20], val[20], format[20];
int len = 0, ret, no_of_tokens;
unsigned long pval = 0;
u32 reg_val = 0;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
if (i915_debugfs_vars.turbo.turbo_input == 0)
return len;
snprintf(format, sizeof(format), "%%%zus %%%zus %%%zus",
sizeof(control), sizeof(operation), sizeof(val));
no_of_tokens = sscanf(i915_debugfs_vars.turbo.turbo_vars,
format, control, operation, val);
if (no_of_tokens < 3)
return len;
len = sizeof(i915_debugfs_vars.turbo.turbo_vars);
if (strcmp(operation, DETAILS_TOKEN) == 0) {
ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
if (ret)
return ret;
reg_val = I915_READ(GEN6_RP_CONTROL);
len = scnprintf(buf, sizeof(buf),
"Turbo Enabled: %s\n",
yesno(reg_val & GEN6_RP_ENABLE));
if (len < 0)
return len;
len += scnprintf(&buf[len], (sizeof(buf) - len),
"Max Gpu Freq _max_delay_: %d\n",
dev_priv->rps.max_delay);
len += scnprintf(&buf[len], (sizeof(buf) - len),
"Min Gpu Freq _min_delay_: %d\n",
dev_priv->rps.min_delay);
reg_val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
len += scnprintf(&buf[len], (sizeof(buf) - len),
"Cur Gpu Freq _cur_delay_: %d\n", reg_val >> 8);
len += scnprintf(&buf[len], (sizeof(buf) - len),
"Up Threshold: %d\n", atomic_read(
&dev_priv->turbodebug.up_threshold));
len += scnprintf(&buf[len], (sizeof(buf) - len),
"Down Threshold: %d\n", atomic_read(
&dev_priv->turbodebug.down_threshold));
len += scnprintf(&buf[len], (sizeof(buf) - len),
"RP_UP: %d\nRP_DOWN:%d\n",
dev_priv->rps.rp_up_masked,
dev_priv->rps.rp_down_masked);
mutex_unlock(&dev_priv->rps.hw_lock);
} else if (strcmp(operation, ENABLE_TOKEN) == 0) {
/* 1=> Enable Turbo, else disable. */
ret = i915_rps_enable_disable(dev, 1);
if (ret)
return ret;
len = scnprintf(buf, sizeof(buf),
"Turbo Enabled: Yes\n");
} else if (strcmp(operation, DISABLE_TOKEN) == 0) {
/* 1=> Enable Turbo, else disable. */
ret = i915_rps_enable_disable(dev, 0);
if (ret)
return ret;
len = scnprintf(buf, sizeof(buf),
"Turbo Enabled: No\n");
} else if (strcmp(operation, RP_MAXFREQ_TOKEN) == 0) {
ret = kstrtoul(val, 0, &pval);
if (ret)
return -EINVAL;
ret = i915_set_max_freq(dev, pval);
if (ret)
return ret;
len = scnprintf(buf, sizeof(buf),
"OPERATION: SUCCESSFUL\n");
} else if (strcmp(operation, RP_MINFREQ_TOKEN) == 0) {
ret = kstrtoul(val, 0, &pval);
if (ret)
return -EINVAL;
ret = i915_set_min_freq(dev, pval);
if (ret)
return ret;
len = scnprintf(buf, sizeof(buf),
"OPERATION: SUCCESSFUL\n");
} else
len = scnprintf(buf, sizeof(buf),
"NOTSUPPORTED\n");
i915_debugfs_vars.turbo.turbo_input = 0;
simple_read_from_buffer(ubuf, max, ppos, buf, len);
return len;
}
static ssize_t
i915_write_turbo_api(struct file *filp,
const char __user *ubuf,
size_t cnt,
loff_t *ppos)
{
struct drm_device *dev = filp->private_data;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
/* Reset the string */
memset(i915_debugfs_vars.turbo.turbo_vars, 0, MAX_BUFFER_STR_LEN);
if (cnt > 0) {
if (cnt > sizeof(i915_debugfs_vars.turbo.turbo_vars) - 1)
return -EINVAL;
if (copy_from_user(i915_debugfs_vars.turbo.turbo_vars,
ubuf, cnt))
return -EFAULT;
i915_debugfs_vars.turbo.turbo_vars[cnt] = 0;
/* Enable read */
i915_debugfs_vars.turbo.turbo_input = 1;
}
return cnt;
}
static const struct file_operations i915_turbo_fops = {
.owner = THIS_MODULE,
.open = simple_open,
.read = i915_read_turbo_api,
.write = i915_write_turbo_api,
.llseek = default_llseek,
};
/* Debugfs rc6 apis implementation */
static inline bool is_rc6_enabled(struct drm_device *dev)
{
drm_i915_private_t *dev_priv = dev->dev_private;
return I915_READ(VLV_RENDER_C_STATE_CONTROL_1_REG)
& (VLV_EVAL_METHOD_ENABLE_BIT
| VLV_TIMEOUT_METHOD_ENABLE_BIT);
}
static int
rc6_status(struct drm_device *dev, char *buf, int *len)
{
*len = scnprintf(buf, MAX_BUFFER_STR_LEN,
"RC6 ENABLED: %s\n",
yesno(is_rc6_enabled(dev)));
return 0;
}
static int
rc6_enable_disable(struct drm_device *dev, long unsigned int val)
{
int ret;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
if (is_rc6_enabled(dev)) {
if (val > 0)
return 0;
} else if (val == 0)
return 0;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
vlv_rs_setstate(dev, (val > 0 ? true : false));
mutex_unlock(&dev->struct_mutex);
DRM_DEBUG_DRIVER("RC6 feature status is %ld\n", val);
return 0;
}
static ssize_t
i915_read_rc6_api(struct file *filp,
char __user *ubuf,
size_t max,
loff_t *ppos)
{
struct drm_device *dev = filp->private_data;
drm_i915_private_t *dev_priv = dev->dev_private;
char buf[200], control[10], operation[20], format[20];
int len = 0, ret, no_of_tokens;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
if (i915_debugfs_vars.rc6.rc6_input == 0)
return len;
snprintf(format, sizeof(format), "%%%zus %%%zus",
sizeof(control), sizeof(operation));
no_of_tokens = sscanf(i915_debugfs_vars.rc6.rc6_vars,
format, control, operation);
if (no_of_tokens < 2)
return len;
len = sizeof(i915_debugfs_vars.rc6.rc6_vars);
if (strcmp(operation, STATUS_TOKEN) == 0) {
rc6_status(dev, buf, &len);
} else if (strcmp(operation, ENABLE_TOKEN) == 0) {
/*
* 1=> Enable RC6, else disable.
*/
ret = rc6_enable_disable(dev, 1);
if (ret)
return ret;
rc6_status(dev, buf, &len);
} else if (strcmp(operation, DISABLE_TOKEN) == 0) {
/*
* 1=> Enable RC6, else disable.
*/
ret = rc6_enable_disable(dev, 0);
if (ret)
return ret;
rc6_status(dev, buf, &len);
} else if (strcmp(operation, RC6_POWER_TOKEN) == 0) {
len = scnprintf(buf, sizeof(buf),
"RENDER WELL: %s & MEDIA WELL: %s\n",
(I915_READ(VLV_POWER_WELL_STATUS_REG) &
VLV_RENDER_WELL_STATUS_MASK)
? "UP" : "DOWN",
(I915_READ(VLV_POWER_WELL_STATUS_REG) &
VLV_MEDIA_WELL_STATUS_MASK)
? "UP" : "DOWN");
} else if (strcmp(operation, READ_COUNTER_0_TOKEN) == 0) {
len = scnprintf(buf, sizeof(buf),
"RENDER WELL C0 COUNTER: 0x%x & ",
(unsigned int) I915_READ(GEN6_GT_GFX_RC6));
len += scnprintf(&buf[len], (sizeof(buf) - len),
"MEDIA WELL C1 COUNTER: 0x%x\n",
(unsigned int) I915_READ(GEN6_GT_GFX_RC6p));
} else if (strcmp(operation, READ_COUNTER_1_TOKEN) == 0) {
len = scnprintf(buf, sizeof(buf),
"RENDER WELL C1 COUNTER: 0x%x & ",
(unsigned int)I915_READ(GEN6_GT_GFX_RC6pp));
len += scnprintf(&buf[len], (sizeof(buf) - len),
"MEDIA WELL C1 COUNTER: 0x%x\n",
(unsigned int)
I915_READ(VLV_MEDIA_C1_COUNT_REG));
} else if (strcmp(operation, READ_COUNTER_6_TOKEN) == 0) {
len = scnprintf(buf, sizeof(buf),
"RENDER WELL C6 COUNTER: 0x%x & ",
(unsigned int)
I915_READ(VLV_RENDER_C0_COUNT_REG));
len += scnprintf(&buf[len], (sizeof(buf) - len),
"MEDIA WELL C6 COUNTER: 0x%x\n",
(unsigned int)
I915_READ(VLV_MEDIA_C0_COUNT_REG));
} else if (strcmp(operation, MULTITHREAD_TOKEN) == 0) {
len = scnprintf(buf, sizeof(buf), "NOTSUPPORTED\n");
} else if (strcmp(operation, RC6_SINGLETHREAD_TOKEN) == 0) {
len = scnprintf(buf, sizeof(buf),
"SINGLE THREAD ENABLED: Yes\n");
} else
len = scnprintf(buf, sizeof(buf), "NOTSUPPORTED\n");
i915_debugfs_vars.rc6.rc6_input = 0;
simple_read_from_buffer(ubuf, max, ppos, buf, len);
return len;
}
static ssize_t
i915_write_rc6_api(struct file *filp,
const char __user *ubuf,
size_t cnt,
loff_t *ppos)
{
struct drm_device *dev = filp->private_data;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
/* reset the string */
memset(i915_debugfs_vars.rc6.rc6_vars, 0, MAX_BUFFER_STR_LEN);
if (cnt > 0) {
if (cnt > sizeof(i915_debugfs_vars.rc6.rc6_vars) - 1)
return -EINVAL;
if (copy_from_user(i915_debugfs_vars.rc6.rc6_vars, ubuf, cnt))
return -EFAULT;
i915_debugfs_vars.rc6.rc6_vars[cnt] = 0;
/* Enable read */
i915_debugfs_vars.rc6.rc6_input = 1;
}
return cnt;
}
static const struct file_operations i915_rc6_fops = {
.owner = THIS_MODULE,
.open = simple_open,
.read = i915_read_rc6_api,
.write = i915_write_rc6_api,
.llseek = default_llseek,
};
static ssize_t
i915_read_rc6_status(struct file *filp,
char __user *ubuf,
size_t max,
loff_t *ppos)
{
struct drm_device *dev = filp->private_data;
drm_i915_private_t *dev_priv = dev->dev_private;
char buf[80];
int len = 0;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
len = scnprintf(buf, sizeof(buf),
"RC6 is %s\n",
(is_rc6_enabled(dev)) ?
"enabled" : "disabled");
len += scnprintf(&buf[len], (sizeof(buf) - len),
"Render well is %s & Media well is %s\n",
(I915_READ(VLV_POWER_WELL_STATUS_REG) &
VLV_RENDER_WELL_STATUS_MASK) ? "UP" : "DOWN",
(I915_READ(VLV_POWER_WELL_STATUS_REG) &
VLV_MEDIA_WELL_STATUS_MASK) ? "UP" : "DOWN");
len += scnprintf(&buf[len], (sizeof(buf) - len),
"Wait fifo count: %d\n",
atomic_read(&dev_priv->wfifo_count));
return simple_read_from_buffer(ubuf, max, ppos, buf, len);
}
static ssize_t
i915_write_rc6_status(struct file *filp,
const char __user *ubuf,
size_t cnt,
loff_t *ppos)
{
struct drm_device *dev = filp->private_data;
char buf[20];
int ret = 0;
long unsigned int val = 0;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
if (cnt > 0) {
if (cnt > sizeof(buf) - 1)
return -EINVAL;
if (copy_from_user(buf, ubuf, cnt))
return -EFAULT;
buf[cnt] = 0;
ret = kstrtoul(buf, 0, (unsigned long *)&val);
if (ret)
return -EINVAL;
}
/*
* 1=> Enable RC6, else disable.
*/
ret = rc6_enable_disable(dev, val);
if (ret)
return ret;
return cnt;
}
static const struct file_operations i915_rc6_status_fops = {
.owner = THIS_MODULE,
.open = simple_open,
.read = i915_read_rc6_status,
.write = i915_write_rc6_status,
.llseek = default_llseek,
};
static ssize_t
i915_mmio_read_api(struct file *filp,
char __user *ubuf,
size_t max,
loff_t *ppos)
{
struct drm_device *dev = filp->private_data;
drm_i915_private_t *dev_priv = dev->dev_private;
char buf[200], offset[20], operation[10], format[20], val[20];
int len = 0, ret;
int no_of_tokens;
long unsigned int mmio_offset, mmio_to_write;
if (INTEL_INFO(dev)->gen < 6)
return -ENODEV;
if (i915_debugfs_vars.mmio.mmio_input == 0)
return len;
snprintf(format, sizeof(format), "%%%zus %%%zus %%%zus",
sizeof(operation), sizeof(offset), sizeof(val));
no_of_tokens = sscanf(i915_debugfs_vars.mmio.mmio_vars,
format, operation, offset, val);
if (no_of_tokens < 3)
return len;
len = sizeof(i915_debugfs_vars.mmio.mmio_vars);
if (strcmp(operation, READ_TOKEN) == 0) {
ret = kstrtoul(offset, 16, &mmio_offset);
if (ret)
return -EINVAL;
len = scnprintf(buf, sizeof(buf),
"0x%x: 0x%x\n",
(unsigned int) mmio_offset,
(unsigned int) I915_READ(mmio_offset));
} else if (strcmp(operation, WRITE_TOKEN) == 0) {
ret = kstrtoul(offset, 16, &mmio_offset);
if (ret)
return -EINVAL;
ret = kstrtoul(val, 16, &mmio_to_write);
if (ret)
return -EINVAL;
I915_WRITE(mmio_offset, mmio_to_write);
len = scnprintf(buf, sizeof(buf),
"0x%x: 0x%x\n",
(unsigned int) mmio_offset,
(unsigned int) I915_READ(mmio_offset));
} else
len = scnprintf(buf, sizeof(buf), "Operation Not Supported\n");
i915_debugfs_vars.mmio.mmio_input = 0;
simple_read_from_buffer(ubuf, max, ppos, buf, len);
return len;
}
static ssize_t
i915_mmio_write_api(struct file *filp,
const char __user *ubuf,
size_t cnt,
loff_t *ppos)
{
struct drm_device *dev = filp->private_data;
if (INTEL_INFO(dev)->gen < 6)
return -ENODEV;
/* reset the string */
memset(i915_debugfs_vars.mmio.mmio_vars, 0, MAX_BUFFER_STR_LEN);
if (cnt > 0) {
if (cnt > sizeof(i915_debugfs_vars.mmio.mmio_vars) - 1)
return -EINVAL;
if (copy_from_user(i915_debugfs_vars.mmio.mmio_vars, ubuf, cnt))
return -EFAULT;
i915_debugfs_vars.mmio.mmio_vars[cnt] = 0;
/* Enable Read */
i915_debugfs_vars.mmio.mmio_input = 1;
}
return cnt;
}
static const struct file_operations i915_mmio_fops = {
.owner = THIS_MODULE,
.open = simple_open,
.read = i915_mmio_read_api,
.write = i915_mmio_write_api,
.llseek = default_llseek,
};
/* Debugfs iosf apis implementation */
static ssize_t
i915_iosf_read_api(struct file *filp,
char __user *ubuf,
size_t max,
loff_t *ppos)
{
struct drm_device *dev = filp->private_data;
drm_i915_private_t *dev_priv = dev->dev_private;
char buf[200], operation[10], port[10], offset[20], format[20];
int len = 0, ret, noOfTokens;
unsigned long iosf_reg;
u32 iosf_val;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
if (i915_debugfs_vars.iosf.iosf_input == 0)
return len;
snprintf(format, sizeof(format), "%%%zus %%%zus %%%zus",
sizeof(operation), sizeof(port), sizeof(offset));
noOfTokens = sscanf(i915_debugfs_vars.iosf.iosf_vars,
format, operation, port, offset);
if (noOfTokens < 3)
return len;
len = sizeof(i915_debugfs_vars.iosf.iosf_vars);
ret = kstrtoul(offset, 16, &iosf_reg);
if (ret)
return -EINVAL;
if (strcmp(operation, READ_TOKEN) == 0) {
if (strcmp(port, IOSF_PUNIT_TOKEN) == 0) {
iosf_val = vlv_punit_read(dev_priv, iosf_reg);
len = scnprintf(buf, sizeof(buf),
"0x%x: 0x%x\n", (unsigned int) iosf_reg,
(unsigned int) iosf_val);
} else if (strcmp(port, IOSF_FUSE_TOKEN) == 0) {
iosf_val = vlv_nc_read(dev_priv, iosf_reg);
len = scnprintf(buf, sizeof(buf),
"0x%x: 0x%x\n", (unsigned int) iosf_reg,
(unsigned int) iosf_val);
} else if (strcmp(port, IOSF_CCU_TOKEN) == 0) {
iosf_val = vlv_ccu_read(dev_priv, iosf_reg);
len = scnprintf(buf, sizeof(buf),
"0x%x: 0x%x\n", (unsigned int) iosf_reg,
(unsigned int) iosf_val);
}
} else {
len = scnprintf(buf, sizeof(buf),
"IOSF WRITE not supported\n");
}
i915_debugfs_vars.iosf.iosf_input = 0;
simple_read_from_buffer(ubuf, max, ppos, buf, len);
return len;
}
static ssize_t
i915_iosf_write_api(struct file *filp,
const char __user *ubuf,
size_t cnt,
loff_t *ppos)
{
struct drm_device *dev = filp->private_data;
if (!(IS_VALLEYVIEW(dev)))
return -ENODEV;
/* reset the string */
memset(i915_debugfs_vars.iosf.iosf_vars, 0, MAX_BUFFER_STR_LEN);
if (cnt > 0) {
if (cnt > sizeof(i915_debugfs_vars.iosf.iosf_vars) - 1)
return -EINVAL;
if (copy_from_user(i915_debugfs_vars.iosf.iosf_vars, ubuf, cnt))
return -EFAULT;
i915_debugfs_vars.iosf.iosf_vars[cnt] = 0;
/* Enable read */
i915_debugfs_vars.iosf.iosf_input = 1;
}
return cnt;
}
static const struct file_operations i915_iosf_fops = {
.owner = THIS_MODULE,
.open = simple_open,
.read = i915_iosf_read_api,
.write = i915_iosf_write_api,
.llseek = default_llseek,
};
static int
i915_cache_sharing_get(void *data, u64 *val)
{
struct drm_device *dev = data;
drm_i915_private_t *dev_priv = dev->dev_private;
u32 snpcr;
int ret;
if (!(IS_GEN6(dev) || IS_GEN7(dev)))
return -ENODEV;
ret = mutex_lock_interruptible(&dev->struct_mutex);
if (ret)
return ret;
snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
mutex_unlock(&dev_priv->dev->struct_mutex);
*val = (snpcr & GEN6_MBC_SNPCR_MASK) >> GEN6_MBC_SNPCR_SHIFT;
return 0;
}
static int
i915_cache_sharing_set(void *data, u64 val)
{
struct drm_device *dev = data;
struct drm_i915_private *dev_priv = dev->dev_private;
u32 snpcr;
if (!(IS_GEN6(dev) || IS_GEN7(dev)))
return -ENODEV;
if (val > 3)
return -EINVAL;
DRM_DEBUG_DRIVER("Manually setting uncore sharing to %llu\n", val);
/* Update the cache sharing policy here as well */
snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
snpcr &= ~GEN6_MBC_SNPCR_MASK;
snpcr |= (val << GEN6_MBC_SNPCR_SHIFT);
I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
return 0;
}
DEFINE_SIMPLE_ATTRIBUTE(i915_cache_sharing_fops,
i915_cache_sharing_get, i915_cache_sharing_set,
"%llu\n");
/* As the drm_debugfs_init() routines are called before dev->dev_private is
* allocated we need to hook into the minor for release. */
static int
drm_add_fake_info_node(struct drm_minor *minor,
struct dentry *ent,
const void *key)
{
struct drm_info_node *node;
node = kmalloc(sizeof(struct drm_info_node), GFP_KERNEL);
if (node == NULL) {
debugfs_remove(ent);
return -ENOMEM;
}
node->minor = minor;
node->dent = ent;
node->info_ent = (void *) key;
mutex_lock(&minor->debugfs_lock);
list_add(&node->list, &minor->debugfs_list);
mutex_unlock(&minor->debugfs_lock);
return 0;
}
#define TIMESTAMP_BUFFER_LEN 100U
ssize_t i915_timestamp_read(struct file *filp,
char __user *ubuf,
size_t max,
loff_t *ppos)
{
struct drm_device *dev = filp->private_data;
struct drm_i915_private *dev_priv = dev->dev_private;
int len = 0;
char buf[TIMESTAMP_BUFFER_LEN] = {0,};
unsigned long flags;
u32 gpu_ts_hi, gpu_ts_lo, gpu_ts_hi_new;
u64 gpu_ts;
unsigned int cpu;
u32 sec, nsec;
u64 ftrace_ts;
local_irq_save(flags);
cpu = smp_processor_id();
gpu_ts_hi = I915_READ(RING_TIMESTAMP_HI(RENDER_RING_BASE));
gpu_ts_lo = I915_READ(RING_TIMESTAMP_LO(RENDER_RING_BASE));
gpu_ts_hi_new = I915_READ(RING_TIMESTAMP_HI(RENDER_RING_BASE));
if (gpu_ts_hi_new != gpu_ts_hi) {
gpu_ts_lo = I915_READ(RING_TIMESTAMP_LO(RENDER_RING_BASE));
gpu_ts_hi = gpu_ts_hi_new;
}
gpu_ts = (u64)gpu_ts_hi << 32 | gpu_ts_lo;
ftrace_ts = ftrace_now(cpu);
local_irq_restore(flags);
nsec = do_div(ftrace_ts, NSEC_PER_SEC);
sec = (u32) ftrace_ts;
len = snprintf(buf, TIMESTAMP_BUFFER_LEN,
"CPU%03u %u.%09u s\nGPU %llu ticks\n",
cpu, sec, nsec, gpu_ts);
return simple_read_from_buffer(ubuf, max, ppos,
(const void *) buf, sizeof(buf));
}
static const struct file_operations i915_timestamp_fops = {
.owner = THIS_MODULE,
.open = simple_open,
.read = i915_timestamp_read,
.write = NULL,
.llseek = default_llseek,
};
static int i915_forcewake_open(struct inode *inode, struct file *file)
{
struct drm_device *dev = inode->i_private;
struct drm_i915_private *dev_priv = dev->dev_private;
if (INTEL_INFO(dev)->gen < 6)
return 0;
gen6_gt_force_wake_get(dev_priv, FORCEWAKE_ALL);
return 0;
}
static int i915_forcewake_release(struct inode *inode, struct file *file)
{
struct drm_device *dev = inode->i_private;
struct drm_i915_private *dev_priv = dev->dev_private;
if (INTEL_INFO(dev)->gen < 6)
return 0;
gen6_gt_force_wake_put(dev_priv, FORCEWAKE_ALL);
return 0;
}
static const struct file_operations i915_forcewake_fops = {
.owner = THIS_MODULE,
.open = i915_forcewake_open,
.release = i915_forcewake_release,
};
static int i915_forcewake_create(struct dentry *root, struct drm_minor *minor)
{
struct drm_device *dev = minor->dev;
struct dentry *ent;
ent = debugfs_create_file("i915_forcewake_user",
S_IRUSR,
root, dev,
&i915_forcewake_fops);
if (IS_ERR(ent))
return PTR_ERR(ent);
return drm_add_fake_info_node(minor, ent, &i915_forcewake_fops);
}
static int i915_debugfs_create(struct dentry *root,
struct drm_minor *minor,
const char *name,
const struct file_operations *fops)
{
struct drm_device *dev = minor->dev;
struct dentry *ent;
ent = debugfs_create_file(name,
S_IRUGO | S_IWUSR,
root, dev,
fops);
if (IS_ERR(ent))
return PTR_ERR(ent);
return drm_add_fake_info_node(minor, ent, fops);
}
static struct drm_info_list i915_debugfs_list[] = {
{"i915_capabilities", i915_capabilities, 0},
{"i915_gem_objects", i915_gem_object_info, 0},
{"i915_gem_gtt", i915_gem_gtt_info, 0},
{"i915_gem_pinned", i915_gem_gtt_info, 0, (void *) PINNED_LIST},
{"i915_gem_active", i915_gem_object_list_info, 0, (void *) ACTIVE_LIST},
{"i915_gem_inactive", i915_gem_object_list_info, 0, (void *) INACTIVE_LIST},
{"i915_gem_stolen", i915_gem_stolen_list_info },
{"i915_gem_pageflip", i915_gem_pageflip_info, 0},
{"i915_gem_request", i915_gem_request_info, 0},
{"i915_gem_seqno", i915_gem_seqno_info, 0},
{"i915_gem_fence_regs", i915_gem_fence_regs_info, 0},
{"i915_gem_interrupt", i915_interrupt_info, 0},
{"i915_gem_hws", i915_hws_info, 0, (void *)RCS},
{"i915_gem_hws_blt", i915_hws_info, 0, (void *)BCS},
{"i915_gem_hws_bsd", i915_hws_info, 0, (void *)VCS},
{"i915_gem_hws_vebox", i915_hws_info, 0, (void *)VECS},
{"i915_rstdby_delays", i915_rstdby_delays, 0},
{"i915_cur_delayinfo", i915_cur_delayinfo, 0},
{"i915_delayfreq_table", i915_delayfreq_table, 0},
{"i915_inttoext_table", i915_inttoext_table, 0},
{"i915_drpc_info", i915_drpc_info, 0},
{"i915_emon_status", i915_emon_status, 0},
{"i915_ring_freq_table", i915_ring_freq_table, 0},
{"i915_gfxec", i915_gfxec, 0},
{"i915_fbc_status", i915_fbc_status, 0},
{"i915_ips_status", i915_ips_status, 0},
{"i915_sr_status", i915_sr_status, 0},
{"i915_opregion", i915_opregion, 0},
{"i915_gem_framebuffer", i915_gem_framebuffer_info, 0},
{"i915_context_status", i915_context_status, 0},
{"i915_gen6_forcewake_count", i915_gen6_forcewake_count_info, 0},
{"i915_swizzle_info", i915_swizzle_info, 0},
{"i915_ppgtt_info", i915_ppgtt_info, 0},
{"i915_dpio", i915_dpio_info, 0},
{"i915_llc", i915_llc, 0},
{"i915_edp_psr_status", i915_edp_psr_status, 0},
{"i915_energy_uJ", i915_energy_uJ, 0},
{"i915_pc8_status", i915_pc8_status, 0},
};
#define I915_DEBUGFS_ENTRIES ARRAY_SIZE(i915_debugfs_list)
static struct i915_debugfs_files {
const char *name;
const struct file_operations *fops;
} i915_debugfs_files[] = {
{"i915_wedged", &i915_wedged_fops},
{"i915_cache_sharing", &i915_cache_sharing_fops},
{"i915_ring_stop", &i915_ring_stop_fops},
{"i915_gem_drop_caches", &i915_drop_caches_fops},
{"i915_ring_hangcheck", &i915_ring_hangcheck_fops},
{"i915_error_state", &i915_error_state_fops},
{"i915_next_seqno", &i915_next_seqno_fops},
{"i915_mmio_api", &i915_mmio_fops},
{"i915_iosf_api", &i915_iosf_fops},
{"i915_rc6_api", &i915_rc6_fops},
{"i915_rc6_status", &i915_rc6_status_fops},
{"i915_turbo_api", &i915_turbo_fops},
{"i915_rps_init", &i915_rps_init_fops},
{"i915_dpst_api", &i915_dpst_fops},
{"i915_rpm_api", &i915_rpm_fops},
{"i915_timestamp", &i915_timestamp_fops},
};
int i915_debugfs_init(struct drm_minor *minor)
{
int ret, i;
ret = i915_forcewake_create(minor->debugfs_root, minor);
if (ret)
return ret;
for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) {
ret = i915_debugfs_create(minor->debugfs_root, minor,
i915_debugfs_files[i].name,
i915_debugfs_files[i].fops);
if (ret)
return ret;
}
ret = i915_debugfs_create(minor->debugfs_root, minor,
"cb_adjust",
&i915_cb_adjust_fops);
if (ret)
return ret;
ret = i915_debugfs_create(minor->debugfs_root, minor,
"hs_adjust",
&i915_hs_adjust_fops);
if (ret)
return ret;
ret = i915_debugfs_create(minor->debugfs_root, minor,
"csc_adjust",
&i915_csc_adjust_fops);
if (ret)
return ret;
ret = i915_debugfs_create(minor->debugfs_root, minor,
"csc_enable",
&i915_csc_enable_fops);
if (ret)
return ret;
ret = i915_debugfs_create(minor->debugfs_root, minor,
"gamma_adjust",
&i915_gamma_adjust_fops);
if (ret)
return ret;
ret = i915_debugfs_create(minor->debugfs_root, minor,
"gamma_enable",
&i915_gamma_enable_fops);
if (ret)
return ret;
return drm_debugfs_create_files(i915_debugfs_list,
I915_DEBUGFS_ENTRIES,
minor->debugfs_root, minor);
}
void i915_debugfs_cleanup(struct drm_minor *minor)
{
int i;
drm_debugfs_remove_files(i915_debugfs_list,
I915_DEBUGFS_ENTRIES, minor);
drm_debugfs_remove_files((struct drm_info_list *) &i915_forcewake_fops,
1, minor);
for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) {
struct drm_info_list *info_list =
(struct drm_info_list *) i915_debugfs_files[i].fops;
drm_debugfs_remove_files(info_list, 1, minor);
}
}
#endif /* CONFIG_DEBUG_FS */
|