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
|
// SPDX-License-Identifier: GPL-2.0-only
/*
* CXL EDAC memory feature driver.
*
* Copyright (c) 2024-2025 HiSilicon Limited.
*
* - Supports functions to configure EDAC features of the
* CXL memory devices.
* - Registers with the EDAC device subsystem driver to expose
* the features sysfs attributes to the user for configuring
* CXL memory RAS feature.
*/
#include <linux/cleanup.h>
#include <linux/edac.h>
#include <linux/limits.h>
#include <linux/unaligned.h>
#include <linux/xarray.h>
#include <cxl/features.h>
#include <cxl.h>
#include <cxlmem.h>
#include "core.h"
#include "trace.h"
#define CXL_NR_EDAC_DEV_FEATURES 7
#define CXL_SCRUB_NO_REGION -1
struct cxl_patrol_scrub_context {
u8 instance;
u16 get_feat_size;
u16 set_feat_size;
u8 get_version;
u8 set_version;
u16 effects;
struct cxl_memdev *cxlmd;
struct cxl_region *cxlr;
};
/*
* See CXL spec rev 3.2 @8.2.10.9.11.1 Table 8-222 Device Patrol Scrub Control
* Feature Readable Attributes.
*/
struct cxl_scrub_rd_attrbs {
u8 scrub_cycle_cap;
__le16 scrub_cycle_hours;
u8 scrub_flags;
} __packed;
/*
* See CXL spec rev 3.2 @8.2.10.9.11.1 Table 8-223 Device Patrol Scrub Control
* Feature Writable Attributes.
*/
struct cxl_scrub_wr_attrbs {
u8 scrub_cycle_hours;
u8 scrub_flags;
} __packed;
#define CXL_SCRUB_CONTROL_CHANGEABLE BIT(0)
#define CXL_SCRUB_CONTROL_REALTIME BIT(1)
#define CXL_SCRUB_CONTROL_CYCLE_MASK GENMASK(7, 0)
#define CXL_SCRUB_CONTROL_MIN_CYCLE_MASK GENMASK(15, 8)
#define CXL_SCRUB_CONTROL_ENABLE BIT(0)
#define CXL_GET_SCRUB_CYCLE_CHANGEABLE(cap) \
FIELD_GET(CXL_SCRUB_CONTROL_CHANGEABLE, cap)
#define CXL_GET_SCRUB_CYCLE(cycle) \
FIELD_GET(CXL_SCRUB_CONTROL_CYCLE_MASK, cycle)
#define CXL_GET_SCRUB_MIN_CYCLE(cycle) \
FIELD_GET(CXL_SCRUB_CONTROL_MIN_CYCLE_MASK, cycle)
#define CXL_GET_SCRUB_EN_STS(flags) FIELD_GET(CXL_SCRUB_CONTROL_ENABLE, flags)
#define CXL_SET_SCRUB_CYCLE(cycle) \
FIELD_PREP(CXL_SCRUB_CONTROL_CYCLE_MASK, cycle)
#define CXL_SET_SCRUB_EN(en) FIELD_PREP(CXL_SCRUB_CONTROL_ENABLE, en)
static int cxl_mem_scrub_get_attrbs(struct cxl_mailbox *cxl_mbox, u8 *cap,
u16 *cycle, u8 *flags, u8 *min_cycle)
{
size_t rd_data_size = sizeof(struct cxl_scrub_rd_attrbs);
size_t data_size;
struct cxl_scrub_rd_attrbs *rd_attrbs __free(kfree) =
kzalloc(rd_data_size, GFP_KERNEL);
if (!rd_attrbs)
return -ENOMEM;
data_size = cxl_get_feature(cxl_mbox, &CXL_FEAT_PATROL_SCRUB_UUID,
CXL_GET_FEAT_SEL_CURRENT_VALUE, rd_attrbs,
rd_data_size, 0, NULL);
if (!data_size)
return -EIO;
*cap = rd_attrbs->scrub_cycle_cap;
*cycle = le16_to_cpu(rd_attrbs->scrub_cycle_hours);
*flags = rd_attrbs->scrub_flags;
if (min_cycle)
*min_cycle = CXL_GET_SCRUB_MIN_CYCLE(*cycle);
return 0;
}
static int cxl_scrub_get_attrbs(struct cxl_patrol_scrub_context *cxl_ps_ctx,
u8 *cap, u16 *cycle, u8 *flags, u8 *min_cycle)
{
struct cxl_mailbox *cxl_mbox;
u8 min_scrub_cycle = U8_MAX;
struct cxl_region_params *p;
struct cxl_memdev *cxlmd;
struct cxl_region *cxlr;
int i, ret;
if (!cxl_ps_ctx->cxlr) {
cxl_mbox = &cxl_ps_ctx->cxlmd->cxlds->cxl_mbox;
return cxl_mem_scrub_get_attrbs(cxl_mbox, cap, cycle,
flags, min_cycle);
}
struct rw_semaphore *region_lock __free(rwsem_read_release) =
rwsem_read_intr_acquire(&cxl_region_rwsem);
if (!region_lock)
return -EINTR;
cxlr = cxl_ps_ctx->cxlr;
p = &cxlr->params;
for (i = 0; i < p->nr_targets; i++) {
struct cxl_endpoint_decoder *cxled = p->targets[i];
cxlmd = cxled_to_memdev(cxled);
cxl_mbox = &cxlmd->cxlds->cxl_mbox;
ret = cxl_mem_scrub_get_attrbs(cxl_mbox, cap, cycle, flags,
min_cycle);
if (ret)
return ret;
if (min_cycle)
min_scrub_cycle = min(*min_cycle, min_scrub_cycle);
}
if (min_cycle)
*min_cycle = min_scrub_cycle;
return 0;
}
static int cxl_scrub_set_attrbs_region(struct device *dev,
struct cxl_patrol_scrub_context *cxl_ps_ctx,
u8 cycle, u8 flags)
{
struct cxl_scrub_wr_attrbs wr_attrbs;
struct cxl_mailbox *cxl_mbox;
struct cxl_region_params *p;
struct cxl_memdev *cxlmd;
struct cxl_region *cxlr;
int ret, i;
struct rw_semaphore *region_lock __free(rwsem_read_release) =
rwsem_read_intr_acquire(&cxl_region_rwsem);
if (!region_lock)
return -EINTR;
cxlr = cxl_ps_ctx->cxlr;
p = &cxlr->params;
wr_attrbs.scrub_cycle_hours = cycle;
wr_attrbs.scrub_flags = flags;
for (i = 0; i < p->nr_targets; i++) {
struct cxl_endpoint_decoder *cxled = p->targets[i];
cxlmd = cxled_to_memdev(cxled);
cxl_mbox = &cxlmd->cxlds->cxl_mbox;
ret = cxl_set_feature(cxl_mbox, &CXL_FEAT_PATROL_SCRUB_UUID,
cxl_ps_ctx->set_version, &wr_attrbs,
sizeof(wr_attrbs),
CXL_SET_FEAT_FLAG_DATA_SAVED_ACROSS_RESET,
0, NULL);
if (ret)
return ret;
if (cycle != cxlmd->scrub_cycle) {
if (cxlmd->scrub_region_id != CXL_SCRUB_NO_REGION)
dev_info(dev,
"Device scrub rate(%d hours) set by region%d rate overwritten by region%d scrub rate(%d hours)\n",
cxlmd->scrub_cycle,
cxlmd->scrub_region_id, cxlr->id,
cycle);
cxlmd->scrub_cycle = cycle;
cxlmd->scrub_region_id = cxlr->id;
}
}
return 0;
}
static int cxl_scrub_set_attrbs_device(struct device *dev,
struct cxl_patrol_scrub_context *cxl_ps_ctx,
u8 cycle, u8 flags)
{
struct cxl_scrub_wr_attrbs wr_attrbs;
struct cxl_mailbox *cxl_mbox;
struct cxl_memdev *cxlmd;
int ret;
wr_attrbs.scrub_cycle_hours = cycle;
wr_attrbs.scrub_flags = flags;
cxlmd = cxl_ps_ctx->cxlmd;
cxl_mbox = &cxlmd->cxlds->cxl_mbox;
ret = cxl_set_feature(cxl_mbox, &CXL_FEAT_PATROL_SCRUB_UUID,
cxl_ps_ctx->set_version, &wr_attrbs,
sizeof(wr_attrbs),
CXL_SET_FEAT_FLAG_DATA_SAVED_ACROSS_RESET, 0,
NULL);
if (ret)
return ret;
if (cycle != cxlmd->scrub_cycle) {
if (cxlmd->scrub_region_id != CXL_SCRUB_NO_REGION)
dev_info(dev,
"Device scrub rate(%d hours) set by region%d rate overwritten with device local scrub rate(%d hours)\n",
cxlmd->scrub_cycle, cxlmd->scrub_region_id,
cycle);
cxlmd->scrub_cycle = cycle;
cxlmd->scrub_region_id = CXL_SCRUB_NO_REGION;
}
return 0;
}
static int cxl_scrub_set_attrbs(struct device *dev,
struct cxl_patrol_scrub_context *cxl_ps_ctx,
u8 cycle, u8 flags)
{
if (cxl_ps_ctx->cxlr)
return cxl_scrub_set_attrbs_region(dev, cxl_ps_ctx, cycle, flags);
return cxl_scrub_set_attrbs_device(dev, cxl_ps_ctx, cycle, flags);
}
static int cxl_patrol_scrub_get_enabled_bg(struct device *dev, void *drv_data,
bool *enabled)
{
struct cxl_patrol_scrub_context *ctx = drv_data;
u8 cap, flags;
u16 cycle;
int ret;
ret = cxl_scrub_get_attrbs(ctx, &cap, &cycle, &flags, NULL);
if (ret)
return ret;
*enabled = CXL_GET_SCRUB_EN_STS(flags);
return 0;
}
static int cxl_patrol_scrub_set_enabled_bg(struct device *dev, void *drv_data,
bool enable)
{
struct cxl_patrol_scrub_context *ctx = drv_data;
u8 cap, flags, wr_cycle;
u16 rd_cycle;
int ret;
if (!capable(CAP_SYS_RAWIO))
return -EPERM;
ret = cxl_scrub_get_attrbs(ctx, &cap, &rd_cycle, &flags, NULL);
if (ret)
return ret;
wr_cycle = CXL_GET_SCRUB_CYCLE(rd_cycle);
flags = CXL_SET_SCRUB_EN(enable);
return cxl_scrub_set_attrbs(dev, ctx, wr_cycle, flags);
}
static int cxl_patrol_scrub_get_min_scrub_cycle(struct device *dev,
void *drv_data, u32 *min)
{
struct cxl_patrol_scrub_context *ctx = drv_data;
u8 cap, flags, min_cycle;
u16 cycle;
int ret;
ret = cxl_scrub_get_attrbs(ctx, &cap, &cycle, &flags, &min_cycle);
if (ret)
return ret;
*min = min_cycle * 3600;
return 0;
}
static int cxl_patrol_scrub_get_max_scrub_cycle(struct device *dev,
void *drv_data, u32 *max)
{
*max = U8_MAX * 3600; /* Max set by register size */
return 0;
}
static int cxl_patrol_scrub_get_scrub_cycle(struct device *dev, void *drv_data,
u32 *scrub_cycle_secs)
{
struct cxl_patrol_scrub_context *ctx = drv_data;
u8 cap, flags;
u16 cycle;
int ret;
ret = cxl_scrub_get_attrbs(ctx, &cap, &cycle, &flags, NULL);
if (ret)
return ret;
*scrub_cycle_secs = CXL_GET_SCRUB_CYCLE(cycle) * 3600;
return 0;
}
static int cxl_patrol_scrub_set_scrub_cycle(struct device *dev, void *drv_data,
u32 scrub_cycle_secs)
{
struct cxl_patrol_scrub_context *ctx = drv_data;
u8 scrub_cycle_hours = scrub_cycle_secs / 3600;
u8 cap, wr_cycle, flags, min_cycle;
u16 rd_cycle;
int ret;
if (!capable(CAP_SYS_RAWIO))
return -EPERM;
ret = cxl_scrub_get_attrbs(ctx, &cap, &rd_cycle, &flags, &min_cycle);
if (ret)
return ret;
if (!CXL_GET_SCRUB_CYCLE_CHANGEABLE(cap))
return -EOPNOTSUPP;
if (scrub_cycle_hours < min_cycle) {
dev_dbg(dev, "Invalid CXL patrol scrub cycle(%d) to set\n",
scrub_cycle_hours);
dev_dbg(dev,
"Minimum supported CXL patrol scrub cycle in hour %d\n",
min_cycle);
return -EINVAL;
}
wr_cycle = CXL_SET_SCRUB_CYCLE(scrub_cycle_hours);
return cxl_scrub_set_attrbs(dev, ctx, wr_cycle, flags);
}
static const struct edac_scrub_ops cxl_ps_scrub_ops = {
.get_enabled_bg = cxl_patrol_scrub_get_enabled_bg,
.set_enabled_bg = cxl_patrol_scrub_set_enabled_bg,
.get_min_cycle = cxl_patrol_scrub_get_min_scrub_cycle,
.get_max_cycle = cxl_patrol_scrub_get_max_scrub_cycle,
.get_cycle_duration = cxl_patrol_scrub_get_scrub_cycle,
.set_cycle_duration = cxl_patrol_scrub_set_scrub_cycle,
};
static int cxl_memdev_scrub_init(struct cxl_memdev *cxlmd,
struct edac_dev_feature *ras_feature,
u8 scrub_inst)
{
struct cxl_patrol_scrub_context *cxl_ps_ctx;
struct cxl_feat_entry *feat_entry;
u8 cap, flags;
u16 cycle;
int rc;
feat_entry = cxl_feature_info(to_cxlfs(cxlmd->cxlds),
&CXL_FEAT_PATROL_SCRUB_UUID);
if (IS_ERR(feat_entry))
return -EOPNOTSUPP;
if (!(le32_to_cpu(feat_entry->flags) & CXL_FEATURE_F_CHANGEABLE))
return -EOPNOTSUPP;
cxl_ps_ctx = devm_kzalloc(&cxlmd->dev, sizeof(*cxl_ps_ctx), GFP_KERNEL);
if (!cxl_ps_ctx)
return -ENOMEM;
*cxl_ps_ctx = (struct cxl_patrol_scrub_context){
.get_feat_size = le16_to_cpu(feat_entry->get_feat_size),
.set_feat_size = le16_to_cpu(feat_entry->set_feat_size),
.get_version = feat_entry->get_feat_ver,
.set_version = feat_entry->set_feat_ver,
.effects = le16_to_cpu(feat_entry->effects),
.instance = scrub_inst,
.cxlmd = cxlmd,
};
rc = cxl_mem_scrub_get_attrbs(&cxlmd->cxlds->cxl_mbox, &cap, &cycle,
&flags, NULL);
if (rc)
return rc;
cxlmd->scrub_cycle = CXL_GET_SCRUB_CYCLE(cycle);
cxlmd->scrub_region_id = CXL_SCRUB_NO_REGION;
ras_feature->ft_type = RAS_FEAT_SCRUB;
ras_feature->instance = cxl_ps_ctx->instance;
ras_feature->scrub_ops = &cxl_ps_scrub_ops;
ras_feature->ctx = cxl_ps_ctx;
return 0;
}
static int cxl_region_scrub_init(struct cxl_region *cxlr,
struct edac_dev_feature *ras_feature,
u8 scrub_inst)
{
struct cxl_patrol_scrub_context *cxl_ps_ctx;
struct cxl_region_params *p = &cxlr->params;
struct cxl_feat_entry *feat_entry = NULL;
struct cxl_memdev *cxlmd;
u8 cap, flags;
u16 cycle;
int i, rc;
/*
* The cxl_region_rwsem must be held if the code below is used in a context
* other than when the region is in the probe state, as shown here.
*/
for (i = 0; i < p->nr_targets; i++) {
struct cxl_endpoint_decoder *cxled = p->targets[i];
cxlmd = cxled_to_memdev(cxled);
feat_entry = cxl_feature_info(to_cxlfs(cxlmd->cxlds),
&CXL_FEAT_PATROL_SCRUB_UUID);
if (IS_ERR(feat_entry))
return -EOPNOTSUPP;
if (!(le32_to_cpu(feat_entry->flags) &
CXL_FEATURE_F_CHANGEABLE))
return -EOPNOTSUPP;
rc = cxl_mem_scrub_get_attrbs(&cxlmd->cxlds->cxl_mbox, &cap,
&cycle, &flags, NULL);
if (rc)
return rc;
cxlmd->scrub_cycle = CXL_GET_SCRUB_CYCLE(cycle);
cxlmd->scrub_region_id = CXL_SCRUB_NO_REGION;
}
cxl_ps_ctx = devm_kzalloc(&cxlr->dev, sizeof(*cxl_ps_ctx), GFP_KERNEL);
if (!cxl_ps_ctx)
return -ENOMEM;
*cxl_ps_ctx = (struct cxl_patrol_scrub_context){
.get_feat_size = le16_to_cpu(feat_entry->get_feat_size),
.set_feat_size = le16_to_cpu(feat_entry->set_feat_size),
.get_version = feat_entry->get_feat_ver,
.set_version = feat_entry->set_feat_ver,
.effects = le16_to_cpu(feat_entry->effects),
.instance = scrub_inst,
.cxlr = cxlr,
};
ras_feature->ft_type = RAS_FEAT_SCRUB;
ras_feature->instance = cxl_ps_ctx->instance;
ras_feature->scrub_ops = &cxl_ps_scrub_ops;
ras_feature->ctx = cxl_ps_ctx;
return 0;
}
struct cxl_ecs_context {
u16 num_media_frus;
u16 get_feat_size;
u16 set_feat_size;
u8 get_version;
u8 set_version;
u16 effects;
struct cxl_memdev *cxlmd;
};
/*
* See CXL spec rev 3.2 @8.2.10.9.11.2 Table 8-225 DDR5 ECS Control Feature
* Readable Attributes.
*/
struct cxl_ecs_fru_rd_attrbs {
u8 ecs_cap;
__le16 ecs_config;
u8 ecs_flags;
} __packed;
struct cxl_ecs_rd_attrbs {
u8 ecs_log_cap;
struct cxl_ecs_fru_rd_attrbs fru_attrbs[];
} __packed;
/*
* See CXL spec rev 3.2 @8.2.10.9.11.2 Table 8-226 DDR5 ECS Control Feature
* Writable Attributes.
*/
struct cxl_ecs_fru_wr_attrbs {
__le16 ecs_config;
} __packed;
struct cxl_ecs_wr_attrbs {
u8 ecs_log_cap;
struct cxl_ecs_fru_wr_attrbs fru_attrbs[];
} __packed;
#define CXL_ECS_LOG_ENTRY_TYPE_MASK GENMASK(1, 0)
#define CXL_ECS_REALTIME_REPORT_CAP_MASK BIT(0)
#define CXL_ECS_THRESHOLD_COUNT_MASK GENMASK(2, 0)
#define CXL_ECS_COUNT_MODE_MASK BIT(3)
#define CXL_ECS_RESET_COUNTER_MASK BIT(4)
#define CXL_ECS_RESET_COUNTER 1
enum {
ECS_THRESHOLD_256 = 256,
ECS_THRESHOLD_1024 = 1024,
ECS_THRESHOLD_4096 = 4096,
};
enum {
ECS_THRESHOLD_IDX_256 = 3,
ECS_THRESHOLD_IDX_1024 = 4,
ECS_THRESHOLD_IDX_4096 = 5,
};
static const u16 ecs_supp_threshold[] = {
[ECS_THRESHOLD_IDX_256] = 256,
[ECS_THRESHOLD_IDX_1024] = 1024,
[ECS_THRESHOLD_IDX_4096] = 4096,
};
enum {
ECS_LOG_ENTRY_TYPE_DRAM = 0x0,
ECS_LOG_ENTRY_TYPE_MEM_MEDIA_FRU = 0x1,
};
enum cxl_ecs_count_mode {
ECS_MODE_COUNTS_ROWS = 0,
ECS_MODE_COUNTS_CODEWORDS = 1,
};
static int cxl_mem_ecs_get_attrbs(struct device *dev,
struct cxl_ecs_context *cxl_ecs_ctx,
int fru_id, u8 *log_cap, u16 *config)
{
struct cxl_memdev *cxlmd = cxl_ecs_ctx->cxlmd;
struct cxl_mailbox *cxl_mbox = &cxlmd->cxlds->cxl_mbox;
struct cxl_ecs_fru_rd_attrbs *fru_rd_attrbs;
size_t rd_data_size;
size_t data_size;
rd_data_size = cxl_ecs_ctx->get_feat_size;
struct cxl_ecs_rd_attrbs *rd_attrbs __free(kvfree) =
kvzalloc(rd_data_size, GFP_KERNEL);
if (!rd_attrbs)
return -ENOMEM;
data_size = cxl_get_feature(cxl_mbox, &CXL_FEAT_ECS_UUID,
CXL_GET_FEAT_SEL_CURRENT_VALUE, rd_attrbs,
rd_data_size, 0, NULL);
if (!data_size)
return -EIO;
fru_rd_attrbs = rd_attrbs->fru_attrbs;
*log_cap = rd_attrbs->ecs_log_cap;
*config = le16_to_cpu(fru_rd_attrbs[fru_id].ecs_config);
return 0;
}
static int cxl_mem_ecs_set_attrbs(struct device *dev,
struct cxl_ecs_context *cxl_ecs_ctx,
int fru_id, u8 log_cap, u16 config)
{
struct cxl_memdev *cxlmd = cxl_ecs_ctx->cxlmd;
struct cxl_mailbox *cxl_mbox = &cxlmd->cxlds->cxl_mbox;
struct cxl_ecs_fru_rd_attrbs *fru_rd_attrbs;
struct cxl_ecs_fru_wr_attrbs *fru_wr_attrbs;
size_t rd_data_size, wr_data_size;
u16 num_media_frus, count;
size_t data_size;
num_media_frus = cxl_ecs_ctx->num_media_frus;
rd_data_size = cxl_ecs_ctx->get_feat_size;
wr_data_size = cxl_ecs_ctx->set_feat_size;
struct cxl_ecs_rd_attrbs *rd_attrbs __free(kvfree) =
kvzalloc(rd_data_size, GFP_KERNEL);
if (!rd_attrbs)
return -ENOMEM;
data_size = cxl_get_feature(cxl_mbox, &CXL_FEAT_ECS_UUID,
CXL_GET_FEAT_SEL_CURRENT_VALUE, rd_attrbs,
rd_data_size, 0, NULL);
if (!data_size)
return -EIO;
struct cxl_ecs_wr_attrbs *wr_attrbs __free(kvfree) =
kvzalloc(wr_data_size, GFP_KERNEL);
if (!wr_attrbs)
return -ENOMEM;
/*
* Fill writable attributes from the current attributes read
* for all the media FRUs.
*/
fru_rd_attrbs = rd_attrbs->fru_attrbs;
fru_wr_attrbs = wr_attrbs->fru_attrbs;
wr_attrbs->ecs_log_cap = log_cap;
for (count = 0; count < num_media_frus; count++)
fru_wr_attrbs[count].ecs_config =
fru_rd_attrbs[count].ecs_config;
fru_wr_attrbs[fru_id].ecs_config = cpu_to_le16(config);
return cxl_set_feature(cxl_mbox, &CXL_FEAT_ECS_UUID,
cxl_ecs_ctx->set_version, wr_attrbs,
wr_data_size,
CXL_SET_FEAT_FLAG_DATA_SAVED_ACROSS_RESET,
0, NULL);
}
static u8 cxl_get_ecs_log_entry_type(u8 log_cap, u16 config)
{
return FIELD_GET(CXL_ECS_LOG_ENTRY_TYPE_MASK, log_cap);
}
static u16 cxl_get_ecs_threshold(u8 log_cap, u16 config)
{
u8 index = FIELD_GET(CXL_ECS_THRESHOLD_COUNT_MASK, config);
return ecs_supp_threshold[index];
}
static u8 cxl_get_ecs_count_mode(u8 log_cap, u16 config)
{
return FIELD_GET(CXL_ECS_COUNT_MODE_MASK, config);
}
#define CXL_ECS_GET_ATTR(attrb) \
static int cxl_ecs_get_##attrb(struct device *dev, void *drv_data, \
int fru_id, u32 *val) \
{ \
struct cxl_ecs_context *ctx = drv_data; \
u8 log_cap; \
u16 config; \
int ret; \
\
ret = cxl_mem_ecs_get_attrbs(dev, ctx, fru_id, &log_cap, \
&config); \
if (ret) \
return ret; \
\
*val = cxl_get_ecs_##attrb(log_cap, config); \
\
return 0; \
}
CXL_ECS_GET_ATTR(log_entry_type)
CXL_ECS_GET_ATTR(count_mode)
CXL_ECS_GET_ATTR(threshold)
static int cxl_set_ecs_log_entry_type(struct device *dev, u8 *log_cap,
u16 *config, u32 val)
{
if (val != ECS_LOG_ENTRY_TYPE_DRAM &&
val != ECS_LOG_ENTRY_TYPE_MEM_MEDIA_FRU)
return -EINVAL;
*log_cap = FIELD_PREP(CXL_ECS_LOG_ENTRY_TYPE_MASK, val);
return 0;
}
static int cxl_set_ecs_threshold(struct device *dev, u8 *log_cap, u16 *config,
u32 val)
{
*config &= ~CXL_ECS_THRESHOLD_COUNT_MASK;
switch (val) {
case ECS_THRESHOLD_256:
*config |= FIELD_PREP(CXL_ECS_THRESHOLD_COUNT_MASK,
ECS_THRESHOLD_IDX_256);
break;
case ECS_THRESHOLD_1024:
*config |= FIELD_PREP(CXL_ECS_THRESHOLD_COUNT_MASK,
ECS_THRESHOLD_IDX_1024);
break;
case ECS_THRESHOLD_4096:
*config |= FIELD_PREP(CXL_ECS_THRESHOLD_COUNT_MASK,
ECS_THRESHOLD_IDX_4096);
break;
default:
dev_dbg(dev, "Invalid CXL ECS threshold count(%d) to set\n",
val);
dev_dbg(dev, "Supported ECS threshold counts: %u, %u, %u\n",
ECS_THRESHOLD_256, ECS_THRESHOLD_1024,
ECS_THRESHOLD_4096);
return -EINVAL;
}
return 0;
}
static int cxl_set_ecs_count_mode(struct device *dev, u8 *log_cap, u16 *config,
u32 val)
{
if (val != ECS_MODE_COUNTS_ROWS && val != ECS_MODE_COUNTS_CODEWORDS) {
dev_dbg(dev, "Invalid CXL ECS scrub mode(%d) to set\n", val);
dev_dbg(dev,
"Supported ECS Modes: 0: ECS counts rows with errors,"
" 1: ECS counts codewords with errors\n");
return -EINVAL;
}
*config &= ~CXL_ECS_COUNT_MODE_MASK;
*config |= FIELD_PREP(CXL_ECS_COUNT_MODE_MASK, val);
return 0;
}
static int cxl_set_ecs_reset_counter(struct device *dev, u8 *log_cap,
u16 *config, u32 val)
{
if (val != CXL_ECS_RESET_COUNTER)
return -EINVAL;
*config &= ~CXL_ECS_RESET_COUNTER_MASK;
*config |= FIELD_PREP(CXL_ECS_RESET_COUNTER_MASK, val);
return 0;
}
#define CXL_ECS_SET_ATTR(attrb) \
static int cxl_ecs_set_##attrb(struct device *dev, void *drv_data, \
int fru_id, u32 val) \
{ \
struct cxl_ecs_context *ctx = drv_data; \
u8 log_cap; \
u16 config; \
int ret; \
\
if (!capable(CAP_SYS_RAWIO)) \
return -EPERM; \
\
ret = cxl_mem_ecs_get_attrbs(dev, ctx, fru_id, &log_cap, \
&config); \
if (ret) \
return ret; \
\
ret = cxl_set_ecs_##attrb(dev, &log_cap, &config, val); \
if (ret) \
return ret; \
\
return cxl_mem_ecs_set_attrbs(dev, ctx, fru_id, log_cap, \
config); \
}
CXL_ECS_SET_ATTR(log_entry_type)
CXL_ECS_SET_ATTR(count_mode)
CXL_ECS_SET_ATTR(reset_counter)
CXL_ECS_SET_ATTR(threshold)
static const struct edac_ecs_ops cxl_ecs_ops = {
.get_log_entry_type = cxl_ecs_get_log_entry_type,
.set_log_entry_type = cxl_ecs_set_log_entry_type,
.get_mode = cxl_ecs_get_count_mode,
.set_mode = cxl_ecs_set_count_mode,
.reset = cxl_ecs_set_reset_counter,
.get_threshold = cxl_ecs_get_threshold,
.set_threshold = cxl_ecs_set_threshold,
};
static int cxl_memdev_ecs_init(struct cxl_memdev *cxlmd,
struct edac_dev_feature *ras_feature)
{
struct cxl_ecs_context *cxl_ecs_ctx;
struct cxl_feat_entry *feat_entry;
int num_media_frus;
feat_entry =
cxl_feature_info(to_cxlfs(cxlmd->cxlds), &CXL_FEAT_ECS_UUID);
if (IS_ERR(feat_entry))
return -EOPNOTSUPP;
if (!(le32_to_cpu(feat_entry->flags) & CXL_FEATURE_F_CHANGEABLE))
return -EOPNOTSUPP;
num_media_frus = (le16_to_cpu(feat_entry->get_feat_size) -
sizeof(struct cxl_ecs_rd_attrbs)) /
sizeof(struct cxl_ecs_fru_rd_attrbs);
if (!num_media_frus)
return -EOPNOTSUPP;
cxl_ecs_ctx =
devm_kzalloc(&cxlmd->dev, sizeof(*cxl_ecs_ctx), GFP_KERNEL);
if (!cxl_ecs_ctx)
return -ENOMEM;
*cxl_ecs_ctx = (struct cxl_ecs_context){
.get_feat_size = le16_to_cpu(feat_entry->get_feat_size),
.set_feat_size = le16_to_cpu(feat_entry->set_feat_size),
.get_version = feat_entry->get_feat_ver,
.set_version = feat_entry->set_feat_ver,
.effects = le16_to_cpu(feat_entry->effects),
.num_media_frus = num_media_frus,
.cxlmd = cxlmd,
};
ras_feature->ft_type = RAS_FEAT_ECS;
ras_feature->ecs_ops = &cxl_ecs_ops;
ras_feature->ctx = cxl_ecs_ctx;
ras_feature->ecs_info.num_media_frus = num_media_frus;
return 0;
}
/*
* Perform Maintenance CXL 3.2 Spec 8.2.10.7.1
*/
/*
* Perform Maintenance input payload
* CXL rev 3.2 section 8.2.10.7.1 Table 8-117
*/
struct cxl_mbox_maintenance_hdr {
u8 op_class;
u8 op_subclass;
} __packed;
static int cxl_perform_maintenance(struct cxl_mailbox *cxl_mbox, u8 class,
u8 subclass, void *data_in,
size_t data_in_size)
{
struct cxl_memdev_maintenance_pi {
struct cxl_mbox_maintenance_hdr hdr;
u8 data[];
} __packed;
struct cxl_mbox_cmd mbox_cmd;
size_t hdr_size;
struct cxl_memdev_maintenance_pi *pi __free(kvfree) =
kvzalloc(cxl_mbox->payload_size, GFP_KERNEL);
if (!pi)
return -ENOMEM;
pi->hdr.op_class = class;
pi->hdr.op_subclass = subclass;
hdr_size = sizeof(pi->hdr);
/*
* Check minimum mbox payload size is available for
* the maintenance data transfer.
*/
if (hdr_size + data_in_size > cxl_mbox->payload_size)
return -ENOMEM;
memcpy(pi->data, data_in, data_in_size);
mbox_cmd = (struct cxl_mbox_cmd){
.opcode = CXL_MBOX_OP_DO_MAINTENANCE,
.size_in = hdr_size + data_in_size,
.payload_in = pi,
};
return cxl_internal_send_cmd(cxl_mbox, &mbox_cmd);
}
/*
* Support for finding a memory operation attributes
* are from the current boot or not.
*/
struct cxl_mem_err_rec {
struct xarray rec_gen_media;
struct xarray rec_dram;
};
enum cxl_mem_repair_type {
CXL_PPR,
CXL_CACHELINE_SPARING,
CXL_ROW_SPARING,
CXL_BANK_SPARING,
CXL_RANK_SPARING,
CXL_REPAIR_MAX,
};
/**
* struct cxl_mem_repair_attrbs - CXL memory repair attributes
* @dpa: DPA of memory to repair
* @nibble_mask: nibble mask, identifies one or more nibbles on the memory bus
* @row: row of memory to repair
* @column: column of memory to repair
* @channel: channel of memory to repair
* @sub_channel: sub channel of memory to repair
* @rank: rank of memory to repair
* @bank_group: bank group of memory to repair
* @bank: bank of memory to repair
* @repair_type: repair type. For eg. PPR, memory sparing etc.
*/
struct cxl_mem_repair_attrbs {
u64 dpa;
u32 nibble_mask;
u32 row;
u16 column;
u8 channel;
u8 sub_channel;
u8 rank;
u8 bank_group;
u8 bank;
enum cxl_mem_repair_type repair_type;
};
static struct cxl_event_gen_media *
cxl_find_rec_gen_media(struct cxl_memdev *cxlmd,
struct cxl_mem_repair_attrbs *attrbs)
{
struct cxl_mem_err_rec *array_rec = cxlmd->err_rec_array;
struct cxl_event_gen_media *rec;
if (!array_rec)
return NULL;
rec = xa_load(&array_rec->rec_gen_media, attrbs->dpa);
if (!rec)
return NULL;
if (attrbs->repair_type == CXL_PPR)
return rec;
return NULL;
}
static struct cxl_event_dram *
cxl_find_rec_dram(struct cxl_memdev *cxlmd,
struct cxl_mem_repair_attrbs *attrbs)
{
struct cxl_mem_err_rec *array_rec = cxlmd->err_rec_array;
struct cxl_event_dram *rec;
u16 validity_flags;
if (!array_rec)
return NULL;
rec = xa_load(&array_rec->rec_dram, attrbs->dpa);
if (!rec)
return NULL;
validity_flags = get_unaligned_le16(rec->media_hdr.validity_flags);
if (!(validity_flags & CXL_DER_VALID_CHANNEL) ||
!(validity_flags & CXL_DER_VALID_RANK))
return NULL;
switch (attrbs->repair_type) {
case CXL_PPR:
if (!(validity_flags & CXL_DER_VALID_NIBBLE) ||
get_unaligned_le24(rec->nibble_mask) == attrbs->nibble_mask)
return rec;
break;
case CXL_CACHELINE_SPARING:
if (!(validity_flags & CXL_DER_VALID_BANK_GROUP) ||
!(validity_flags & CXL_DER_VALID_BANK) ||
!(validity_flags & CXL_DER_VALID_ROW) ||
!(validity_flags & CXL_DER_VALID_COLUMN))
return NULL;
if (rec->media_hdr.channel == attrbs->channel &&
rec->media_hdr.rank == attrbs->rank &&
rec->bank_group == attrbs->bank_group &&
rec->bank == attrbs->bank &&
get_unaligned_le24(rec->row) == attrbs->row &&
get_unaligned_le16(rec->column) == attrbs->column &&
(!(validity_flags & CXL_DER_VALID_NIBBLE) ||
get_unaligned_le24(rec->nibble_mask) ==
attrbs->nibble_mask) &&
(!(validity_flags & CXL_DER_VALID_SUB_CHANNEL) ||
rec->sub_channel == attrbs->sub_channel))
return rec;
break;
case CXL_ROW_SPARING:
if (!(validity_flags & CXL_DER_VALID_BANK_GROUP) ||
!(validity_flags & CXL_DER_VALID_BANK) ||
!(validity_flags & CXL_DER_VALID_ROW))
return NULL;
if (rec->media_hdr.channel == attrbs->channel &&
rec->media_hdr.rank == attrbs->rank &&
rec->bank_group == attrbs->bank_group &&
rec->bank == attrbs->bank &&
get_unaligned_le24(rec->row) == attrbs->row &&
(!(validity_flags & CXL_DER_VALID_NIBBLE) ||
get_unaligned_le24(rec->nibble_mask) ==
attrbs->nibble_mask))
return rec;
break;
case CXL_BANK_SPARING:
if (!(validity_flags & CXL_DER_VALID_BANK_GROUP) ||
!(validity_flags & CXL_DER_VALID_BANK))
return NULL;
if (rec->media_hdr.channel == attrbs->channel &&
rec->media_hdr.rank == attrbs->rank &&
rec->bank_group == attrbs->bank_group &&
rec->bank == attrbs->bank &&
(!(validity_flags & CXL_DER_VALID_NIBBLE) ||
get_unaligned_le24(rec->nibble_mask) ==
attrbs->nibble_mask))
return rec;
break;
case CXL_RANK_SPARING:
if (rec->media_hdr.channel == attrbs->channel &&
rec->media_hdr.rank == attrbs->rank &&
(!(validity_flags & CXL_DER_VALID_NIBBLE) ||
get_unaligned_le24(rec->nibble_mask) ==
attrbs->nibble_mask))
return rec;
break;
default:
return NULL;
}
return NULL;
}
#define CXL_MAX_STORAGE_DAYS 10
#define CXL_MAX_STORAGE_TIME_SECS (CXL_MAX_STORAGE_DAYS * 24 * 60 * 60)
static void cxl_del_expired_gmedia_recs(struct xarray *rec_xarray,
struct cxl_event_gen_media *cur_rec)
{
u64 cur_ts = le64_to_cpu(cur_rec->media_hdr.hdr.timestamp);
struct cxl_event_gen_media *rec;
unsigned long index;
u64 delta_ts_secs;
xa_for_each(rec_xarray, index, rec) {
delta_ts_secs = (cur_ts -
le64_to_cpu(rec->media_hdr.hdr.timestamp)) / 1000000000ULL;
if (delta_ts_secs >= CXL_MAX_STORAGE_TIME_SECS) {
xa_erase(rec_xarray, index);
kfree(rec);
}
}
}
static void cxl_del_expired_dram_recs(struct xarray *rec_xarray,
struct cxl_event_dram *cur_rec)
{
u64 cur_ts = le64_to_cpu(cur_rec->media_hdr.hdr.timestamp);
struct cxl_event_dram *rec;
unsigned long index;
u64 delta_secs;
xa_for_each(rec_xarray, index, rec) {
delta_secs = (cur_ts -
le64_to_cpu(rec->media_hdr.hdr.timestamp)) / 1000000000ULL;
if (delta_secs >= CXL_MAX_STORAGE_TIME_SECS) {
xa_erase(rec_xarray, index);
kfree(rec);
}
}
}
#define CXL_MAX_REC_STORAGE_COUNT 200
static void cxl_del_overflow_old_recs(struct xarray *rec_xarray)
{
void *err_rec;
unsigned long index, count = 0;
xa_for_each(rec_xarray, index, err_rec)
count++;
if (count <= CXL_MAX_REC_STORAGE_COUNT)
return;
count -= CXL_MAX_REC_STORAGE_COUNT;
xa_for_each(rec_xarray, index, err_rec) {
xa_erase(rec_xarray, index);
kfree(err_rec);
count--;
if (!count)
break;
}
}
int cxl_store_rec_gen_media(struct cxl_memdev *cxlmd, union cxl_event *evt)
{
struct cxl_mem_err_rec *array_rec = cxlmd->err_rec_array;
struct cxl_event_gen_media *rec;
void *old_rec;
if (!IS_ENABLED(CONFIG_CXL_EDAC_MEM_REPAIR) || !array_rec)
return 0;
rec = kmemdup(&evt->gen_media, sizeof(*rec), GFP_KERNEL);
if (!rec)
return -ENOMEM;
old_rec = xa_store(&array_rec->rec_gen_media,
le64_to_cpu(rec->media_hdr.phys_addr), rec,
GFP_KERNEL);
if (xa_is_err(old_rec))
return xa_err(old_rec);
kfree(old_rec);
cxl_del_expired_gmedia_recs(&array_rec->rec_gen_media, rec);
cxl_del_overflow_old_recs(&array_rec->rec_gen_media);
return 0;
}
EXPORT_SYMBOL_NS_GPL(cxl_store_rec_gen_media, "CXL");
int cxl_store_rec_dram(struct cxl_memdev *cxlmd, union cxl_event *evt)
{
struct cxl_mem_err_rec *array_rec = cxlmd->err_rec_array;
struct cxl_event_dram *rec;
void *old_rec;
if (!IS_ENABLED(CONFIG_CXL_EDAC_MEM_REPAIR) || !array_rec)
return 0;
rec = kmemdup(&evt->dram, sizeof(*rec), GFP_KERNEL);
if (!rec)
return -ENOMEM;
old_rec = xa_store(&array_rec->rec_dram,
le64_to_cpu(rec->media_hdr.phys_addr), rec,
GFP_KERNEL);
if (xa_is_err(old_rec))
return xa_err(old_rec);
kfree(old_rec);
cxl_del_expired_dram_recs(&array_rec->rec_dram, rec);
cxl_del_overflow_old_recs(&array_rec->rec_dram);
return 0;
}
EXPORT_SYMBOL_NS_GPL(cxl_store_rec_dram, "CXL");
static bool cxl_is_memdev_memory_online(const struct cxl_memdev *cxlmd)
{
struct cxl_port *port = cxlmd->endpoint;
if (port && cxl_num_decoders_committed(port))
return true;
return false;
}
/*
* CXL memory sparing control
*/
enum cxl_mem_sparing_granularity {
CXL_MEM_SPARING_CACHELINE,
CXL_MEM_SPARING_ROW,
CXL_MEM_SPARING_BANK,
CXL_MEM_SPARING_RANK,
CXL_MEM_SPARING_MAX
};
struct cxl_mem_sparing_context {
struct cxl_memdev *cxlmd;
uuid_t repair_uuid;
u16 get_feat_size;
u16 set_feat_size;
u16 effects;
u8 instance;
u8 get_version;
u8 set_version;
u8 op_class;
u8 op_subclass;
bool cap_safe_when_in_use;
bool cap_hard_sparing;
bool cap_soft_sparing;
u8 channel;
u8 rank;
u8 bank_group;
u32 nibble_mask;
u64 dpa;
u32 row;
u16 column;
u8 bank;
u8 sub_channel;
enum edac_mem_repair_type repair_type;
bool persist_mode;
};
#define CXL_SPARING_RD_CAP_SAFE_IN_USE_MASK BIT(0)
#define CXL_SPARING_RD_CAP_HARD_SPARING_MASK BIT(1)
#define CXL_SPARING_RD_CAP_SOFT_SPARING_MASK BIT(2)
#define CXL_SPARING_WR_DEVICE_INITIATED_MASK BIT(0)
#define CXL_SPARING_QUERY_RESOURCE_FLAG BIT(0)
#define CXL_SET_HARD_SPARING_FLAG BIT(1)
#define CXL_SPARING_SUB_CHNL_VALID_FLAG BIT(2)
#define CXL_SPARING_NIB_MASK_VALID_FLAG BIT(3)
#define CXL_GET_SPARING_SAFE_IN_USE(flags) \
(FIELD_GET(CXL_SPARING_RD_CAP_SAFE_IN_USE_MASK, \
flags) ^ 1)
#define CXL_GET_CAP_HARD_SPARING(flags) \
FIELD_GET(CXL_SPARING_RD_CAP_HARD_SPARING_MASK, \
flags)
#define CXL_GET_CAP_SOFT_SPARING(flags) \
FIELD_GET(CXL_SPARING_RD_CAP_SOFT_SPARING_MASK, \
flags)
#define CXL_SET_SPARING_QUERY_RESOURCE(val) \
FIELD_PREP(CXL_SPARING_QUERY_RESOURCE_FLAG, val)
#define CXL_SET_HARD_SPARING(val) \
FIELD_PREP(CXL_SET_HARD_SPARING_FLAG, val)
#define CXL_SET_SPARING_SUB_CHNL_VALID(val) \
FIELD_PREP(CXL_SPARING_SUB_CHNL_VALID_FLAG, val)
#define CXL_SET_SPARING_NIB_MASK_VALID(val) \
FIELD_PREP(CXL_SPARING_NIB_MASK_VALID_FLAG, val)
/*
* See CXL spec rev 3.2 @8.2.10.7.2.3 Table 8-134 Memory Sparing Feature
* Readable Attributes.
*/
struct cxl_memdev_repair_rd_attrbs_hdr {
u8 max_op_latency;
__le16 op_cap;
__le16 op_mode;
u8 op_class;
u8 op_subclass;
u8 rsvd[9];
} __packed;
struct cxl_memdev_sparing_rd_attrbs {
struct cxl_memdev_repair_rd_attrbs_hdr hdr;
u8 rsvd;
__le16 restriction_flags;
} __packed;
/*
* See CXL spec rev 3.2 @8.2.10.7.1.4 Table 8-120 Memory Sparing Input Payload.
*/
struct cxl_memdev_sparing_in_payload {
u8 flags;
u8 channel;
u8 rank;
u8 nibble_mask[3];
u8 bank_group;
u8 bank;
u8 row[3];
__le16 column;
u8 sub_channel;
} __packed;
static int
cxl_mem_sparing_get_attrbs(struct cxl_mem_sparing_context *cxl_sparing_ctx)
{
size_t rd_data_size = sizeof(struct cxl_memdev_sparing_rd_attrbs);
struct cxl_memdev *cxlmd = cxl_sparing_ctx->cxlmd;
struct cxl_mailbox *cxl_mbox = &cxlmd->cxlds->cxl_mbox;
u16 restriction_flags;
size_t data_size;
u16 return_code;
struct cxl_memdev_sparing_rd_attrbs *rd_attrbs __free(kfree) =
kzalloc(rd_data_size, GFP_KERNEL);
if (!rd_attrbs)
return -ENOMEM;
data_size = cxl_get_feature(cxl_mbox, &cxl_sparing_ctx->repair_uuid,
CXL_GET_FEAT_SEL_CURRENT_VALUE, rd_attrbs,
rd_data_size, 0, &return_code);
if (!data_size)
return -EIO;
cxl_sparing_ctx->op_class = rd_attrbs->hdr.op_class;
cxl_sparing_ctx->op_subclass = rd_attrbs->hdr.op_subclass;
restriction_flags = le16_to_cpu(rd_attrbs->restriction_flags);
cxl_sparing_ctx->cap_safe_when_in_use =
CXL_GET_SPARING_SAFE_IN_USE(restriction_flags);
cxl_sparing_ctx->cap_hard_sparing =
CXL_GET_CAP_HARD_SPARING(restriction_flags);
cxl_sparing_ctx->cap_soft_sparing =
CXL_GET_CAP_SOFT_SPARING(restriction_flags);
return 0;
}
static struct cxl_event_dram *
cxl_mem_get_rec_dram(struct cxl_memdev *cxlmd,
struct cxl_mem_sparing_context *ctx)
{
struct cxl_mem_repair_attrbs attrbs = { 0 };
attrbs.dpa = ctx->dpa;
attrbs.channel = ctx->channel;
attrbs.rank = ctx->rank;
attrbs.nibble_mask = ctx->nibble_mask;
switch (ctx->repair_type) {
case EDAC_REPAIR_CACHELINE_SPARING:
attrbs.repair_type = CXL_CACHELINE_SPARING;
attrbs.bank_group = ctx->bank_group;
attrbs.bank = ctx->bank;
attrbs.row = ctx->row;
attrbs.column = ctx->column;
attrbs.sub_channel = ctx->sub_channel;
break;
case EDAC_REPAIR_ROW_SPARING:
attrbs.repair_type = CXL_ROW_SPARING;
attrbs.bank_group = ctx->bank_group;
attrbs.bank = ctx->bank;
attrbs.row = ctx->row;
break;
case EDAC_REPAIR_BANK_SPARING:
attrbs.repair_type = CXL_BANK_SPARING;
attrbs.bank_group = ctx->bank_group;
attrbs.bank = ctx->bank;
break;
case EDAC_REPAIR_RANK_SPARING:
attrbs.repair_type = CXL_BANK_SPARING;
break;
default:
return NULL;
}
return cxl_find_rec_dram(cxlmd, &attrbs);
}
static int
cxl_mem_perform_sparing(struct device *dev,
struct cxl_mem_sparing_context *cxl_sparing_ctx)
{
struct cxl_memdev *cxlmd = cxl_sparing_ctx->cxlmd;
struct cxl_memdev_sparing_in_payload sparing_pi;
struct cxl_event_dram *rec = NULL;
u16 validity_flags = 0;
struct rw_semaphore *region_lock __free(rwsem_read_release) =
rwsem_read_intr_acquire(&cxl_region_rwsem);
if (!region_lock)
return -EINTR;
struct rw_semaphore *dpa_lock __free(rwsem_read_release) =
rwsem_read_intr_acquire(&cxl_dpa_rwsem);
if (!dpa_lock)
return -EINTR;
if (!cxl_sparing_ctx->cap_safe_when_in_use) {
/* Memory to repair must be offline */
if (cxl_is_memdev_memory_online(cxlmd))
return -EBUSY;
} else {
if (cxl_is_memdev_memory_online(cxlmd)) {
rec = cxl_mem_get_rec_dram(cxlmd, cxl_sparing_ctx);
if (!rec)
return -EINVAL;
if (!get_unaligned_le16(rec->media_hdr.validity_flags))
return -EINVAL;
}
}
memset(&sparing_pi, 0, sizeof(sparing_pi));
sparing_pi.flags = CXL_SET_SPARING_QUERY_RESOURCE(0);
if (cxl_sparing_ctx->persist_mode)
sparing_pi.flags |= CXL_SET_HARD_SPARING(1);
if (rec)
validity_flags = get_unaligned_le16(rec->media_hdr.validity_flags);
switch (cxl_sparing_ctx->repair_type) {
case EDAC_REPAIR_CACHELINE_SPARING:
sparing_pi.column = cpu_to_le16(cxl_sparing_ctx->column);
if (!rec || (validity_flags & CXL_DER_VALID_SUB_CHANNEL)) {
sparing_pi.flags |= CXL_SET_SPARING_SUB_CHNL_VALID(1);
sparing_pi.sub_channel = cxl_sparing_ctx->sub_channel;
}
fallthrough;
case EDAC_REPAIR_ROW_SPARING:
put_unaligned_le24(cxl_sparing_ctx->row, sparing_pi.row);
fallthrough;
case EDAC_REPAIR_BANK_SPARING:
sparing_pi.bank_group = cxl_sparing_ctx->bank_group;
sparing_pi.bank = cxl_sparing_ctx->bank;
fallthrough;
case EDAC_REPAIR_RANK_SPARING:
sparing_pi.rank = cxl_sparing_ctx->rank;
fallthrough;
default:
sparing_pi.channel = cxl_sparing_ctx->channel;
if ((rec && (validity_flags & CXL_DER_VALID_NIBBLE)) ||
(!rec && (!cxl_sparing_ctx->nibble_mask ||
(cxl_sparing_ctx->nibble_mask & 0xFFFFFF)))) {
sparing_pi.flags |= CXL_SET_SPARING_NIB_MASK_VALID(1);
put_unaligned_le24(cxl_sparing_ctx->nibble_mask,
sparing_pi.nibble_mask);
}
break;
}
return cxl_perform_maintenance(&cxlmd->cxlds->cxl_mbox,
cxl_sparing_ctx->op_class,
cxl_sparing_ctx->op_subclass,
&sparing_pi, sizeof(sparing_pi));
}
static int cxl_mem_sparing_get_repair_type(struct device *dev, void *drv_data,
const char **repair_type)
{
struct cxl_mem_sparing_context *ctx = drv_data;
switch (ctx->repair_type) {
case EDAC_REPAIR_CACHELINE_SPARING:
case EDAC_REPAIR_ROW_SPARING:
case EDAC_REPAIR_BANK_SPARING:
case EDAC_REPAIR_RANK_SPARING:
*repair_type = edac_repair_type[ctx->repair_type];
break;
default:
return -EINVAL;
}
return 0;
}
#define CXL_SPARING_GET_ATTR(attrb, data_type) \
static int cxl_mem_sparing_get_##attrb( \
struct device *dev, void *drv_data, data_type *val) \
{ \
struct cxl_mem_sparing_context *ctx = drv_data; \
\
*val = ctx->attrb; \
\
return 0; \
}
CXL_SPARING_GET_ATTR(persist_mode, bool)
CXL_SPARING_GET_ATTR(dpa, u64)
CXL_SPARING_GET_ATTR(nibble_mask, u32)
CXL_SPARING_GET_ATTR(bank_group, u32)
CXL_SPARING_GET_ATTR(bank, u32)
CXL_SPARING_GET_ATTR(rank, u32)
CXL_SPARING_GET_ATTR(row, u32)
CXL_SPARING_GET_ATTR(column, u32)
CXL_SPARING_GET_ATTR(channel, u32)
CXL_SPARING_GET_ATTR(sub_channel, u32)
#define CXL_SPARING_SET_ATTR(attrb, data_type) \
static int cxl_mem_sparing_set_##attrb(struct device *dev, \
void *drv_data, data_type val) \
{ \
struct cxl_mem_sparing_context *ctx = drv_data; \
\
ctx->attrb = val; \
\
return 0; \
}
CXL_SPARING_SET_ATTR(nibble_mask, u32)
CXL_SPARING_SET_ATTR(bank_group, u32)
CXL_SPARING_SET_ATTR(bank, u32)
CXL_SPARING_SET_ATTR(rank, u32)
CXL_SPARING_SET_ATTR(row, u32)
CXL_SPARING_SET_ATTR(column, u32)
CXL_SPARING_SET_ATTR(channel, u32)
CXL_SPARING_SET_ATTR(sub_channel, u32)
static int cxl_mem_sparing_set_persist_mode(struct device *dev, void *drv_data,
bool persist_mode)
{
struct cxl_mem_sparing_context *ctx = drv_data;
if ((persist_mode && ctx->cap_hard_sparing) ||
(!persist_mode && ctx->cap_soft_sparing))
ctx->persist_mode = persist_mode;
else
return -EOPNOTSUPP;
return 0;
}
static int cxl_get_mem_sparing_safe_when_in_use(struct device *dev,
void *drv_data, bool *safe)
{
struct cxl_mem_sparing_context *ctx = drv_data;
*safe = ctx->cap_safe_when_in_use;
return 0;
}
static int cxl_mem_sparing_get_min_dpa(struct device *dev, void *drv_data,
u64 *min_dpa)
{
struct cxl_mem_sparing_context *ctx = drv_data;
struct cxl_memdev *cxlmd = ctx->cxlmd;
struct cxl_dev_state *cxlds = cxlmd->cxlds;
*min_dpa = cxlds->dpa_res.start;
return 0;
}
static int cxl_mem_sparing_get_max_dpa(struct device *dev, void *drv_data,
u64 *max_dpa)
{
struct cxl_mem_sparing_context *ctx = drv_data;
struct cxl_memdev *cxlmd = ctx->cxlmd;
struct cxl_dev_state *cxlds = cxlmd->cxlds;
*max_dpa = cxlds->dpa_res.end;
return 0;
}
static int cxl_mem_sparing_set_dpa(struct device *dev, void *drv_data, u64 dpa)
{
struct cxl_mem_sparing_context *ctx = drv_data;
struct cxl_memdev *cxlmd = ctx->cxlmd;
struct cxl_dev_state *cxlds = cxlmd->cxlds;
if (dpa < cxlds->dpa_res.start || dpa > cxlds->dpa_res.end)
return -EINVAL;
ctx->dpa = dpa;
return 0;
}
static int cxl_do_mem_sparing(struct device *dev, void *drv_data, u32 val)
{
struct cxl_mem_sparing_context *ctx = drv_data;
if (val != EDAC_DO_MEM_REPAIR)
return -EINVAL;
return cxl_mem_perform_sparing(dev, ctx);
}
#define RANK_OPS \
.get_repair_type = cxl_mem_sparing_get_repair_type, \
.get_persist_mode = cxl_mem_sparing_get_persist_mode, \
.set_persist_mode = cxl_mem_sparing_set_persist_mode, \
.get_repair_safe_when_in_use = cxl_get_mem_sparing_safe_when_in_use, \
.get_min_dpa = cxl_mem_sparing_get_min_dpa, \
.get_max_dpa = cxl_mem_sparing_get_max_dpa, \
.get_dpa = cxl_mem_sparing_get_dpa, \
.set_dpa = cxl_mem_sparing_set_dpa, \
.get_nibble_mask = cxl_mem_sparing_get_nibble_mask, \
.set_nibble_mask = cxl_mem_sparing_set_nibble_mask, \
.get_rank = cxl_mem_sparing_get_rank, \
.set_rank = cxl_mem_sparing_set_rank, \
.get_channel = cxl_mem_sparing_get_channel, \
.set_channel = cxl_mem_sparing_set_channel, \
.do_repair = cxl_do_mem_sparing
#define BANK_OPS \
RANK_OPS, .get_bank_group = cxl_mem_sparing_get_bank_group, \
.set_bank_group = cxl_mem_sparing_set_bank_group, \
.get_bank = cxl_mem_sparing_get_bank, \
.set_bank = cxl_mem_sparing_set_bank
#define ROW_OPS \
BANK_OPS, .get_row = cxl_mem_sparing_get_row, \
.set_row = cxl_mem_sparing_set_row
#define CACHELINE_OPS \
ROW_OPS, .get_column = cxl_mem_sparing_get_column, \
.set_column = cxl_mem_sparing_set_column, \
.get_sub_channel = cxl_mem_sparing_get_sub_channel, \
.set_sub_channel = cxl_mem_sparing_set_sub_channel
static const struct edac_mem_repair_ops cxl_rank_sparing_ops = {
RANK_OPS,
};
static const struct edac_mem_repair_ops cxl_bank_sparing_ops = {
BANK_OPS,
};
static const struct edac_mem_repair_ops cxl_row_sparing_ops = {
ROW_OPS,
};
static const struct edac_mem_repair_ops cxl_cacheline_sparing_ops = {
CACHELINE_OPS,
};
struct cxl_mem_sparing_desc {
const uuid_t repair_uuid;
enum edac_mem_repair_type repair_type;
const struct edac_mem_repair_ops *repair_ops;
};
static const struct cxl_mem_sparing_desc mem_sparing_desc[] = {
{
.repair_uuid = CXL_FEAT_CACHELINE_SPARING_UUID,
.repair_type = EDAC_REPAIR_CACHELINE_SPARING,
.repair_ops = &cxl_cacheline_sparing_ops,
},
{
.repair_uuid = CXL_FEAT_ROW_SPARING_UUID,
.repair_type = EDAC_REPAIR_ROW_SPARING,
.repair_ops = &cxl_row_sparing_ops,
},
{
.repair_uuid = CXL_FEAT_BANK_SPARING_UUID,
.repair_type = EDAC_REPAIR_BANK_SPARING,
.repair_ops = &cxl_bank_sparing_ops,
},
{
.repair_uuid = CXL_FEAT_RANK_SPARING_UUID,
.repair_type = EDAC_REPAIR_RANK_SPARING,
.repair_ops = &cxl_rank_sparing_ops,
},
};
static int cxl_memdev_sparing_init(struct cxl_memdev *cxlmd,
struct edac_dev_feature *ras_feature,
const struct cxl_mem_sparing_desc *desc,
u8 repair_inst)
{
struct cxl_mem_sparing_context *cxl_sparing_ctx;
struct cxl_feat_entry *feat_entry;
int ret;
feat_entry = cxl_feature_info(to_cxlfs(cxlmd->cxlds),
&desc->repair_uuid);
if (IS_ERR(feat_entry))
return -EOPNOTSUPP;
if (!(le32_to_cpu(feat_entry->flags) & CXL_FEATURE_F_CHANGEABLE))
return -EOPNOTSUPP;
cxl_sparing_ctx = devm_kzalloc(&cxlmd->dev, sizeof(*cxl_sparing_ctx),
GFP_KERNEL);
if (!cxl_sparing_ctx)
return -ENOMEM;
*cxl_sparing_ctx = (struct cxl_mem_sparing_context){
.get_feat_size = le16_to_cpu(feat_entry->get_feat_size),
.set_feat_size = le16_to_cpu(feat_entry->set_feat_size),
.get_version = feat_entry->get_feat_ver,
.set_version = feat_entry->set_feat_ver,
.effects = le16_to_cpu(feat_entry->effects),
.cxlmd = cxlmd,
.repair_type = desc->repair_type,
.instance = repair_inst++,
};
uuid_copy(&cxl_sparing_ctx->repair_uuid, &desc->repair_uuid);
ret = cxl_mem_sparing_get_attrbs(cxl_sparing_ctx);
if (ret)
return ret;
if ((cxl_sparing_ctx->cap_soft_sparing &&
cxl_sparing_ctx->cap_hard_sparing) ||
cxl_sparing_ctx->cap_soft_sparing)
cxl_sparing_ctx->persist_mode = 0;
else if (cxl_sparing_ctx->cap_hard_sparing)
cxl_sparing_ctx->persist_mode = 1;
else
return -EOPNOTSUPP;
ras_feature->ft_type = RAS_FEAT_MEM_REPAIR;
ras_feature->instance = cxl_sparing_ctx->instance;
ras_feature->mem_repair_ops = desc->repair_ops;
ras_feature->ctx = cxl_sparing_ctx;
return 0;
}
/*
* CXL memory soft PPR & hard PPR control
*/
struct cxl_ppr_context {
uuid_t repair_uuid;
u8 instance;
u16 get_feat_size;
u16 set_feat_size;
u8 get_version;
u8 set_version;
u16 effects;
u8 op_class;
u8 op_subclass;
bool cap_dpa;
bool cap_nib_mask;
bool media_accessible;
bool data_retained;
struct cxl_memdev *cxlmd;
enum edac_mem_repair_type repair_type;
bool persist_mode;
u64 dpa;
u32 nibble_mask;
};
/*
* See CXL rev 3.2 @8.2.10.7.2.1 Table 8-128 sPPR Feature Readable Attributes
*
* See CXL rev 3.2 @8.2.10.7.2.2 Table 8-131 hPPR Feature Readable Attributes
*/
#define CXL_PPR_OP_CAP_DEVICE_INITIATED BIT(0)
#define CXL_PPR_OP_MODE_DEV_INITIATED BIT(0)
#define CXL_PPR_FLAG_DPA_SUPPORT_MASK BIT(0)
#define CXL_PPR_FLAG_NIB_SUPPORT_MASK BIT(1)
#define CXL_PPR_FLAG_MEM_SPARING_EV_REC_SUPPORT_MASK BIT(2)
#define CXL_PPR_FLAG_DEV_INITED_PPR_AT_BOOT_CAP_MASK BIT(3)
#define CXL_PPR_RESTRICTION_FLAG_MEDIA_ACCESSIBLE_MASK BIT(0)
#define CXL_PPR_RESTRICTION_FLAG_DATA_RETAINED_MASK BIT(2)
#define CXL_PPR_SPARING_EV_REC_EN_MASK BIT(0)
#define CXL_PPR_DEV_INITED_PPR_AT_BOOT_EN_MASK BIT(1)
#define CXL_PPR_GET_CAP_DPA(flags) \
FIELD_GET(CXL_PPR_FLAG_DPA_SUPPORT_MASK, flags)
#define CXL_PPR_GET_CAP_NIB_MASK(flags) \
FIELD_GET(CXL_PPR_FLAG_NIB_SUPPORT_MASK, flags)
#define CXL_PPR_GET_MEDIA_ACCESSIBLE(restriction_flags) \
(FIELD_GET(CXL_PPR_RESTRICTION_FLAG_MEDIA_ACCESSIBLE_MASK, \
restriction_flags) ^ 1)
#define CXL_PPR_GET_DATA_RETAINED(restriction_flags) \
(FIELD_GET(CXL_PPR_RESTRICTION_FLAG_DATA_RETAINED_MASK, \
restriction_flags) ^ 1)
struct cxl_memdev_ppr_rd_attrbs {
struct cxl_memdev_repair_rd_attrbs_hdr hdr;
u8 ppr_flags;
__le16 restriction_flags;
u8 ppr_op_mode;
} __packed;
/*
* See CXL rev 3.2 @8.2.10.7.1.2 Table 8-118 sPPR Maintenance Input Payload
*
* See CXL rev 3.2 @8.2.10.7.1.3 Table 8-119 hPPR Maintenance Input Payload
*/
struct cxl_memdev_ppr_maintenance_attrbs {
u8 flags;
__le64 dpa;
u8 nibble_mask[3];
} __packed;
static int cxl_mem_ppr_get_attrbs(struct cxl_ppr_context *cxl_ppr_ctx)
{
size_t rd_data_size = sizeof(struct cxl_memdev_ppr_rd_attrbs);
struct cxl_memdev *cxlmd = cxl_ppr_ctx->cxlmd;
struct cxl_mailbox *cxl_mbox = &cxlmd->cxlds->cxl_mbox;
u16 restriction_flags;
size_t data_size;
u16 return_code;
struct cxl_memdev_ppr_rd_attrbs *rd_attrbs __free(kfree) =
kmalloc(rd_data_size, GFP_KERNEL);
if (!rd_attrbs)
return -ENOMEM;
data_size = cxl_get_feature(cxl_mbox, &cxl_ppr_ctx->repair_uuid,
CXL_GET_FEAT_SEL_CURRENT_VALUE, rd_attrbs,
rd_data_size, 0, &return_code);
if (!data_size)
return -EIO;
cxl_ppr_ctx->op_class = rd_attrbs->hdr.op_class;
cxl_ppr_ctx->op_subclass = rd_attrbs->hdr.op_subclass;
cxl_ppr_ctx->cap_dpa = CXL_PPR_GET_CAP_DPA(rd_attrbs->ppr_flags);
cxl_ppr_ctx->cap_nib_mask =
CXL_PPR_GET_CAP_NIB_MASK(rd_attrbs->ppr_flags);
restriction_flags = le16_to_cpu(rd_attrbs->restriction_flags);
cxl_ppr_ctx->media_accessible =
CXL_PPR_GET_MEDIA_ACCESSIBLE(restriction_flags);
cxl_ppr_ctx->data_retained =
CXL_PPR_GET_DATA_RETAINED(restriction_flags);
return 0;
}
static int cxl_mem_perform_ppr(struct cxl_ppr_context *cxl_ppr_ctx)
{
struct cxl_memdev_ppr_maintenance_attrbs maintenance_attrbs;
struct cxl_memdev *cxlmd = cxl_ppr_ctx->cxlmd;
struct cxl_mem_repair_attrbs attrbs = { 0 };
struct rw_semaphore *region_lock __free(rwsem_read_release) =
rwsem_read_intr_acquire(&cxl_region_rwsem);
if (!region_lock)
return -EINTR;
struct rw_semaphore *dpa_lock __free(rwsem_read_release) =
rwsem_read_intr_acquire(&cxl_dpa_rwsem);
if (!dpa_lock)
return -EINTR;
if (!cxl_ppr_ctx->media_accessible || !cxl_ppr_ctx->data_retained) {
/* Memory to repair must be offline */
if (cxl_is_memdev_memory_online(cxlmd))
return -EBUSY;
} else {
if (cxl_is_memdev_memory_online(cxlmd)) {
/* Check memory to repair is from the current boot */
attrbs.repair_type = CXL_PPR;
attrbs.dpa = cxl_ppr_ctx->dpa;
attrbs.nibble_mask = cxl_ppr_ctx->nibble_mask;
if (!cxl_find_rec_dram(cxlmd, &attrbs) &&
!cxl_find_rec_gen_media(cxlmd, &attrbs))
return -EINVAL;
}
}
memset(&maintenance_attrbs, 0, sizeof(maintenance_attrbs));
maintenance_attrbs.flags = 0;
maintenance_attrbs.dpa = cpu_to_le64(cxl_ppr_ctx->dpa);
put_unaligned_le24(cxl_ppr_ctx->nibble_mask,
maintenance_attrbs.nibble_mask);
return cxl_perform_maintenance(&cxlmd->cxlds->cxl_mbox,
cxl_ppr_ctx->op_class,
cxl_ppr_ctx->op_subclass,
&maintenance_attrbs,
sizeof(maintenance_attrbs));
}
static int cxl_ppr_get_repair_type(struct device *dev, void *drv_data,
const char **repair_type)
{
*repair_type = edac_repair_type[EDAC_REPAIR_PPR];
return 0;
}
static int cxl_ppr_get_persist_mode(struct device *dev, void *drv_data,
bool *persist_mode)
{
struct cxl_ppr_context *cxl_ppr_ctx = drv_data;
*persist_mode = cxl_ppr_ctx->persist_mode;
return 0;
}
static int cxl_get_ppr_safe_when_in_use(struct device *dev, void *drv_data,
bool *safe)
{
struct cxl_ppr_context *cxl_ppr_ctx = drv_data;
*safe = cxl_ppr_ctx->media_accessible & cxl_ppr_ctx->data_retained;
return 0;
}
static int cxl_ppr_get_min_dpa(struct device *dev, void *drv_data, u64 *min_dpa)
{
struct cxl_ppr_context *cxl_ppr_ctx = drv_data;
struct cxl_memdev *cxlmd = cxl_ppr_ctx->cxlmd;
struct cxl_dev_state *cxlds = cxlmd->cxlds;
*min_dpa = cxlds->dpa_res.start;
return 0;
}
static int cxl_ppr_get_max_dpa(struct device *dev, void *drv_data, u64 *max_dpa)
{
struct cxl_ppr_context *cxl_ppr_ctx = drv_data;
struct cxl_memdev *cxlmd = cxl_ppr_ctx->cxlmd;
struct cxl_dev_state *cxlds = cxlmd->cxlds;
*max_dpa = cxlds->dpa_res.end;
return 0;
}
static int cxl_ppr_get_dpa(struct device *dev, void *drv_data, u64 *dpa)
{
struct cxl_ppr_context *cxl_ppr_ctx = drv_data;
*dpa = cxl_ppr_ctx->dpa;
return 0;
}
static int cxl_ppr_set_dpa(struct device *dev, void *drv_data, u64 dpa)
{
struct cxl_ppr_context *cxl_ppr_ctx = drv_data;
struct cxl_memdev *cxlmd = cxl_ppr_ctx->cxlmd;
struct cxl_dev_state *cxlds = cxlmd->cxlds;
if (dpa < cxlds->dpa_res.start || dpa > cxlds->dpa_res.end)
return -EINVAL;
cxl_ppr_ctx->dpa = dpa;
return 0;
}
static int cxl_ppr_get_nibble_mask(struct device *dev, void *drv_data,
u32 *nibble_mask)
{
struct cxl_ppr_context *cxl_ppr_ctx = drv_data;
*nibble_mask = cxl_ppr_ctx->nibble_mask;
return 0;
}
static int cxl_ppr_set_nibble_mask(struct device *dev, void *drv_data,
u32 nibble_mask)
{
struct cxl_ppr_context *cxl_ppr_ctx = drv_data;
cxl_ppr_ctx->nibble_mask = nibble_mask;
return 0;
}
static int cxl_do_ppr(struct device *dev, void *drv_data, u32 val)
{
struct cxl_ppr_context *cxl_ppr_ctx = drv_data;
if (!cxl_ppr_ctx->dpa || val != EDAC_DO_MEM_REPAIR)
return -EINVAL;
return cxl_mem_perform_ppr(cxl_ppr_ctx);
}
static const struct edac_mem_repair_ops cxl_sppr_ops = {
.get_repair_type = cxl_ppr_get_repair_type,
.get_persist_mode = cxl_ppr_get_persist_mode,
.get_repair_safe_when_in_use = cxl_get_ppr_safe_when_in_use,
.get_min_dpa = cxl_ppr_get_min_dpa,
.get_max_dpa = cxl_ppr_get_max_dpa,
.get_dpa = cxl_ppr_get_dpa,
.set_dpa = cxl_ppr_set_dpa,
.get_nibble_mask = cxl_ppr_get_nibble_mask,
.set_nibble_mask = cxl_ppr_set_nibble_mask,
.do_repair = cxl_do_ppr,
};
static int cxl_memdev_soft_ppr_init(struct cxl_memdev *cxlmd,
struct edac_dev_feature *ras_feature,
u8 repair_inst)
{
struct cxl_ppr_context *cxl_sppr_ctx;
struct cxl_feat_entry *feat_entry;
int ret;
feat_entry = cxl_feature_info(to_cxlfs(cxlmd->cxlds),
&CXL_FEAT_SPPR_UUID);
if (IS_ERR(feat_entry))
return -EOPNOTSUPP;
if (!(le32_to_cpu(feat_entry->flags) & CXL_FEATURE_F_CHANGEABLE))
return -EOPNOTSUPP;
cxl_sppr_ctx =
devm_kzalloc(&cxlmd->dev, sizeof(*cxl_sppr_ctx), GFP_KERNEL);
if (!cxl_sppr_ctx)
return -ENOMEM;
*cxl_sppr_ctx = (struct cxl_ppr_context){
.get_feat_size = le16_to_cpu(feat_entry->get_feat_size),
.set_feat_size = le16_to_cpu(feat_entry->set_feat_size),
.get_version = feat_entry->get_feat_ver,
.set_version = feat_entry->set_feat_ver,
.effects = le16_to_cpu(feat_entry->effects),
.cxlmd = cxlmd,
.repair_type = EDAC_REPAIR_PPR,
.persist_mode = 0,
.instance = repair_inst,
};
uuid_copy(&cxl_sppr_ctx->repair_uuid, &CXL_FEAT_SPPR_UUID);
ret = cxl_mem_ppr_get_attrbs(cxl_sppr_ctx);
if (ret)
return ret;
ras_feature->ft_type = RAS_FEAT_MEM_REPAIR;
ras_feature->instance = cxl_sppr_ctx->instance;
ras_feature->mem_repair_ops = &cxl_sppr_ops;
ras_feature->ctx = cxl_sppr_ctx;
return 0;
}
int devm_cxl_memdev_edac_register(struct cxl_memdev *cxlmd)
{
struct edac_dev_feature ras_features[CXL_NR_EDAC_DEV_FEATURES];
int num_ras_features = 0;
u8 repair_inst = 0;
int rc;
if (IS_ENABLED(CONFIG_CXL_EDAC_SCRUB)) {
rc = cxl_memdev_scrub_init(cxlmd, &ras_features[num_ras_features], 0);
if (rc < 0 && rc != -EOPNOTSUPP)
return rc;
if (rc != -EOPNOTSUPP)
num_ras_features++;
}
if (IS_ENABLED(CONFIG_CXL_EDAC_ECS)) {
rc = cxl_memdev_ecs_init(cxlmd, &ras_features[num_ras_features]);
if (rc < 0 && rc != -EOPNOTSUPP)
return rc;
if (rc != -EOPNOTSUPP)
num_ras_features++;
}
if (IS_ENABLED(CONFIG_CXL_EDAC_MEM_REPAIR)) {
for (int i = 0; i < CXL_MEM_SPARING_MAX; i++) {
rc = cxl_memdev_sparing_init(cxlmd,
&ras_features[num_ras_features],
&mem_sparing_desc[i], repair_inst);
if (rc == -EOPNOTSUPP)
continue;
if (rc < 0)
return rc;
repair_inst++;
num_ras_features++;
}
rc = cxl_memdev_soft_ppr_init(cxlmd, &ras_features[num_ras_features],
repair_inst);
if (rc < 0 && rc != -EOPNOTSUPP)
return rc;
if (rc != -EOPNOTSUPP) {
repair_inst++;
num_ras_features++;
}
if (repair_inst) {
struct cxl_mem_err_rec *array_rec =
devm_kzalloc(&cxlmd->dev, sizeof(*array_rec),
GFP_KERNEL);
if (!array_rec)
return -ENOMEM;
xa_init(&array_rec->rec_gen_media);
xa_init(&array_rec->rec_dram);
cxlmd->err_rec_array = array_rec;
}
}
if (!num_ras_features)
return -EINVAL;
char *cxl_dev_name __free(kfree) =
kasprintf(GFP_KERNEL, "cxl_%s", dev_name(&cxlmd->dev));
if (!cxl_dev_name)
return -ENOMEM;
return edac_dev_register(&cxlmd->dev, cxl_dev_name, NULL,
num_ras_features, ras_features);
}
EXPORT_SYMBOL_NS_GPL(devm_cxl_memdev_edac_register, "CXL");
int devm_cxl_region_edac_register(struct cxl_region *cxlr)
{
struct edac_dev_feature ras_features[CXL_NR_EDAC_DEV_FEATURES];
int num_ras_features = 0;
int rc;
if (!IS_ENABLED(CONFIG_CXL_EDAC_SCRUB))
return 0;
rc = cxl_region_scrub_init(cxlr, &ras_features[num_ras_features], 0);
if (rc < 0)
return rc;
num_ras_features++;
char *cxl_dev_name __free(kfree) =
kasprintf(GFP_KERNEL, "cxl_%s", dev_name(&cxlr->dev));
if (!cxl_dev_name)
return -ENOMEM;
return edac_dev_register(&cxlr->dev, cxl_dev_name, NULL,
num_ras_features, ras_features);
}
EXPORT_SYMBOL_NS_GPL(devm_cxl_region_edac_register, "CXL");
void devm_cxl_memdev_edac_release(struct cxl_memdev *cxlmd)
{
struct cxl_mem_err_rec *array_rec = cxlmd->err_rec_array;
struct cxl_event_gen_media *rec_gen_media;
struct cxl_event_dram *rec_dram;
unsigned long index;
if (!IS_ENABLED(CONFIG_CXL_EDAC_MEM_REPAIR) || !array_rec)
return;
xa_for_each(&array_rec->rec_dram, index, rec_dram)
kfree(rec_dram);
xa_destroy(&array_rec->rec_dram);
xa_for_each(&array_rec->rec_gen_media, index, rec_gen_media)
kfree(rec_gen_media);
xa_destroy(&array_rec->rec_gen_media);
}
EXPORT_SYMBOL_NS_GPL(devm_cxl_memdev_edac_release, "CXL");
|