hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
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
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
 * Author: Chris Zhong <zyw@rock-chips.com>
 *         Kever Yang <kever.yang@rock-chips.com>
 *
 * The ROCKCHIP Type-C PHY has two PLL clocks. The first PLL clock
 * is used for USB3, the second PLL clock is used for DP. This Type-C PHY has
 * 3 working modes: USB3 only mode, DP only mode, and USB3+DP mode.
 * At USB3 only mode, both PLL clocks need to be initialized, this allows the
 * PHY to switch mode between USB3 and USB3+DP, without disconnecting the USB
 * device.
 * In The DP only mode, only the DP PLL needs to be powered on, and the 4 lanes
 * are all used for DP.
 *
 * This driver gets extcon cable state and property, then decides which mode to
 * select:
 *
 * 1. USB3 only mode:
 *    EXTCON_USB or EXTCON_USB_HOST state is true, and
 *    EXTCON_PROP_USB_SS property is true.
 *    EXTCON_DISP_DP state is false.
 *
 * 2. DP only mode:
 *    EXTCON_DISP_DP state is true, and
 *    EXTCON_PROP_USB_SS property is false.
 *    If EXTCON_USB_HOST state is true, it is DP + USB2 mode, since the USB2 phy
 *    is a separate phy, so this case is still DP only mode.
 *
 * 3. USB3+DP mode:
 *    EXTCON_USB_HOST and EXTCON_DISP_DP are both true, and
 *    EXTCON_PROP_USB_SS property is true.
 *
 * This Type-C PHY driver supports normal and flip orientation. The orientation
 * is reported by the EXTCON_PROP_USB_TYPEC_POLARITY property: true is flip
 * orientation, false is normal orientation.
 */
 
#include <linux/clk.h>
#include <linux/clk-provider.h>
#include <linux/delay.h>
#include <linux/extcon.h>
#include <linux/io.h>
#include <linux/iopoll.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/mutex.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/of_platform.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#include <linux/reset.h>
#include <linux/usb/typec_dp.h>
#include <linux/usb/typec_mux.h>
 
#include <linux/mfd/syscon.h>
#include <linux/phy/phy.h>
#include <linux/usb/typec_mux.h>
#include <linux/usb/typec_dp.h>
 
#define CMN_SSM_BANDGAP            (0x21 << 2)
#define CMN_SSM_BIAS            (0x22 << 2)
#define CMN_PLLSM0_PLLEN        (0x29 << 2)
#define CMN_PLLSM0_PLLPRE        (0x2a << 2)
#define CMN_PLLSM0_PLLVREF        (0x2b << 2)
#define CMN_PLLSM0_PLLLOCK        (0x2c << 2)
#define CMN_PLLSM1_PLLEN        (0x31 << 2)
#define CMN_PLLSM1_PLLPRE        (0x32 << 2)
#define CMN_PLLSM1_PLLVREF        (0x33 << 2)
#define CMN_PLLSM1_PLLLOCK        (0x34 << 2)
#define CMN_PLLSM1_USER_DEF_CTRL    (0x37 << 2)
#define CMN_ICAL_OVRD            (0xc1 << 2)
#define CMN_PLL0_VCOCAL_OVRD        (0x83 << 2)
#define CMN_PLL0_VCOCAL_INIT        (0x84 << 2)
#define CMN_PLL0_VCOCAL_ITER        (0x85 << 2)
#define CMN_PLL0_LOCK_REFCNT_START    (0x90 << 2)
#define CMN_PLL0_LOCK_PLLCNT_START    (0x92 << 2)
#define CMN_PLL0_LOCK_PLLCNT_THR    (0x93 << 2)
#define CMN_PLL0_INTDIV            (0x94 << 2)
#define CMN_PLL0_FRACDIV        (0x95 << 2)
#define CMN_PLL0_HIGH_THR        (0x96 << 2)
#define CMN_PLL0_DSM_DIAG        (0x97 << 2)
#define CMN_PLL0_SS_CTRL1        (0x98 << 2)
#define CMN_PLL0_SS_CTRL2        (0x99 << 2)
#define CMN_PLL1_VCOCAL_START        (0xa1 << 2)
#define CMN_PLL1_VCOCAL_OVRD        (0xa3 << 2)
#define CMN_PLL1_VCOCAL_INIT        (0xa4 << 2)
#define CMN_PLL1_VCOCAL_ITER        (0xa5 << 2)
#define CMN_PLL1_LOCK_REFCNT_START    (0xb0 << 2)
#define CMN_PLL1_LOCK_PLLCNT_START    (0xb2 << 2)
#define CMN_PLL1_LOCK_PLLCNT_THR    (0xb3 << 2)
#define CMN_PLL1_INTDIV            (0xb4 << 2)
#define CMN_PLL1_FRACDIV        (0xb5 << 2)
#define CMN_PLL1_HIGH_THR        (0xb6 << 2)
#define CMN_PLL1_DSM_DIAG        (0xb7 << 2)
#define CMN_PLL1_SS_CTRL1        (0xb8 << 2)
#define CMN_PLL1_SS_CTRL2        (0xb9 << 2)
#define CMN_RXCAL_OVRD            (0xd1 << 2)
 
#define CMN_TXPUCAL_CTRL        (0xe0 << 2)
#define CMN_TXPUCAL_OVRD        (0xe1 << 2)
#define CMN_TXPDCAL_CTRL        (0xf0 << 2)
#define CMN_TXPDCAL_OVRD        (0xf1 << 2)
 
/* For CMN_TXPUCAL_CTRL, CMN_TXPDCAL_CTRL */
#define CMN_TXPXCAL_START        BIT(15)
#define CMN_TXPXCAL_DONE        BIT(14)
#define CMN_TXPXCAL_NO_RESPONSE        BIT(13)
#define CMN_TXPXCAL_CURRENT_RESPONSE    BIT(12)
 
#define CMN_TXPU_ADJ_CTRL        (0x108 << 2)
#define CMN_TXPD_ADJ_CTRL        (0x10c << 2)
 
/*
 * For CMN_TXPUCAL_CTRL, CMN_TXPDCAL_CTRL,
 *     CMN_TXPU_ADJ_CTRL, CMN_TXPDCAL_CTRL
 *
 * NOTE: some of these registers are documented to be 2's complement
 * signed numbers, but then documented to be always positive.  Weird.
 * In such a case, using CMN_CALIB_CODE_POS() avoids the unnecessary
 * sign extension.
 */
#define CMN_CALIB_CODE_WIDTH    7
#define CMN_CALIB_CODE_OFFSET    0
#define CMN_CALIB_CODE_MASK    GENMASK(CMN_CALIB_CODE_WIDTH, 0)
#define CMN_CALIB_CODE(x)    \
   sign_extend32((x) >> CMN_CALIB_CODE_OFFSET, CMN_CALIB_CODE_WIDTH)
 
#define CMN_CALIB_CODE_POS_MASK    GENMASK(CMN_CALIB_CODE_WIDTH - 1, 0)
#define CMN_CALIB_CODE_POS(x)    \
   (((x) >> CMN_CALIB_CODE_OFFSET) & CMN_CALIB_CODE_POS_MASK)
 
#define CMN_DIAG_PLL0_FBH_OVRD        (0x1c0 << 2)
#define CMN_DIAG_PLL0_FBL_OVRD        (0x1c1 << 2)
#define CMN_DIAG_PLL0_OVRD        (0x1c2 << 2)
#define CMN_DIAG_PLL0_V2I_TUNE        (0x1c5 << 2)
#define CMN_DIAG_PLL0_CP_TUNE        (0x1c6 << 2)
#define CMN_DIAG_PLL0_LF_PROG        (0x1c7 << 2)
#define CMN_DIAG_PLL1_FBH_OVRD        (0x1d0 << 2)
#define CMN_DIAG_PLL1_FBL_OVRD        (0x1d1 << 2)
#define CMN_DIAG_PLL1_OVRD        (0x1d2 << 2)
#define CMN_DIAG_PLL1_V2I_TUNE        (0x1d5 << 2)
#define CMN_DIAG_PLL1_CP_TUNE        (0x1d6 << 2)
#define CMN_DIAG_PLL1_LF_PROG        (0x1d7 << 2)
#define CMN_DIAG_PLL1_PTATIS_TUNE1    (0x1d8 << 2)
#define CMN_DIAG_PLL1_PTATIS_TUNE2    (0x1d9 << 2)
#define CMN_DIAG_PLL1_INCLK_CTRL    (0x1da << 2)
#define CMN_DIAG_HSCLK_SEL        (0x1e0 << 2)
 
#define XCVR_PSM_RCTRL(n)        ((0x4001 | ((n) << 9)) << 2)
#define XCVR_PSM_CAL_TMR(n)        ((0x4002 | ((n) << 9)) << 2)
#define XCVR_PSM_A0IN_TMR(n)        ((0x4003 | ((n) << 9)) << 2)
#define TX_TXCC_CAL_SCLR_MULT(n)    ((0x4047 | ((n) << 9)) << 2)
#define TX_TXCC_CPOST_MULT_00(n)    ((0x404c | ((n) << 9)) << 2)
#define TX_TXCC_CPOST_MULT_01(n)    ((0x404d | ((n) << 9)) << 2)
#define TX_TXCC_CPOST_MULT_10(n)    ((0x404e | ((n) << 9)) << 2)
#define TX_TXCC_CPOST_MULT_11(n)    ((0x404f | ((n) << 9)) << 2)
#define TX_TXCC_MGNFS_MULT_000(n)    ((0x4050 | ((n) << 9)) << 2)
#define TX_TXCC_MGNFS_MULT_001(n)    ((0x4051 | ((n) << 9)) << 2)
#define TX_TXCC_MGNFS_MULT_010(n)    ((0x4052 | ((n) << 9)) << 2)
#define TX_TXCC_MGNFS_MULT_011(n)    ((0x4053 | ((n) << 9)) << 2)
#define TX_TXCC_MGNFS_MULT_100(n)    ((0x4054 | ((n) << 9)) << 2)
#define TX_TXCC_MGNFS_MULT_101(n)    ((0x4055 | ((n) << 9)) << 2)
#define TX_TXCC_MGNFS_MULT_110(n)    ((0x4056 | ((n) << 9)) << 2)
#define TX_TXCC_MGNFS_MULT_111(n)    ((0x4057 | ((n) << 9)) << 2)
#define TX_TXCC_MGNLS_MULT_000(n)    ((0x4058 | ((n) << 9)) << 2)
#define TX_TXCC_MGNLS_MULT_001(n)    ((0x4059 | ((n) << 9)) << 2)
#define TX_TXCC_MGNLS_MULT_010(n)    ((0x405a | ((n) << 9)) << 2)
#define TX_TXCC_MGNLS_MULT_011(n)    ((0x405b | ((n) << 9)) << 2)
#define TX_TXCC_MGNLS_MULT_100(n)    ((0x405c | ((n) << 9)) << 2)
#define TX_TXCC_MGNLS_MULT_101(n)    ((0x405d | ((n) << 9)) << 2)
#define TX_TXCC_MGNLS_MULT_110(n)    ((0x405e | ((n) << 9)) << 2)
#define TX_TXCC_MGNLS_MULT_111(n)    ((0x405f | ((n) << 9)) << 2)
 
#define XCVR_DIAG_PLLDRC_CTRL(n)    ((0x40e0 | ((n) << 9)) << 2)
#define XCVR_DIAG_BIDI_CTRL(n)        ((0x40e8 | ((n) << 9)) << 2)
#define XCVR_DIAG_LANE_FCM_EN_MGN(n)    ((0x40f2 | ((n) << 9)) << 2)
#define TX_PSC_A0(n)            ((0x4100 | ((n) << 9)) << 2)
#define TX_PSC_A1(n)            ((0x4101 | ((n) << 9)) << 2)
#define TX_PSC_A2(n)            ((0x4102 | ((n) << 9)) << 2)
#define TX_PSC_A3(n)            ((0x4103 | ((n) << 9)) << 2)
#define TX_RCVDET_CTRL(n)        ((0x4120 | ((n) << 9)) << 2)
#define TX_RCVDET_EN_TMR(n)        ((0x4122 | ((n) << 9)) << 2)
#define TX_RCVDET_ST_TMR(n)        ((0x4123 | ((n) << 9)) << 2)
#define TX_DIAG_TX_DRV(n)        ((0x41e1 | ((n) << 9)) << 2)
#define TX_DIAG_BGREF_PREDRV_DELAY    (0x41e7 << 2)
 
/* Use this for "n" in macros like "_MULT_XXX" to target the aux channel */
#define AUX_CH_LANE            8
 
#define TX_ANA_CTRL_REG_1        (0x5020 << 2)
 
#define TXDA_DP_AUX_EN            BIT(15)
#define AUXDA_SE_EN            BIT(14)
#define TXDA_CAL_LATCH_EN        BIT(13)
#define AUXDA_POLARITY            BIT(12)
#define TXDA_DRV_POWER_ISOLATION_EN    BIT(11)
#define TXDA_DRV_POWER_EN_PH_2_N    BIT(10)
#define TXDA_DRV_POWER_EN_PH_1_N    BIT(9)
#define TXDA_BGREF_EN            BIT(8)
#define TXDA_DRV_LDO_EN            BIT(7)
#define TXDA_DECAP_EN_DEL        BIT(6)
#define TXDA_DECAP_EN            BIT(5)
#define TXDA_UPHY_SUPPLY_EN_DEL        BIT(4)
#define TXDA_UPHY_SUPPLY_EN        BIT(3)
#define TXDA_LOW_LEAKAGE_EN        BIT(2)
#define TXDA_DRV_IDLE_LOWI_EN        BIT(1)
#define TXDA_DRV_CMN_MODE_EN        BIT(0)
 
#define TX_ANA_CTRL_REG_2        (0x5021 << 2)
 
#define AUXDA_DEBOUNCING_CLK        BIT(15)
#define TXDA_LPBK_RECOVERED_CLK_EN    BIT(14)
#define TXDA_LPBK_ISI_GEN_EN        BIT(13)
#define TXDA_LPBK_SERIAL_EN        BIT(12)
#define TXDA_LPBK_LINE_EN        BIT(11)
#define TXDA_DRV_LDO_REDC_SINKIQ    BIT(10)
#define XCVR_DECAP_EN_DEL        BIT(9)
#define XCVR_DECAP_EN            BIT(8)
#define TXDA_MPHY_ENABLE_HS_NT        BIT(7)
#define TXDA_MPHY_SA_MODE        BIT(6)
#define TXDA_DRV_LDO_RBYR_FB_EN        BIT(5)
#define TXDA_DRV_RST_PULL_DOWN        BIT(4)
#define TXDA_DRV_LDO_BG_FB_EN        BIT(3)
#define TXDA_DRV_LDO_BG_REF_EN        BIT(2)
#define TXDA_DRV_PREDRV_EN_DEL        BIT(1)
#define TXDA_DRV_PREDRV_EN        BIT(0)
 
#define TXDA_COEFF_CALC_CTRL        (0x5022 << 2)
 
#define TX_HIGH_Z            BIT(6)
#define TX_VMARGIN_OFFSET        3
#define TX_VMARGIN_MASK            0x7
#define LOW_POWER_SWING_EN        BIT(2)
#define TX_FCM_DRV_MAIN_EN        BIT(1)
#define TX_FCM_FULL_MARGIN        BIT(0)
 
#define TX_DIG_CTRL_REG_2        (0x5024 << 2)
 
#define TX_HIGH_Z_TM_EN            BIT(15)
#define TX_RESCAL_CODE_OFFSET        0
#define TX_RESCAL_CODE_MASK        0x3f
 
#define TXDA_CYA_AUXDA_CYA        (0x5025 << 2)
#define TX_ANA_CTRL_REG_3        (0x5026 << 2)
#define TX_ANA_CTRL_REG_4        (0x5027 << 2)
#define TX_ANA_CTRL_REG_5        (0x5029 << 2)
 
#define RX_PSC_A0(n)            ((0x8000 | ((n) << 9)) << 2)
#define RX_PSC_A1(n)            ((0x8001 | ((n) << 9)) << 2)
#define RX_PSC_A2(n)            ((0x8002 | ((n) << 9)) << 2)
#define RX_PSC_A3(n)            ((0x8003 | ((n) << 9)) << 2)
#define RX_PSC_CAL(n)            ((0x8006 | ((n) << 9)) << 2)
#define RX_PSC_RDY(n)            ((0x8007 | ((n) << 9)) << 2)
#define RX_IQPI_ILL_CAL_OVRD        (0x8023 << 2)
#define RX_EPI_ILL_CAL_OVRD        (0x8033 << 2)
#define RX_SDCAL0_OVRD            (0x8041 << 2)
#define RX_SDCAL1_OVRD            (0x8049 << 2)
#define RX_SLC_INIT            (0x806d << 2)
#define RX_SLC_RUN            (0x806e << 2)
#define RX_CDRLF_CNFG2            (0x8081 << 2)
#define RX_SIGDET_HL_FILT_TMR(n)    ((0x8090 | ((n) << 9)) << 2)
#define RX_SLC_IOP0_OVRD        (0x8101 << 2)
#define RX_SLC_IOP1_OVRD        (0x8105 << 2)
#define RX_SLC_QOP0_OVRD        (0x8109 << 2)
#define RX_SLC_QOP1_OVRD        (0x810d << 2)
#define RX_SLC_EOP0_OVRD        (0x8111 << 2)
#define RX_SLC_EOP1_OVRD        (0x8115 << 2)
#define RX_SLC_ION0_OVRD        (0x8119 << 2)
#define RX_SLC_ION1_OVRD        (0x811d << 2)
#define RX_SLC_QON0_OVRD        (0x8121 << 2)
#define RX_SLC_QON1_OVRD        (0x8125 << 2)
#define RX_SLC_EON0_OVRD        (0x8129 << 2)
#define RX_SLC_EON1_OVRD        (0x812d << 2)
#define RX_SLC_IEP0_OVRD        (0x8131 << 2)
#define RX_SLC_IEP1_OVRD        (0x8135 << 2)
#define RX_SLC_QEP0_OVRD        (0x8139 << 2)
#define RX_SLC_QEP1_OVRD        (0x813d << 2)
#define RX_SLC_EEP0_OVRD        (0x8141 << 2)
#define RX_SLC_EEP1_OVRD        (0x8145 << 2)
#define RX_SLC_IEN0_OVRD        (0x8149 << 2)
#define RX_SLC_IEN1_OVRD        (0x814d << 2)
#define RX_SLC_QEN0_OVRD        (0x8151 << 2)
#define RX_SLC_QEN1_OVRD        (0x8155 << 2)
#define RX_SLC_EEN0_OVRD        (0x8159 << 2)
#define RX_SLC_EEN1_OVRD        (0x815d << 2)
#define RX_REE_CTRL_DATA_MASK(n)    ((0x81bb | ((n) << 9)) << 2)
#define RX_DIAG_SIGDET_TUNE(n)        ((0x81dc | ((n) << 9)) << 2)
#define RX_DIAG_SC2C_DELAY        (0x81e1 << 2)
 
#define PHY_PMA_LANE_CFG        (0xc000 << 2)
#define PMA_LANE3_DP_LANE_SEL(x)    (((x) & 0x3) << 14)
#define PMA_LANE3_INTERFACE_SEL(x)    (((x) & 0x1) << 12)
#define PMA_LANE2_DP_LANE_SEL(x)    (((x) & 0x3) << 10)
#define PMA_LANE2_INTERFACE_SEL(x)    (((x) & 0x1) << 8)
#define PMA_LANE1_DP_LANE_SEL(x)    (((x) & 0x3) << 6)
#define PMA_LANE1_INTERFACE_SEL(x)    (((x) & 0x1) << 4)
#define PMA_LANE0_DP_LANE_SEL(x)    (((x) & 0x3) << 2)
#define PMA_LANE0_INTERFACE_SEL(x)    (((x) & 0x1) << 0)
#define PIPE_CMN_CTRL1            (0xc001 << 2)
#define PIPE_CMN_CTRL2            (0xc002 << 2)
#define PIPE_COM_LOCK_CFG1        (0xc003 << 2)
#define PIPE_COM_LOCK_CFG2        (0xc004 << 2)
#define PIPE_RCV_DET_INH        (0xc005 << 2)
#define PHY_DP_MODE_CTL            (0xc008 << 2)
#define PHY_DP_LANE_DISABLE        GENMASK(15, 12)
#define PHY_DP_LANE_3_DISABLE        BIT(15)
#define PHY_DP_LANE_2_DISABLE        BIT(14)
#define PHY_DP_LANE_1_DISABLE        BIT(13)
#define PHY_DP_LANE_0_DISABLE        BIT(12)
#define PHY_DP_POWER_STATE_ACK_MASK    GENMASK(7, 4)
#define PHY_DP_POWER_STATE_ACK_SHIFT    4
#define PHY_DP_POWER_STATE_MASK        GENMASK(3, 0)
#define PHY_DP_CLK_CTL            (0xc009 << 2)
#define DP_PLL_CLOCK_ENABLE_ACK        BIT(3)
#define DP_PLL_CLOCK_ENABLE_MASK    BIT(2)
#define DP_PLL_CLOCK_DISABLE        0
#define DP_PLL_READY            BIT(1)
#define DP_PLL_ENABLE_MASK        BIT(0)
#define DP_PLL_ENABLE            BIT(0)
#define DP_PLL_DISABLE            0
#define DP_CLK_CTL            (0xc009 << 2)
#define STS                (0xc00F << 2)
#define PHY_ISO_CMN_CTRL        (0xc010 << 2)
#define PHY_DP_TX_CTL            (0xc408 << 2)
#define PMA_CMN_CTRL1            (0xc800 << 2)
#define PHY_PMA_ISO_CMN_CTRL        (0xc810 << 2)
#define PHY_ISOLATION_CTRL        (0xc81f << 2)
#define PHY_PMA_ISO_XCVR_CTRL(n)    ((0xcc11 | ((n) << 6)) << 2)
#define PHY_PMA_ISO_LINK_MODE(n)    ((0xcc12 | ((n) << 6)) << 2)
#define PHY_PMA_ISO_PWRST_CTRL(n)    ((0xcc13 | ((n) << 6)) << 2)
#define PHY_PMA_ISO_TX_DATA_LO(n)    ((0xcc14 | ((n) << 6)) << 2)
#define PHY_PMA_ISO_TX_DATA_HI(n)    ((0xcc15 | ((n) << 6)) << 2)
#define PHY_PMA_ISO_RX_DATA_LO(n)    ((0xcc16 | ((n) << 6)) << 2)
#define PHY_PMA_ISO_RX_DATA_HI(n)    ((0xcc17 | ((n) << 6)) << 2)
#define TX_BIST_CTRL(n)            ((0x4140 | ((n) << 9)) << 2)
#define TX_BIST_UDDWR(n)        ((0x4141 | ((n) << 9)) << 2)
 
/*
 * Selects which PLL clock will be driven on the analog high speed
 * clock 0: PLL 0 div 1
 * clock 1: PLL 1 div 2
 */
#define CLK_PLL1_DIV1            0x20
#define CLK_PLL1_DIV2            0x30
#define CLK_PLL_MASK            0x33
 
#define CMN_READY            BIT(0)
 
#define DP_PLL_CLOCK_ENABLE_ACK        BIT(3)
#define DP_PLL_CLOCK_ENABLE        BIT(2)
#define DP_PLL_ENABLE_ACK        BIT(1)
#define DP_PLL_ENABLE            BIT(0)
#define DP_PLL_DATA_RATE_RBR        ((2 << 12) | (4 << 8))
#define DP_PLL_DATA_RATE_HBR        ((2 << 12) | (4 << 8))
#define DP_PLL_DATA_RATE_HBR2        ((1 << 12) | (2 << 8))
#define DP_PLL_DATA_RATE_MASK        0xff00
 
#define DP_MODE_MASK            0xf
#define DP_MODE_ENTER_A0        BIT(0)
#define DP_MODE_ENTER_A2        BIT(2)
#define DP_MODE_ENTER_A3        BIT(3)
#define DP_MODE_A0_ACK            BIT(4)
#define DP_MODE_A2_ACK            BIT(6)
#define DP_MODE_A3_ACK            BIT(7)
#define DP_LINK_RESET_DEASSERTED    BIT(8)
 
#define PHY_MODE_SET_TIMEOUT        100000
 
#define PIN_ASSIGN_C_E            0x51d9
#define PIN_ASSIGN_D_F            0x5100
 
#define MODE_DISCONNECT            0
#define MODE_UFP_USB            BIT(0)
#define MODE_DFP_USB            BIT(1)
#define MODE_DFP_DP            BIT(2)
 
#define DP_DEFAULT_RATE            162000
 
#define POWER_ON_TRIES            5
 
struct usb3phy_reg {
   u32 offset;
   u32 enable_bit;
   u32 write_enable;
};
 
/**
 * struct rockchip_usb3phy_port_cfg - usb3-phy port configuration.
 * @reg: the base address for usb3-phy config.
 * @typec_conn_dir: the register of type-c connector direction.
 * @usb3tousb2_en: the register of type-c force usb2 to usb2 enable.
 * @external_psm: the register of type-c phy external psm clock.
 * @pipe_status: the register of type-c phy pipe status.
 * @usb3_host_disable: the register of type-c usb3 host disable.
 * @usb3_host_port: the register of type-c usb3 host port.
 * @uphy_dp_sel: the register of type-c phy DP select control.
 */
struct rockchip_usb3phy_port_cfg {
   unsigned int reg;
   struct usb3phy_reg typec_conn_dir;
   struct usb3phy_reg usb3tousb2_en;
   struct usb3phy_reg external_psm;
   struct usb3phy_reg pipe_status;
   struct usb3phy_reg usb3_host_disable;
   struct usb3phy_reg usb3_host_port;
   struct usb3phy_reg uphy_dp_sel;
};
 
struct phy_config {
   int swing;
   int pe;
};
 
enum {
   TYPEC_PHY_USB,
   TYPEC_PHY_DP,
   TYPEC_PHY_MAX,
};
 
struct rockchip_typec_phy {
   struct device *dev;
   void __iomem *base;
   struct typec_mux *mux;
   struct typec_switch *sw;
   struct regmap *grf_regs;
   struct clk *clk_core;
   struct clk *clk_ref;
   struct reset_control *uphy_rst;
   struct reset_control *pipe_rst;
   struct reset_control *tcphy_rst;
   struct phy *phys[TYPEC_PHY_MAX];
   const struct rockchip_usb3phy_port_cfg *port_cfgs;
   /* mutex to protect access to individual PHYs */
   struct mutex lock;
 
   bool flip;
   u8 mode;
   u8 new_mode;
   struct phy_config config[3][4];
};
 
struct phy_reg {
   u16 value;
   u32 addr;
};
 
static struct phy_reg usb3_pll_cfg[] = {
   { 0xf0,        CMN_PLL0_VCOCAL_INIT },
   { 0x18,        CMN_PLL0_VCOCAL_ITER },
   { 0xd0,        CMN_PLL0_INTDIV },
   { 0x4a4a,    CMN_PLL0_FRACDIV },
   { 0x34,        CMN_PLL0_HIGH_THR },
   { 0x1ee,    CMN_PLL0_SS_CTRL1 },
   { 0x7f03,    CMN_PLL0_SS_CTRL2 },
   { 0x20,        CMN_PLL0_DSM_DIAG },
   { 0,        CMN_DIAG_PLL0_OVRD },
   { 0,        CMN_DIAG_PLL0_FBH_OVRD },
   { 0,        CMN_DIAG_PLL0_FBL_OVRD },
   { 0x7,        CMN_DIAG_PLL0_V2I_TUNE },
   { 0x45,        CMN_DIAG_PLL0_CP_TUNE },
   { 0x8,        CMN_DIAG_PLL0_LF_PROG },
};
 
static const struct phy_reg dp_pll_rbr_cfg[] = {
   { 0x00f0, CMN_PLL1_VCOCAL_INIT },
   { 0x0018, CMN_PLL1_VCOCAL_ITER },
   { 0x30b9, CMN_PLL1_VCOCAL_START },
   { 0x0087, CMN_PLL1_INTDIV },
   { 0x0000, CMN_PLL1_FRACDIV },
   { 0x0022, CMN_PLL1_HIGH_THR },
   { 0x8000, CMN_PLL1_SS_CTRL1 },
   { 0x0000, CMN_PLL1_SS_CTRL2 },
   { 0x0020, CMN_PLL1_DSM_DIAG },
   { 0x0000, CMN_PLLSM1_USER_DEF_CTRL },
   { 0x0000, CMN_DIAG_PLL1_OVRD },
   { 0x0000, CMN_DIAG_PLL1_FBH_OVRD },
   { 0x0000, CMN_DIAG_PLL1_FBL_OVRD },
   { 0x0006, CMN_DIAG_PLL1_V2I_TUNE },
   { 0x0045, CMN_DIAG_PLL1_CP_TUNE },
   { 0x0008, CMN_DIAG_PLL1_LF_PROG },
   { 0x0100, CMN_DIAG_PLL1_PTATIS_TUNE1 },
   { 0x0007, CMN_DIAG_PLL1_PTATIS_TUNE2 },
   { 0x0001, CMN_DIAG_PLL1_INCLK_CTRL },
};
 
static const struct phy_reg dp_pll_rbr_ssc_cfg[] = {
   { 0x00f0, CMN_PLL1_VCOCAL_INIT },
   { 0x0018, CMN_PLL1_VCOCAL_ITER },
   { 0x30b9, CMN_PLL1_VCOCAL_START },
   { 0x0086, CMN_PLL1_INTDIV },
   { 0xf915, CMN_PLL1_FRACDIV },
   { 0x0022, CMN_PLL1_HIGH_THR },
   { 0x0140, CMN_PLL1_SS_CTRL1 },
   { 0x7f03, CMN_PLL1_SS_CTRL2 },
   { 0x0020, CMN_PLL1_DSM_DIAG },
   { 0x0000, CMN_PLLSM1_USER_DEF_CTRL },
   { 0x0000, CMN_DIAG_PLL1_OVRD },
   { 0x0000, CMN_DIAG_PLL1_FBH_OVRD },
   { 0x0000, CMN_DIAG_PLL1_FBL_OVRD },
   { 0x0006, CMN_DIAG_PLL1_V2I_TUNE },
   { 0x0045, CMN_DIAG_PLL1_CP_TUNE },
   { 0x0008, CMN_DIAG_PLL1_LF_PROG },
   { 0x0100, CMN_DIAG_PLL1_PTATIS_TUNE1 },
   { 0x0007, CMN_DIAG_PLL1_PTATIS_TUNE2 },
   { 0x0001, CMN_DIAG_PLL1_INCLK_CTRL },
};
 
static const struct phy_reg dp_pll_hbr_cfg[] = {
   { 0x00f0, CMN_PLL1_VCOCAL_INIT },
   { 0x0018, CMN_PLL1_VCOCAL_ITER },
   { 0x30b4, CMN_PLL1_VCOCAL_START },
   { 0x00e1, CMN_PLL1_INTDIV },
   { 0x0000, CMN_PLL1_FRACDIV },
   { 0x0005, CMN_PLL1_HIGH_THR },
   { 0x8000, CMN_PLL1_SS_CTRL1 },
   { 0x0000, CMN_PLL1_SS_CTRL2 },
   { 0x0020, CMN_PLL1_DSM_DIAG },
   { 0x1000, CMN_PLLSM1_USER_DEF_CTRL },
   { 0x0000, CMN_DIAG_PLL1_OVRD },
   { 0x0000, CMN_DIAG_PLL1_FBH_OVRD },
   { 0x0000, CMN_DIAG_PLL1_FBL_OVRD },
   { 0x0007, CMN_DIAG_PLL1_V2I_TUNE },
   { 0x0045, CMN_DIAG_PLL1_CP_TUNE },
   { 0x0008, CMN_DIAG_PLL1_LF_PROG },
   { 0x0001, CMN_DIAG_PLL1_PTATIS_TUNE1 },
   { 0x0001, CMN_DIAG_PLL1_PTATIS_TUNE2 },
   { 0x0001, CMN_DIAG_PLL1_INCLK_CTRL },
};
 
static const struct phy_reg dp_pll_hbr_ssc_cfg[] = {
   { 0x00f0, CMN_PLL1_VCOCAL_INIT },
   { 0x0018, CMN_PLL1_VCOCAL_ITER },
   { 0x30b4, CMN_PLL1_VCOCAL_START },
   { 0x00e0, CMN_PLL1_INTDIV },
   { 0xf479, CMN_PLL1_FRACDIV },
   { 0x0038, CMN_PLL1_HIGH_THR },
   { 0x0204, CMN_PLL1_SS_CTRL1 },
   { 0x7f03, CMN_PLL1_SS_CTRL2 },
   { 0x0020, CMN_PLL1_DSM_DIAG },
   { 0x1000, CMN_PLLSM1_USER_DEF_CTRL },
   { 0x0000, CMN_DIAG_PLL1_OVRD },
   { 0x0000, CMN_DIAG_PLL1_FBH_OVRD },
   { 0x0000, CMN_DIAG_PLL1_FBL_OVRD },
   { 0x0007, CMN_DIAG_PLL1_V2I_TUNE },
   { 0x0045, CMN_DIAG_PLL1_CP_TUNE },
   { 0x0008, CMN_DIAG_PLL1_LF_PROG },
   { 0x0001, CMN_DIAG_PLL1_PTATIS_TUNE1 },
   { 0x0001, CMN_DIAG_PLL1_PTATIS_TUNE2 },
   { 0x0001, CMN_DIAG_PLL1_INCLK_CTRL },
};
 
static const struct phy_reg dp_pll_hbr2_cfg[] = {
   { 0x00f0, CMN_PLL1_VCOCAL_INIT },
   { 0x0018, CMN_PLL1_VCOCAL_ITER },
   { 0x30b4, CMN_PLL1_VCOCAL_START },
   { 0x00e1, CMN_PLL1_INTDIV },
   { 0x0000, CMN_PLL1_FRACDIV },
   { 0x0005, CMN_PLL1_HIGH_THR },
   { 0x8000, CMN_PLL1_SS_CTRL1 },
   { 0x0000, CMN_PLL1_SS_CTRL2 },
   { 0x0020, CMN_PLL1_DSM_DIAG },
   { 0x1000, CMN_PLLSM1_USER_DEF_CTRL },
   { 0x0000, CMN_DIAG_PLL1_OVRD },
   { 0x0000, CMN_DIAG_PLL1_FBH_OVRD },
   { 0x0000, CMN_DIAG_PLL1_FBL_OVRD },
   { 0x0007, CMN_DIAG_PLL1_V2I_TUNE },
   { 0x0045, CMN_DIAG_PLL1_CP_TUNE },
   { 0x0008, CMN_DIAG_PLL1_LF_PROG },
   { 0x0001, CMN_DIAG_PLL1_PTATIS_TUNE1 },
   { 0x0001, CMN_DIAG_PLL1_PTATIS_TUNE2 },
   { 0x0001, CMN_DIAG_PLL1_INCLK_CTRL },
};
 
static const struct phy_reg dp_pll_hbr2_ssc_cfg[] = {
   { 0x00f0, CMN_PLL1_VCOCAL_INIT },
   { 0x0018, CMN_PLL1_VCOCAL_ITER },
   { 0x30b4, CMN_PLL1_VCOCAL_START },
   { 0x00e0, CMN_PLL1_INTDIV },
   { 0xf479, CMN_PLL1_FRACDIV },
   { 0x0038, CMN_PLL1_HIGH_THR },
   { 0x0204, CMN_PLL1_SS_CTRL1 },
   { 0x7f03, CMN_PLL1_SS_CTRL2 },
   { 0x0020, CMN_PLL1_DSM_DIAG },
   { 0x1000, CMN_PLLSM1_USER_DEF_CTRL },
   { 0x0000, CMN_DIAG_PLL1_OVRD },
   { 0x0000, CMN_DIAG_PLL1_FBH_OVRD },
   { 0x0000, CMN_DIAG_PLL1_FBL_OVRD },
   { 0x0007, CMN_DIAG_PLL1_V2I_TUNE },
   { 0x0045, CMN_DIAG_PLL1_CP_TUNE },
   { 0x0008, CMN_DIAG_PLL1_LF_PROG },
   { 0x0001, CMN_DIAG_PLL1_PTATIS_TUNE1 },
   { 0x0001, CMN_DIAG_PLL1_PTATIS_TUNE2 },
   { 0x0001, CMN_DIAG_PLL1_INCLK_CTRL },
};
 
static const struct rockchip_usb3phy_port_cfg rk3399_usb3phy_port_cfgs[] = {
   {
       .reg = 0xff7c0000,
       .typec_conn_dir    = { 0xe580, 0, 16 },
       .usb3tousb2_en    = { 0xe580, 3, 19 },
       .external_psm    = { 0xe588, 14, 30 },
       .pipe_status    = { 0xe5c0, 0, 0 },
       .usb3_host_disable = { 0x2434, 0, 16 },
       .usb3_host_port = { 0x2434, 12, 28 },
       .uphy_dp_sel    = { 0x6268, 19, 19 },
   },
   {
       .reg = 0xff800000,
       .typec_conn_dir    = { 0xe58c, 0, 16 },
       .usb3tousb2_en    = { 0xe58c, 3, 19 },
       .external_psm    = { 0xe594, 14, 30 },
       .pipe_status    = { 0xe5c0, 16, 16 },
       .usb3_host_disable = { 0x2444, 0, 16 },
       .usb3_host_port = { 0x2444, 12, 28 },
       .uphy_dp_sel    = { 0x6268, 3, 19 },
   },
   { /* sentinel */ }
};
 
/* default phy config */
static const struct phy_config tcphy_default_config[3][4] = {
   {{ .swing = 0x2a, .pe = 0x00 },
    { .swing = 0x1f, .pe = 0x15 },
    { .swing = 0x14, .pe = 0x22 },
    { .swing = 0x02, .pe = 0x2b } },
 
   {{ .swing = 0x21, .pe = 0x00 },
    { .swing = 0x12, .pe = 0x15 },
    { .swing = 0x02, .pe = 0x22 },
    { .swing = 0,    .pe = 0 } },
 
   {{ .swing = 0x15, .pe = 0x00 },
    { .swing = 0x00, .pe = 0x15 },
    { .swing = 0,    .pe = 0 },
    { .swing = 0,    .pe = 0 } },
};
 
enum phy_dp_power_state {
   PHY_DP_POWER_STATE_A0,
   PHY_DP_POWER_STATE_A1,
   PHY_DP_POWER_STATE_A2,
   PHY_DP_POWER_STATE_A3,
};
 
static int tcphy_dp_set_power_state(struct rockchip_typec_phy *tcphy,
                   enum phy_dp_power_state state)
{
   u32 ack, reg, sts = BIT(state);
   int ret;
 
   /*
    * Power state changes must not be requested until after the cmn_ready
    * signal has gone active.
    */
   reg = readl(tcphy->base + PMA_CMN_CTRL1);
   if (!(reg & CMN_READY)) {
       dev_err(tcphy->dev, "cmn_ready in the inactive state\n");
       return -EINVAL;
   }
 
   reg = readl(tcphy->base + PHY_DP_MODE_CTL);
   reg &= ~PHY_DP_POWER_STATE_MASK;
   reg |= sts;
   writel(reg, tcphy->base + PHY_DP_MODE_CTL);
 
   ret = readl_poll_timeout(tcphy->base + PHY_DP_MODE_CTL,
                ack, (((ack & PHY_DP_POWER_STATE_ACK_MASK) >>
                PHY_DP_POWER_STATE_ACK_SHIFT) == sts), 10,
                PHY_MODE_SET_TIMEOUT);
   if (ret < 0) {
       dev_err(tcphy->dev, "failed to enter power state %d\n", state);
       return ret;
   }
 
   return 0;
}
 
enum {
   PHY_DP_LANE_0,
   PHY_DP_LANE_1,
   PHY_DP_LANE_2,
   PHY_DP_LANE_3,
};
 
enum {
   PMA_IF_PIPE_PCS,
   PMA_IF_PHY_DP,
};
 
/*
 * For the TypeC PHY, the 4 lanes are mapping to the USB TypeC receptacle pins
 * as follows:
 *   -------------------------------------------------------------------
 *    PHY Lanes/Module Pins            TypeC Receptacle Pins
 *   -------------------------------------------------------------------
 *    Lane0 (tx_p/m_ln_0)            TX1+/TX1- (pins A2/A3)
 *    Lane1 (tx_rx_p/m_ln_1)            RX1+/RX1- (pins B11/B10)
 *    Lane2 (tx_rx_p/m_ln_2)            RX2+/RX2- (pins A11/A10)
 *    Lane3 (tx_p/m_ln_3)            TX2+/TX2- (pins B2/B3)
 *   -------------------------------------------------------------------
 *
 * USB and DP lanes mapping to TypeC PHY lanes for each of pin assignment
 * options (normal connector orientation) described in the VESA DisplayPort
 * Alt Mode on USB TypeC Standard as follows:
 *
 * ----------------------------------------------------------------------
 *    PHY Lanes    A    B    C    D    E    F
 * ----------------------------------------------------------------------
 *      0           ML1     SSTX    ML2     SSTX    ML2     SSTX
 *      1           ML3     SSRX    ML3     SSRX    ML3     SSRX
 *      2           ML2     ML1     ML0     ML0     ML0     ML0
 *      3           ML0     ML0     ML1     ML1     ML1     ML1
 * ----------------------------------------------------------------------
 */
static void tcphy_set_lane_mapping(struct rockchip_typec_phy *tcphy, u8 mode)
{
   /*
    * The PHY_PMA_LANE_CFG register is used to select whether a PMA lane
    * is mapped for USB or PHY DP. The PHY_PMA_LANE_CFG register is
    * configured based on a normal connector orientation. Logic in the
    * PHY automatically handles the flipped connector case based on the
    * setting of orientation of TypeC PHY.
    */
   if (mode == MODE_DFP_DP) {
       /* This maps to VESA DP Alt Mode pin assignments C and E. */
       writel(PMA_LANE3_DP_LANE_SEL(PHY_DP_LANE_1) |
              PMA_LANE3_INTERFACE_SEL(PMA_IF_PHY_DP) |
              PMA_LANE2_DP_LANE_SEL(PHY_DP_LANE_0) |
              PMA_LANE2_INTERFACE_SEL(PMA_IF_PHY_DP) |
              PMA_LANE1_DP_LANE_SEL(PHY_DP_LANE_3) |
              PMA_LANE1_INTERFACE_SEL(PMA_IF_PHY_DP) |
              PMA_LANE0_DP_LANE_SEL(PHY_DP_LANE_2) |
              PMA_LANE0_INTERFACE_SEL(PMA_IF_PHY_DP),
              tcphy->base + PHY_PMA_LANE_CFG);
   } else {
       /* This maps to VESA DP Alt Mode pin assignments D and F. */
       writel(PMA_LANE3_DP_LANE_SEL(PHY_DP_LANE_1) |
              PMA_LANE3_INTERFACE_SEL(PMA_IF_PHY_DP) |
              PMA_LANE2_DP_LANE_SEL(PHY_DP_LANE_0) |
              PMA_LANE2_INTERFACE_SEL(PMA_IF_PHY_DP) |
              PMA_LANE1_INTERFACE_SEL(PMA_IF_PIPE_PCS) |
              PMA_LANE0_INTERFACE_SEL(PMA_IF_PIPE_PCS),
              tcphy->base + PHY_PMA_LANE_CFG);
   }
}
 
static void tcphy_cfg_24m(struct rockchip_typec_phy *tcphy)
{
   u32 i, rdata;
 
   /*
    * cmn_ref_clk_sel = 3, select the 24Mhz for clk parent
    * cmn_psm_clk_dig_div = 2, set the clk division to 2
    */
   writel(0x830, tcphy->base + PMA_CMN_CTRL1);
   for (i = 0; i < 4; i++) {
       /*
        * The following PHY configuration assumes a 24 MHz reference
        * clock.
        */
       writel(0x90, tcphy->base + XCVR_DIAG_LANE_FCM_EN_MGN(i));
       writel(0x960, tcphy->base + TX_RCVDET_EN_TMR(i));
       writel(0x30, tcphy->base + TX_RCVDET_ST_TMR(i));
   }
 
   rdata = readl(tcphy->base + CMN_DIAG_HSCLK_SEL);
   rdata &= ~CLK_PLL_MASK;
   rdata |= CLK_PLL1_DIV2;
   writel(rdata, tcphy->base + CMN_DIAG_HSCLK_SEL);
}
 
static void tcphy_cfg_usb3_pll(struct rockchip_typec_phy *tcphy)
{
   u32 i;
 
   /* load the configuration of PLL0 */
   for (i = 0; i < ARRAY_SIZE(usb3_pll_cfg); i++)
       writel(usb3_pll_cfg[i].value,
              tcphy->base + usb3_pll_cfg[i].addr);
}
 
static void tcphy_cfg_dp_pll(struct rockchip_typec_phy *tcphy, int link_rate)
{
   const struct phy_reg *phy_cfg;
   u32 clk_ctrl;
   u32 i, cfg_size, hsclk_sel;
 
   hsclk_sel = readl(tcphy->base + CMN_DIAG_HSCLK_SEL);
   hsclk_sel &= ~CLK_PLL_MASK;
 
   switch (link_rate) {
   case 540000:
       clk_ctrl = DP_PLL_DATA_RATE_HBR2;
       hsclk_sel |= CLK_PLL1_DIV1;
       phy_cfg = dp_pll_hbr2_cfg;
       cfg_size = ARRAY_SIZE(dp_pll_hbr2_cfg);
       break;
   case 270000:
       clk_ctrl = DP_PLL_DATA_RATE_HBR;
       hsclk_sel |= CLK_PLL1_DIV2;
       phy_cfg = dp_pll_hbr_cfg;
       cfg_size = ARRAY_SIZE(dp_pll_hbr_cfg);
       break;
   case 162000:
   default:
       clk_ctrl = DP_PLL_DATA_RATE_RBR;
       hsclk_sel |= CLK_PLL1_DIV2;
       phy_cfg = dp_pll_rbr_cfg;
       cfg_size = ARRAY_SIZE(dp_pll_rbr_cfg);
       break;
   }
 
   clk_ctrl |= DP_PLL_CLOCK_ENABLE | DP_PLL_ENABLE;
   writel(clk_ctrl, tcphy->base + PHY_DP_CLK_CTL);
   writel(hsclk_sel, tcphy->base + CMN_DIAG_HSCLK_SEL);
 
   /* load the configuration of PLL1 */
   for (i = 0; i < cfg_size; i++)
       writel(phy_cfg[i].value, tcphy->base + phy_cfg[i].addr);
}
 
static void tcphy_tx_usb3_cfg_lane(struct rockchip_typec_phy *tcphy, u32 lane)
{
   writel(0x7799, tcphy->base + TX_PSC_A0(lane));
   writel(0x7798, tcphy->base + TX_PSC_A1(lane));
   writel(0x5098, tcphy->base + TX_PSC_A2(lane));
   writel(0x5098, tcphy->base + TX_PSC_A3(lane));
   writel(0, tcphy->base + TX_TXCC_MGNFS_MULT_000(lane));
   writel(0xbf, tcphy->base + XCVR_DIAG_BIDI_CTRL(lane));
}
 
static void tcphy_rx_usb3_cfg_lane(struct rockchip_typec_phy *tcphy, u32 lane)
{
   writel(0xa6fd, tcphy->base + RX_PSC_A0(lane));
   writel(0xa6fd, tcphy->base + RX_PSC_A1(lane));
   writel(0xa410, tcphy->base + RX_PSC_A2(lane));
   writel(0x2410, tcphy->base + RX_PSC_A3(lane));
   writel(0x23ff, tcphy->base + RX_PSC_CAL(lane));
   writel(0x13, tcphy->base + RX_SIGDET_HL_FILT_TMR(lane));
   writel(0x03e7, tcphy->base + RX_REE_CTRL_DATA_MASK(lane));
   writel(0x1004, tcphy->base + RX_DIAG_SIGDET_TUNE(lane));
   writel(0x2010, tcphy->base + RX_PSC_RDY(lane));
   writel(0xfb, tcphy->base + XCVR_DIAG_BIDI_CTRL(lane));
}
 
static void tcphy_dp_cfg_lane(struct rockchip_typec_phy *tcphy, u32 lane)
{
   writel(0xbefc, tcphy->base + XCVR_PSM_RCTRL(lane));
   writel(0x6799, tcphy->base + TX_PSC_A0(lane));
   writel(0x6798, tcphy->base + TX_PSC_A1(lane));
   writel(0x98, tcphy->base + TX_PSC_A2(lane));
   writel(0x98, tcphy->base + TX_PSC_A3(lane));
}
 
static int rockchip_dp_phy_set_voltages(struct rockchip_typec_phy *tcphy,
                   struct phy_configure_opts_dp *dp)
{
   u8 i, j, lane;
   u32 val;
 
 
   if (dp->lanes == 4) {
       i = 0;
       j = 3;
   } else {
       if (tcphy->flip) {
           i = 0;
           j = 1;
       } else {
           i = 2;
           j = 3;
       }
   }
 
   for (lane = i; lane <= j; lane++) {
       writel(tcphy->config[dp->voltage[lane]][dp->pre[lane]].swing,
              tcphy->base + TX_TXCC_MGNFS_MULT_000(lane));
       writel(tcphy->config[dp->voltage[lane]][dp->pre[lane]].pe,
              tcphy->base + TX_TXCC_CPOST_MULT_00(lane));
 
       if (dp->voltage[lane] == 2 && dp->pre[lane] == 0 && dp->link_rate != 540000) {
           writel(0x700, tcphy->base + TX_DIAG_TX_DRV(lane));
           writel(0x13c, tcphy->base + TX_TXCC_CAL_SCLR_MULT(lane));
       } else {
           writel(0x128, tcphy->base + TX_TXCC_CAL_SCLR_MULT(lane));
           writel(0x0400, tcphy->base + TX_DIAG_TX_DRV(lane));
       }
 
       val = readl(tcphy->base + XCVR_DIAG_PLLDRC_CTRL(lane));
       val &= ~GENMASK(14, 12);
       val |= ((dp->link_rate == 540000) ? 0x5 : 0x6) << 12;
       writel(val, tcphy->base + XCVR_DIAG_PLLDRC_CTRL(lane));
   }
 
   return 0;
}
 
static int rockchip_dp_phy_set_lanes(struct rockchip_typec_phy *tcphy,
                    struct phy_configure_opts_dp *dp)
{
   u32 reg;
 
   /*
    * In cases where fewer than the configured number of DP lanes are
    * being used. PHY_DP_MODE_CTL[15:12] must be set to disable and
    * power-down the unused PHY DP lanes (and their mapped PMA lanes).
    * Set the bit ([15:12]) associated with each DP PHY lane(s) to be
    * disabled.
    */
   reg = readl(tcphy->base + PHY_DP_MODE_CTL);
   reg |= PHY_DP_LANE_DISABLE;
 
   switch (dp->lanes) {
   case 4:
       reg &= ~(PHY_DP_LANE_3_DISABLE | PHY_DP_LANE_2_DISABLE |
            PHY_DP_LANE_1_DISABLE | PHY_DP_LANE_0_DISABLE);
       break;
   case 2:
       reg &= ~(PHY_DP_LANE_1_DISABLE | PHY_DP_LANE_0_DISABLE);
       break;
   case 1:
       reg &= ~PHY_DP_LANE_0_DISABLE;
       break;
   default:
       return -EINVAL;
   }
 
   writel(reg, tcphy->base + PHY_DP_MODE_CTL);
 
   return 0;
}
 
static int rockchip_dp_phy_set_rate(struct rockchip_typec_phy *tcphy,
                   struct phy_configure_opts_dp *dp)
{
   const struct phy_reg *phy_cfg;
   u32 cmn_diag_hsclk_sel, phy_dp_clk_ctl, reg;
   u32 i, cfg_size;
   int ret;
 
   /* Place the PHY lanes in the A3 power state. */
   ret = tcphy_dp_set_power_state(tcphy, PHY_DP_POWER_STATE_A3);
   if (ret) {
       dev_err(tcphy->dev, "failed to enter A3 state: %d\n", ret);
       return ret;
   }
 
   /* Gate the PLL clocks from PMA */
   reg = readl(tcphy->base + PHY_DP_CLK_CTL);
   reg &= ~DP_PLL_CLOCK_ENABLE_MASK;
   reg |= DP_PLL_CLOCK_DISABLE;
   writel(reg, tcphy->base + PHY_DP_CLK_CTL);
 
   ret = readl_poll_timeout(tcphy->base + PHY_DP_CLK_CTL, reg,
                !(reg & DP_PLL_CLOCK_ENABLE_ACK),
                10, PHY_MODE_SET_TIMEOUT);
   if (ret) {
       dev_err(tcphy->dev, "wait DP PLL clock disabled timeout\n");
       return ret;
   }
 
   /* Disable the PLL */
   reg = readl(tcphy->base + PHY_DP_CLK_CTL);
   reg &= ~DP_PLL_ENABLE_MASK;
   reg |= DP_PLL_DISABLE;
   writel(reg, tcphy->base + PHY_DP_CLK_CTL);
 
   ret = readl_poll_timeout(tcphy->base + PHY_DP_CLK_CTL, reg,
                !(reg & DP_PLL_READY),
                10, PHY_MODE_SET_TIMEOUT);
   if (ret) {
       dev_err(tcphy->dev, "wait DP PLL not ready timeout\n");
       return ret;
   }
 
   /* Re-configure PHY registers for the new data rate */
   cmn_diag_hsclk_sel = readl(tcphy->base + CMN_DIAG_HSCLK_SEL);
   cmn_diag_hsclk_sel &= ~(GENMASK(5, 4) | GENMASK(1, 0));
 
   phy_dp_clk_ctl = readl(tcphy->base + PHY_DP_CLK_CTL);
   phy_dp_clk_ctl &= ~(GENMASK(15, 12) | GENMASK(11, 8));
 
   switch (dp->link_rate) {
   case 1620:
       cmn_diag_hsclk_sel |= (3 << 4) | (0 << 0);
       phy_dp_clk_ctl |= (2 << 12) | (4 << 8);
 
       phy_cfg = dp->ssc ? dp_pll_rbr_ssc_cfg : dp_pll_rbr_cfg;
       cfg_size = dp->ssc ? ARRAY_SIZE(dp_pll_rbr_ssc_cfg) :
                   ARRAY_SIZE(dp_pll_rbr_cfg);
       break;
   case 2700:
       cmn_diag_hsclk_sel |= (3 << 4) | (0 << 0);
       phy_dp_clk_ctl |= (2 << 12) | (4 << 8);
 
       phy_cfg = dp->ssc ? dp_pll_hbr_ssc_cfg : dp_pll_hbr_cfg;
       cfg_size = dp->ssc ? ARRAY_SIZE(dp_pll_hbr_ssc_cfg) :
                   ARRAY_SIZE(dp_pll_hbr_cfg);
       break;
   case 5400:
       cmn_diag_hsclk_sel |= (2 << 4) | (0 << 0);
       phy_dp_clk_ctl |= (1 << 12) | (2 << 8);
 
       phy_cfg = dp->ssc ? dp_pll_hbr2_ssc_cfg : dp_pll_hbr2_cfg;
       cfg_size = dp->ssc ? ARRAY_SIZE(dp_pll_hbr2_ssc_cfg) :
                   ARRAY_SIZE(dp_pll_hbr2_cfg);
       break;
   default:
       return -EINVAL;
   }
 
   writel(cmn_diag_hsclk_sel, tcphy->base + CMN_DIAG_HSCLK_SEL);
   writel(phy_dp_clk_ctl, tcphy->base + PHY_DP_CLK_CTL);
 
   /* load the configuration of PLL1 */
   for (i = 0; i < cfg_size; i++)
       writel(phy_cfg[i].value, tcphy->base + phy_cfg[i].addr);
 
   /* Enable the PLL */
   reg = readl(tcphy->base + PHY_DP_CLK_CTL);
   reg &= ~DP_PLL_ENABLE_MASK;
   reg |= DP_PLL_ENABLE;
   writel(reg, tcphy->base + PHY_DP_CLK_CTL);
 
   ret = readl_poll_timeout(tcphy->base + PHY_DP_CLK_CTL, reg,
                reg & DP_PLL_READY,
                10, PHY_MODE_SET_TIMEOUT);
   if (ret < 0) {
       dev_err(tcphy->dev, "wait DP PLL ready timeout\n");
       return ret;
   }
 
   /* Enable PMA PLL clocks */
   reg = readl(tcphy->base + PHY_DP_CLK_CTL);
   reg &= ~DP_PLL_CLOCK_ENABLE_MASK;
   reg |= DP_PLL_CLOCK_ENABLE;
   writel(reg, tcphy->base + PHY_DP_CLK_CTL);
 
   ret = readl_poll_timeout(tcphy->base + PHY_DP_CLK_CTL, reg,
                reg & DP_PLL_CLOCK_ENABLE_ACK,
                10, PHY_MODE_SET_TIMEOUT);
   if (ret) {
       dev_err(tcphy->dev, "wait DP PLL clock enabled timeout\n");
       return ret;
   }
 
   /* The PMA must go through the A2 power state upon a data rate change */
   ret = tcphy_dp_set_power_state(tcphy, PHY_DP_POWER_STATE_A2);
   if (ret) {
       dev_err(tcphy->dev, "failed to enter A2 state: %d\n", ret);
       return ret;
   }
 
   /* change the PHY power state to A0 */
   ret = tcphy_dp_set_power_state(tcphy, PHY_DP_POWER_STATE_A0);
   if (ret) {
       dev_err(tcphy->dev, "failed to enter A0 state: %d\n", ret);
       return ret;
   }
 
   return 0;
}
 
static inline int property_enable(struct rockchip_typec_phy *tcphy,
                 const struct usb3phy_reg *reg, bool en)
{
   u32 mask = 1 << reg->write_enable;
   u32 val = en << reg->enable_bit;
 
   return regmap_write(tcphy->grf_regs, reg->offset, val | mask);
}
 
static void tcphy_dp_aux_set_flip(struct rockchip_typec_phy *tcphy)
{
   u16 tx_ana_ctrl_reg_1;
 
   /*
    * Select the polarity of the xcvr:
    * 1, Reverses the polarity (If TYPEC, Pulls ups aux_p and pull
    * down aux_m)
    * 0, Normal polarity (if TYPEC, pulls up aux_m and pulls down
    * aux_p)
    */
   tx_ana_ctrl_reg_1 = readl(tcphy->base + TX_ANA_CTRL_REG_1);
   if (!tcphy->flip)
       tx_ana_ctrl_reg_1 |= AUXDA_POLARITY;
   else
       tx_ana_ctrl_reg_1 &= ~AUXDA_POLARITY;
   writel(tx_ana_ctrl_reg_1, tcphy->base + TX_ANA_CTRL_REG_1);
}
 
static void tcphy_dp_aux_calibration(struct rockchip_typec_phy *tcphy)
{
   u16 val;
   u16 tx_ana_ctrl_reg_1;
   u16 tx_ana_ctrl_reg_2;
   s32 pu_calib_code, pd_calib_code;
   s32 pu_adj, pd_adj;
   u16 calib;
 
   /*
    * Calculate calibration code as per docs: use an average of the
    * pull down and pull up.  Then add in adjustments.
    */
   val = readl(tcphy->base + CMN_TXPUCAL_CTRL);
   pu_calib_code = CMN_CALIB_CODE_POS(val);
   val = readl(tcphy->base + CMN_TXPDCAL_CTRL);
   pd_calib_code = CMN_CALIB_CODE_POS(val);
   val = readl(tcphy->base + CMN_TXPU_ADJ_CTRL);
   pu_adj = CMN_CALIB_CODE(val);
   val = readl(tcphy->base + CMN_TXPD_ADJ_CTRL);
   pd_adj = CMN_CALIB_CODE(val);
   calib = (pu_calib_code + pd_calib_code) / 2 + pu_adj + pd_adj;
 
   /* disable txda_cal_latch_en for rewrite the calibration values */
   tx_ana_ctrl_reg_1 = readl(tcphy->base + TX_ANA_CTRL_REG_1);
   tx_ana_ctrl_reg_1 &= ~TXDA_CAL_LATCH_EN;
   writel(tx_ana_ctrl_reg_1, tcphy->base + TX_ANA_CTRL_REG_1);
 
   /* write the calibration, then delay 10 ms as sample in docs */
   val = readl(tcphy->base + TX_DIG_CTRL_REG_2);
   val &= ~(TX_RESCAL_CODE_MASK << TX_RESCAL_CODE_OFFSET);
   val |= calib << TX_RESCAL_CODE_OFFSET;
   writel(val, tcphy->base + TX_DIG_CTRL_REG_2);
   usleep_range(10000, 10050);
 
   /*
    * Enable signal for latch that sample and holds calibration values.
    * Activate this signal for 1 clock cycle to sample new calibration
    * values.
    */
   tx_ana_ctrl_reg_1 |= TXDA_CAL_LATCH_EN;
   writel(tx_ana_ctrl_reg_1, tcphy->base + TX_ANA_CTRL_REG_1);
   usleep_range(150, 200);
 
   /* set TX Voltage Level and TX Deemphasis to 0 */
   writel(0, tcphy->base + PHY_DP_TX_CTL);
 
   /* re-enable decap */
   tx_ana_ctrl_reg_2 = XCVR_DECAP_EN;
   writel(tx_ana_ctrl_reg_2, tcphy->base + TX_ANA_CTRL_REG_2);
   udelay(1);
   tx_ana_ctrl_reg_2 |= XCVR_DECAP_EN_DEL;
   writel(tx_ana_ctrl_reg_2, tcphy->base + TX_ANA_CTRL_REG_2);
 
   writel(0, tcphy->base + TX_ANA_CTRL_REG_3);
 
   tx_ana_ctrl_reg_1 |= TXDA_UPHY_SUPPLY_EN;
   writel(tx_ana_ctrl_reg_1, tcphy->base + TX_ANA_CTRL_REG_1);
   udelay(1);
   tx_ana_ctrl_reg_1 |= TXDA_UPHY_SUPPLY_EN_DEL;
   writel(tx_ana_ctrl_reg_1, tcphy->base + TX_ANA_CTRL_REG_1);
 
   writel(0, tcphy->base + TX_ANA_CTRL_REG_5);
 
   /*
    * Programs txda_drv_ldo_prog[15:0], Sets driver LDO
    * voltage 16'h1001 for DP-AUX-TX and RX
    */
   writel(0x1001, tcphy->base + TX_ANA_CTRL_REG_4);
 
   /* re-enables Bandgap reference for LDO */
   tx_ana_ctrl_reg_1 |= TXDA_DRV_LDO_EN;
   writel(tx_ana_ctrl_reg_1, tcphy->base + TX_ANA_CTRL_REG_1);
   udelay(5);
   tx_ana_ctrl_reg_1 |= TXDA_BGREF_EN;
   writel(tx_ana_ctrl_reg_1, tcphy->base + TX_ANA_CTRL_REG_1);
 
   /*
    * re-enables the transmitter pre-driver, driver data selection MUX,
    * and receiver detect circuits.
    */
   tx_ana_ctrl_reg_2 |= TXDA_DRV_PREDRV_EN;
   writel(tx_ana_ctrl_reg_2, tcphy->base + TX_ANA_CTRL_REG_2);
   udelay(1);
   tx_ana_ctrl_reg_2 |= TXDA_DRV_PREDRV_EN_DEL;
   writel(tx_ana_ctrl_reg_2, tcphy->base + TX_ANA_CTRL_REG_2);
 
   /*
    * Do all the undocumented magic:
    * - Turn on TXDA_DP_AUX_EN, whatever that is, even though sample
    *   never shows this going on.
    * - Turn on TXDA_DECAP_EN (and TXDA_DECAP_EN_DEL) even though
    *   docs say for aux it's always 0.
    * - Turn off the LDO and BGREF, which we just spent time turning
    *   on above (???).
    *
    * Without this magic, things seem worse.
    */
   tx_ana_ctrl_reg_1 |= TXDA_DP_AUX_EN;
   tx_ana_ctrl_reg_1 |= TXDA_DECAP_EN;
   tx_ana_ctrl_reg_1 &= ~TXDA_DRV_LDO_EN;
   tx_ana_ctrl_reg_1 &= ~TXDA_BGREF_EN;
   writel(tx_ana_ctrl_reg_1, tcphy->base + TX_ANA_CTRL_REG_1);
   udelay(1);
   tx_ana_ctrl_reg_1 |= TXDA_DECAP_EN_DEL;
   writel(tx_ana_ctrl_reg_1, tcphy->base + TX_ANA_CTRL_REG_1);
 
   /*
    * Undo the work we did to set the LDO voltage.
    * This doesn't seem to help nor hurt, but it kinda goes with the
    * undocumented magic above.
    */
   writel(0, tcphy->base + TX_ANA_CTRL_REG_4);
 
   /* Don't set voltage swing to 400 mV peak to peak (differential) */
   writel(0, tcphy->base + TXDA_COEFF_CALC_CTRL);
 
   /* Init TXDA_CYA_AUXDA_CYA for unknown magic reasons */
   writel(0, tcphy->base + TXDA_CYA_AUXDA_CYA);
 
   /*
    * More undocumented magic, presumably the goal of which is to
    * make the "auxda_source_aux_oen" be ignored and instead to decide
    * about "high impedance state" based on what software puts in the
    * register TXDA_COEFF_CALC_CTRL (see TX_HIGH_Z).  Since we only
    * program that register once and we don't set the bit TX_HIGH_Z,
    * presumably the goal here is that we should never put the analog
    * driver in high impedance state.
    */
   val = readl(tcphy->base + TX_DIG_CTRL_REG_2);
   val |= TX_HIGH_Z_TM_EN;
   writel(val, tcphy->base + TX_DIG_CTRL_REG_2);
}
 
static int tcphy_cfg_usb3_to_usb2_only(struct rockchip_typec_phy *tcphy,
                      bool value)
{
   const struct rockchip_usb3phy_port_cfg *cfg = tcphy->port_cfgs;
 
   property_enable(tcphy, &cfg->usb3tousb2_en, value);
   property_enable(tcphy, &cfg->usb3_host_disable, value);
   property_enable(tcphy, &cfg->usb3_host_port, !value);
 
   return 0;
}
 
static int tcphy_phy_init(struct rockchip_typec_phy *tcphy, u8 mode)
{
   const struct rockchip_usb3phy_port_cfg *cfg = tcphy->port_cfgs;
   int ret, i;
   u32 val;
 
   ret = clk_prepare_enable(tcphy->clk_core);
   if (ret) {
       dev_err(tcphy->dev, "Failed to prepare_enable core clock\n");
       return ret;
   }
 
   ret = clk_prepare_enable(tcphy->clk_ref);
   if (ret) {
       dev_err(tcphy->dev, "Failed to prepare_enable ref clock\n");
       goto err_clk_core;
   }
 
   reset_control_deassert(tcphy->tcphy_rst);
 
   property_enable(tcphy, &cfg->typec_conn_dir, tcphy->flip);
   tcphy_dp_aux_set_flip(tcphy);
 
   tcphy_cfg_24m(tcphy);
   tcphy_set_lane_mapping(tcphy, mode);
 
   if (mode == MODE_DFP_DP) {
       tcphy_cfg_usb3_to_usb2_only(tcphy, true);
       tcphy_cfg_dp_pll(tcphy, DP_DEFAULT_RATE);
       for (i = 0; i < 4; i++)
           tcphy_dp_cfg_lane(tcphy, i);
   } else {
       tcphy_cfg_usb3_pll(tcphy);
       tcphy_cfg_dp_pll(tcphy, DP_DEFAULT_RATE);
       if (tcphy->flip) {
           tcphy_tx_usb3_cfg_lane(tcphy, 3);
           tcphy_rx_usb3_cfg_lane(tcphy, 2);
           tcphy_dp_cfg_lane(tcphy, 0);
           tcphy_dp_cfg_lane(tcphy, 1);
       } else {
           tcphy_tx_usb3_cfg_lane(tcphy, 0);
           tcphy_rx_usb3_cfg_lane(tcphy, 1);
           tcphy_dp_cfg_lane(tcphy, 2);
           tcphy_dp_cfg_lane(tcphy, 3);
       }
   }
 
   val = readl(tcphy->base + PHY_DP_MODE_CTL);
   val &= ~DP_MODE_MASK;
   val |= DP_MODE_ENTER_A2 | DP_LINK_RESET_DEASSERTED;
   writel(val, tcphy->base + PHY_DP_MODE_CTL);
 
   reset_control_deassert(tcphy->uphy_rst);
 
   ret = readx_poll_timeout(readl, tcphy->base + PMA_CMN_CTRL1,
                val, val & CMN_READY, 10,
                PHY_MODE_SET_TIMEOUT);
   if (ret < 0) {
       dev_err(tcphy->dev, "wait pma ready timeout\n");
       ret = -ETIMEDOUT;
       goto err_wait_pma;
   }
 
   reset_control_deassert(tcphy->pipe_rst);
 
   return 0;
 
err_wait_pma:
   reset_control_assert(tcphy->uphy_rst);
   reset_control_assert(tcphy->tcphy_rst);
   clk_disable_unprepare(tcphy->clk_ref);
err_clk_core:
   clk_disable_unprepare(tcphy->clk_core);
   return ret;
}
 
static void tcphy_phy_deinit(struct rockchip_typec_phy *tcphy)
{
   reset_control_assert(tcphy->tcphy_rst);
   reset_control_assert(tcphy->uphy_rst);
   reset_control_assert(tcphy->pipe_rst);
   clk_disable_unprepare(tcphy->clk_core);
   clk_disable_unprepare(tcphy->clk_ref);
}
 
static int tcphy_get_mode(struct rockchip_typec_phy *tcphy)
{
   return tcphy->new_mode;
}
 
static int tcphy_orien_sw_set(struct typec_switch *sw,
                 enum typec_orientation orien)
{
   struct rockchip_typec_phy *tcphy = typec_switch_get_drvdata(sw);
 
   mutex_lock(&tcphy->lock);
 
   if (orien == TYPEC_ORIENTATION_NONE) {
       tcphy->new_mode = MODE_DISCONNECT;
       goto unlock_ret;
   }
 
   tcphy->flip = (orien == TYPEC_ORIENTATION_REVERSE) ? true : false;
   tcphy->new_mode = MODE_DFP_USB;
 
unlock_ret:
   mutex_unlock(&tcphy->lock);
   return 0;
}
 
static int tcphy_setup_orien_switch(struct rockchip_typec_phy *tcphy)
{
   struct typec_switch_desc sw_desc = { };
 
   sw_desc.drvdata = tcphy;
   sw_desc.fwnode = dev_fwnode(tcphy->dev);
   sw_desc.set = tcphy_orien_sw_set;
 
   tcphy->sw = typec_switch_register(tcphy->dev, &sw_desc);
   if (IS_ERR(tcphy->sw)) {
       dev_err(tcphy->dev, "Error register typec orientation switch: %ld\n",
           PTR_ERR(tcphy->sw));
       return PTR_ERR(tcphy->sw);
   }
 
   return 0;
}
 
static void udphy_orien_switch_unregister(void *data)
{
   struct rockchip_typec_phy *tcphy = data;
 
   typec_switch_unregister(tcphy->sw);
}
 
static int _rockchip_usb3_phy_power_on(struct rockchip_typec_phy *tcphy)
{
   const struct rockchip_usb3phy_port_cfg *cfg = tcphy->port_cfgs;
   const struct usb3phy_reg *reg = &cfg->pipe_status;
   int timeout, new_mode, ret = 0;
   u32 val;
 
   mutex_lock(&tcphy->lock);
 
   new_mode = tcphy_get_mode(tcphy);
   if (new_mode < 0) {
       ret = new_mode;
       goto unlock_ret;
   }
 
   /* DP-only mode; fall back to USB2 */
   if (!(new_mode & (MODE_DFP_USB | MODE_UFP_USB))) {
       tcphy_cfg_usb3_to_usb2_only(tcphy, true);
       goto unlock_ret;
   }
 
   if (tcphy->mode == new_mode)
       goto unlock_ret;
 
   if (tcphy->mode == MODE_DISCONNECT) {
       ret = tcphy_phy_init(tcphy, new_mode);
       if (ret)
           goto unlock_ret;
   }
 
   /* wait TCPHY for pipe ready */
   for (timeout = 0; timeout < 100; timeout++) {
       regmap_read(tcphy->grf_regs, reg->offset, &val);
       if (!(val & BIT(reg->enable_bit))) {
           tcphy->mode |= new_mode & (MODE_DFP_USB | MODE_UFP_USB);
           /* enable usb3 host */
           tcphy_cfg_usb3_to_usb2_only(tcphy, false);
           goto unlock_ret;
       }
       usleep_range(10, 20);
   }
 
   if (tcphy->mode == MODE_DISCONNECT)
       tcphy_phy_deinit(tcphy);
 
   ret = -ETIMEDOUT;
 
unlock_ret:
   mutex_unlock(&tcphy->lock);
   return ret;
}
 
static int rockchip_usb3_phy_power_on(struct phy *phy)
{
   struct rockchip_typec_phy *tcphy = phy_get_drvdata(phy);
   int ret;
   int tries;
 
   for (tries = 0; tries < POWER_ON_TRIES; tries++) {
       ret = _rockchip_usb3_phy_power_on(tcphy);
       if (!ret)
           break;
   }
 
   if (tries && !ret)
       dev_info(tcphy->dev, "Needed %d loops to turn on\n", tries);
 
   return ret;
}
 
static int rockchip_usb3_phy_power_off(struct phy *phy)
{
   struct rockchip_typec_phy *tcphy = phy_get_drvdata(phy);
 
   mutex_lock(&tcphy->lock);
   tcphy_cfg_usb3_to_usb2_only(tcphy, false);
 
   if (tcphy->mode == MODE_DISCONNECT)
       goto unlock;
 
   tcphy->mode &= ~(MODE_UFP_USB | MODE_DFP_USB);
   if (tcphy->mode == MODE_DISCONNECT)
       tcphy_phy_deinit(tcphy);
 
unlock:
   mutex_unlock(&tcphy->lock);
   return 0;
}
 
static const struct phy_ops rockchip_usb3_phy_ops = {
   .power_on    = rockchip_usb3_phy_power_on,
   .power_off    = rockchip_usb3_phy_power_off,
   .owner        = THIS_MODULE,
};
 
static int rockchip_dp_phy_power_on(struct phy *phy)
{
   struct rockchip_typec_phy *tcphy = phy_get_drvdata(phy);
   const struct rockchip_usb3phy_port_cfg *cfg = tcphy->port_cfgs;
   int new_mode, ret = 0;
   u32 val;
 
   mutex_lock(&tcphy->lock);
 
   new_mode = tcphy_get_mode(tcphy);
   if (new_mode < 0) {
       ret = new_mode;
       goto unlock_ret;
   }
 
   if (!(new_mode & MODE_DFP_DP)) {
       ret = -ENODEV;
       goto unlock_ret;
   }
 
   if (tcphy->mode == new_mode)
       goto unlock_ret;
 
   /*
    * If the PHY has been power on, but the mode is not DP only mode,
    * re-init the PHY for setting all of 4 lanes to DP.
    */
   if (new_mode == MODE_DFP_DP && tcphy->mode != MODE_DISCONNECT) {
       tcphy_phy_deinit(tcphy);
       ret = tcphy_phy_init(tcphy, new_mode);
   } else if (tcphy->mode == MODE_DISCONNECT) {
       ret = tcphy_phy_init(tcphy, new_mode);
   }
   if (ret)
       goto unlock_ret;
 
   property_enable(tcphy, &cfg->uphy_dp_sel, 1);
 
   ret = readx_poll_timeout(readl, tcphy->base + PHY_DP_MODE_CTL,
                val, val & DP_MODE_A2_ACK, 1000,
                PHY_MODE_SET_TIMEOUT);
   if (ret < 0) {
       dev_err(tcphy->dev, "failed to wait TCPHY enter A2\n");
       goto power_on_finish;
   }
 
   tcphy_dp_aux_calibration(tcphy);
 
   /* enter A0 mode */
   ret = tcphy_dp_set_power_state(tcphy, PHY_DP_POWER_STATE_A0);
   if (ret) {
       dev_err(tcphy->dev, "failed to enter A0 power state\n");
       goto power_on_finish;
   }
 
   tcphy->mode |= MODE_DFP_DP;
 
power_on_finish:
   if (tcphy->mode == MODE_DISCONNECT)
       tcphy_phy_deinit(tcphy);
unlock_ret:
   mutex_unlock(&tcphy->lock);
   return ret;
}
 
static int rockchip_dp_phy_power_off(struct phy *phy)
{
   struct rockchip_typec_phy *tcphy = phy_get_drvdata(phy);
   int ret;
 
   mutex_lock(&tcphy->lock);
 
   if (tcphy->mode == MODE_DISCONNECT)
       goto unlock;
 
   tcphy->mode &= ~MODE_DFP_DP;
 
   ret = tcphy_dp_set_power_state(tcphy, PHY_DP_POWER_STATE_A2);
   if (ret) {
       dev_err(tcphy->dev, "failed to enter A2 power state\n");
       goto unlock;
   }
 
   if (tcphy->mode == MODE_DISCONNECT)
       tcphy_phy_deinit(tcphy);
 
unlock:
   mutex_unlock(&tcphy->lock);
   return 0;
}
 
static int rockchip_dp_phy_verify_config(struct rockchip_typec_phy *tcphy,
                    struct phy_configure_opts_dp *dp)
{
   u8 i;
 
   /* If changing link rate was required, verify it's supported. */
   if (dp->set_rate) {
       switch (dp->link_rate) {
       case 1620:
       case 2700:
       case 5400:
           /* valid bit rate */
           break;
       default:
           return -EINVAL;
       }
   }
 
   /* Verify lane count. */
   switch (dp->lanes) {
   case 1:
   case 2:
   case 4:
       /* valid lane count. */
       break;
   default:
       return -EINVAL;
   }
 
   /*
    * If changing voltages is required, check swing and pre-emphasis
    * levels, per-lane.
    */
   if (dp->set_voltages) {
       /* Lane count verified previously. */
       for (i = 0; i < dp->lanes; i++) {
           if (dp->voltage[i] > 3 || dp->pre[i] > 3)
               return -EINVAL;
 
           /* Sum of voltage swing and pre-emphasis levels cannot
            * exceed 3.
            */
           if (dp->voltage[i] + dp->pre[i] > 3)
               return -EINVAL;
       }
   }
 
   return 0;
}
 
static int rockchip_dp_phy_configure(struct phy *phy,
                   union phy_configure_opts *opts)
{
   struct rockchip_typec_phy *tcphy = phy_get_drvdata(phy);
   int ret;
 
   if (!phy->power_count)
       return -EPERM;
 
   ret = rockchip_dp_phy_verify_config(tcphy, &opts->dp);
   if (ret) {
       dev_err(&phy->dev, "invalid params for phy configure\n");
       return ret;
   }
 
   if (opts->dp.set_lanes) {
       ret = rockchip_dp_phy_set_lanes(tcphy, &opts->dp);
       if (ret) {
           dev_err(&phy->dev, "rockchip_dp_phy_set_lanes failed\n");
           return ret;
       }
   }
 
   if (opts->dp.set_rate) {
       ret = rockchip_dp_phy_set_rate(tcphy, &opts->dp);
       if (ret) {
           dev_err(&phy->dev, "rockchip_dp_phy_set_rate failed\n");
           return ret;
       }
   }
 
   if (opts->dp.set_voltages) {
       ret = rockchip_dp_phy_set_voltages(tcphy, &opts->dp);
       if (ret) {
           dev_err(&phy->dev, "rockchip_dp_phy_set_voltages failed\n");
           return ret;
       }
   }
 
   return 0;
}
 
static const struct phy_ops rockchip_dp_phy_ops = {
   .power_on    = rockchip_dp_phy_power_on,
   .power_off    = rockchip_dp_phy_power_off,
   .configure    = rockchip_dp_phy_configure,
   .owner        = THIS_MODULE,
};
 
static int tcphy_typec_mux_set(struct typec_mux *mux, struct typec_mux_state *state)
{
   struct rockchip_typec_phy *tcphy = typec_mux_get_drvdata(mux);
   struct typec_displayport_data *data;
   int hpd = 0;
 
   mutex_lock(&tcphy->lock);
 
   switch (state->mode) {
   case TYPEC_STATE_SAFE:
       fallthrough;
   case TYPEC_STATE_USB:
       tcphy->new_mode = MODE_DFP_USB;
       phy_set_bus_width(tcphy->phys[TYPEC_PHY_DP], 0);
       break;
   case TYPEC_DP_STATE_C:
   case TYPEC_DP_STATE_E:
       tcphy->new_mode = MODE_DFP_DP;
       data = state->data;
       hpd = !!(data->status & DP_STATUS_HPD_STATE);
       phy_set_bus_width(tcphy->phys[TYPEC_PHY_DP], hpd ? 4 : 0);
       break;
   case TYPEC_DP_STATE_D:
       tcphy->new_mode = MODE_DFP_DP | MODE_DFP_USB;
       data = state->data;
       hpd = !!(data->status & DP_STATUS_HPD_STATE);
       phy_set_bus_width(tcphy->phys[TYPEC_PHY_DP], hpd ? 2 : 0);
       break;
   default:
       break;
   }
 
   mutex_unlock(&tcphy->lock);
 
   return 0;
}
 
static int tcphy_setup_typec_mux(struct rockchip_typec_phy *tcphy)
{
   struct typec_mux_desc mux_desc = {};
 
   mux_desc.drvdata = tcphy;
   mux_desc.fwnode = dev_fwnode(tcphy->dev);
   mux_desc.set = tcphy_typec_mux_set;
 
   tcphy->mux = typec_mux_register(tcphy->dev, &mux_desc);
   if (IS_ERR(tcphy->mux)) {
       dev_err(tcphy->dev, "Error register typec mux: %ld\n",
           PTR_ERR(tcphy->mux));
       return PTR_ERR(tcphy->mux);
   }
 
   return 0;
}
 
static void tcphy_typec_mux_unregister(void *data)
{
   struct rockchip_typec_phy *tcphy = data;
 
   typec_mux_unregister(tcphy->mux);
}
 
static int tcphy_parse_dt(struct rockchip_typec_phy *tcphy,
             struct device *dev)
{
   int ret;
 
   tcphy->grf_regs = syscon_regmap_lookup_by_phandle(dev->of_node,
                             "rockchip,grf");
   if (IS_ERR(tcphy->grf_regs)) {
       dev_err(dev, "could not find grf dt node\n");
       return PTR_ERR(tcphy->grf_regs);
   }
 
   tcphy->clk_core = devm_clk_get(dev, "tcpdcore");
   if (IS_ERR(tcphy->clk_core)) {
       dev_err(dev, "could not get uphy core clock\n");
       return PTR_ERR(tcphy->clk_core);
   }
 
   tcphy->clk_ref = devm_clk_get(dev, "tcpdphy-ref");
   if (IS_ERR(tcphy->clk_ref)) {
       dev_err(dev, "could not get uphy ref clock\n");
       return PTR_ERR(tcphy->clk_ref);
   }
 
   tcphy->uphy_rst = devm_reset_control_get(dev, "uphy");
   if (IS_ERR(tcphy->uphy_rst)) {
       dev_err(dev, "no uphy_rst reset control found\n");
       return PTR_ERR(tcphy->uphy_rst);
   }
 
   tcphy->pipe_rst = devm_reset_control_get(dev, "uphy-pipe");
   if (IS_ERR(tcphy->pipe_rst)) {
       dev_err(dev, "no pipe_rst reset control found\n");
       return PTR_ERR(tcphy->pipe_rst);
   }
 
   tcphy->tcphy_rst = devm_reset_control_get(dev, "uphy-tcphy");
   if (IS_ERR(tcphy->tcphy_rst)) {
       dev_err(dev, "no tcphy_rst reset control found\n");
       return PTR_ERR(tcphy->tcphy_rst);
   }
 
   /*
    * check if phy_config pass from dts, if no,
    * use default phy config value.
    */
   ret = of_property_read_u32_array(dev->of_node, "rockchip,phy-config",
       (u32 *)tcphy->config, sizeof(tcphy->config) / sizeof(u32));
   if (ret)
       memcpy(tcphy->config, tcphy_default_config,
              sizeof(tcphy->config));
 
   return 0;
}
 
static void typec_phy_pre_init(struct rockchip_typec_phy *tcphy)
{
   const struct rockchip_usb3phy_port_cfg *cfg = tcphy->port_cfgs;
 
   reset_control_assert(tcphy->tcphy_rst);
   reset_control_assert(tcphy->uphy_rst);
   reset_control_assert(tcphy->pipe_rst);
 
   /* select external psm clock */
   property_enable(tcphy, &cfg->external_psm, 1);
   property_enable(tcphy, &cfg->usb3tousb2_en, 0);
 
   tcphy->mode = MODE_DISCONNECT;
}
 
static int rockchip_typec_phy_probe(struct platform_device *pdev)
{
   struct device *dev = &pdev->dev;
   struct device_node *np = dev->of_node;
   struct device_node *child_np;
   struct rockchip_typec_phy *tcphy;
   struct phy_provider *phy_provider;
   struct resource *res;
   const struct rockchip_usb3phy_port_cfg *phy_cfgs;
   const struct of_device_id *match;
   int index, ret;
 
   tcphy = devm_kzalloc(dev, sizeof(*tcphy), GFP_KERNEL);
   if (!tcphy)
       return -ENOMEM;
 
   match = of_match_device(dev->driver->of_match_table, dev);
   if (!match || !match->data) {
       dev_err(dev, "phy configs are not assigned!\n");
       return -EINVAL;
   }
 
   res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
   tcphy->base = devm_ioremap_resource(dev, res);
   if (IS_ERR(tcphy->base))
       return PTR_ERR(tcphy->base);
 
   phy_cfgs = match->data;
   /* find out a proper config which can be matched with dt. */
   index = 0;
   while (phy_cfgs[index].reg) {
       if (phy_cfgs[index].reg == res->start) {
           tcphy->port_cfgs = &phy_cfgs[index];
           break;
       }
 
       ++index;
   }
 
   if (!tcphy->port_cfgs) {
       dev_err(dev, "no phy-config can be matched with %pOFn node\n",
           np);
       return -EINVAL;
   }
 
   ret = tcphy_parse_dt(tcphy, dev);
   if (ret)
       return ret;
 
   tcphy->dev = dev;
   tcphy->new_mode = MODE_DFP_USB;
   platform_set_drvdata(pdev, tcphy);
   mutex_init(&tcphy->lock);
 
   typec_phy_pre_init(tcphy);
 
   if (device_property_present(dev, "orientation-switch")) {
       ret = tcphy_setup_orien_switch(tcphy);
       if (ret)
           return ret;
       ret = devm_add_action_or_reset(dev, udphy_orien_switch_unregister,
                          tcphy);
       if (ret)
           return ret;
   }
 
   if (device_property_present(dev, "svid")) {
       ret = tcphy_setup_typec_mux(tcphy);
       if (ret)
           return ret;
 
       ret = devm_add_action_or_reset(dev, tcphy_typec_mux_unregister, tcphy);
       if (ret)
           return ret;
   }
 
   pm_runtime_enable(dev);
 
   for_each_available_child_of_node(np, child_np) {
       struct phy *phy;
 
       if (!of_node_cmp(child_np->name, "dp-port")) {
           phy = devm_phy_create(dev, child_np,
                         &rockchip_dp_phy_ops);
           if (IS_ERR(phy)) {
               dev_err(dev, "failed to create phy: %s\n",
                   child_np->name);
               of_node_put(child_np);
               ret = PTR_ERR(phy);
               goto error;
           }
           tcphy->phys[TYPEC_PHY_DP] = phy;
       } else if (!of_node_cmp(child_np->name, "usb3-port")) {
           phy = devm_phy_create(dev, child_np,
                         &rockchip_usb3_phy_ops);
           if (IS_ERR(phy)) {
               dev_err(dev, "failed to create phy: %s\n",
                   child_np->name);
               of_node_put(child_np);
               ret = PTR_ERR(phy);
               goto error;
           }
           tcphy->phys[TYPEC_PHY_USB] = phy;
       } else {
           continue;
 
       }
 
       phy_set_drvdata(phy, tcphy);
   }
 
   phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
   if (IS_ERR(phy_provider)) {
       dev_err(dev, "Failed to register phy provider\n");
       ret = PTR_ERR(phy_provider);
       goto error;
   }
 
   return 0;
 
error:
   pm_runtime_disable(dev);
   return ret;
}
 
static int rockchip_typec_phy_remove(struct platform_device *pdev)
{
   pm_runtime_disable(&pdev->dev);
 
   return 0;
}
 
static const struct of_device_id rockchip_typec_phy_dt_ids[] = {
   {
       .compatible = "rockchip,rk3399-typec-phy",
       .data = &rk3399_usb3phy_port_cfgs
   },
   { /* sentinel */ }
};
 
MODULE_DEVICE_TABLE(of, rockchip_typec_phy_dt_ids);
 
static struct platform_driver rockchip_typec_phy_driver = {
   .probe        = rockchip_typec_phy_probe,
   .remove        = rockchip_typec_phy_remove,
   .driver        = {
       .name    = "rockchip-typec-phy",
       .of_match_table = rockchip_typec_phy_dt_ids,
   },
};
 
module_platform_driver(rockchip_typec_phy_driver);
 
MODULE_AUTHOR("Chris Zhong <zyw@rock-chips.com>");
MODULE_AUTHOR("Kever Yang <kever.yang@rock-chips.com>");
MODULE_DESCRIPTION("Rockchip USB TYPE-C PHY driver");
MODULE_LICENSE("GPL v2");