1c66ec88fSEmmanuel Vadot /* SPDX-License-Identifier: GPL-2.0 */ 2c66ec88fSEmmanuel Vadot #ifndef __DT_POWER_DELIVERY_H 3c66ec88fSEmmanuel Vadot #define __DT_POWER_DELIVERY_H 4c66ec88fSEmmanuel Vadot 5c66ec88fSEmmanuel Vadot /* Power delivery Power Data Object definitions */ 6c66ec88fSEmmanuel Vadot #define PDO_TYPE_FIXED 0 7c66ec88fSEmmanuel Vadot #define PDO_TYPE_BATT 1 8c66ec88fSEmmanuel Vadot #define PDO_TYPE_VAR 2 9c66ec88fSEmmanuel Vadot #define PDO_TYPE_APDO 3 10c66ec88fSEmmanuel Vadot 11c66ec88fSEmmanuel Vadot #define PDO_TYPE_SHIFT 30 12c66ec88fSEmmanuel Vadot #define PDO_TYPE_MASK 0x3 13c66ec88fSEmmanuel Vadot 14c66ec88fSEmmanuel Vadot #define PDO_TYPE(t) ((t) << PDO_TYPE_SHIFT) 15c66ec88fSEmmanuel Vadot 16c66ec88fSEmmanuel Vadot #define PDO_VOLT_MASK 0x3ff 17c66ec88fSEmmanuel Vadot #define PDO_CURR_MASK 0x3ff 18c66ec88fSEmmanuel Vadot #define PDO_PWR_MASK 0x3ff 19c66ec88fSEmmanuel Vadot 20c66ec88fSEmmanuel Vadot #define PDO_FIXED_DUAL_ROLE (1 << 29) /* Power role swap supported */ 21c66ec88fSEmmanuel Vadot #define PDO_FIXED_SUSPEND (1 << 28) /* USB Suspend supported (Source) */ 22c66ec88fSEmmanuel Vadot #define PDO_FIXED_HIGHER_CAP (1 << 28) /* Requires more than vSafe5V (Sink) */ 23c66ec88fSEmmanuel Vadot #define PDO_FIXED_EXTPOWER (1 << 27) /* Externally powered */ 24c66ec88fSEmmanuel Vadot #define PDO_FIXED_USB_COMM (1 << 26) /* USB communications capable */ 25c66ec88fSEmmanuel Vadot #define PDO_FIXED_DATA_SWAP (1 << 25) /* Data role swap supported */ 26c66ec88fSEmmanuel Vadot #define PDO_FIXED_VOLT_SHIFT 10 /* 50mV units */ 27c66ec88fSEmmanuel Vadot #define PDO_FIXED_CURR_SHIFT 0 /* 10mA units */ 28c66ec88fSEmmanuel Vadot 29c66ec88fSEmmanuel Vadot #define PDO_FIXED_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_FIXED_VOLT_SHIFT) 30c66ec88fSEmmanuel Vadot #define PDO_FIXED_CURR(ma) ((((ma) / 10) & PDO_CURR_MASK) << PDO_FIXED_CURR_SHIFT) 31c66ec88fSEmmanuel Vadot 32c66ec88fSEmmanuel Vadot #define PDO_FIXED(mv, ma, flags) \ 33c66ec88fSEmmanuel Vadot (PDO_TYPE(PDO_TYPE_FIXED) | (flags) | \ 34c66ec88fSEmmanuel Vadot PDO_FIXED_VOLT(mv) | PDO_FIXED_CURR(ma)) 35c66ec88fSEmmanuel Vadot 36c66ec88fSEmmanuel Vadot #define VSAFE5V 5000 /* mv units */ 37c66ec88fSEmmanuel Vadot 38c66ec88fSEmmanuel Vadot #define PDO_BATT_MAX_VOLT_SHIFT 20 /* 50mV units */ 39c66ec88fSEmmanuel Vadot #define PDO_BATT_MIN_VOLT_SHIFT 10 /* 50mV units */ 40c66ec88fSEmmanuel Vadot #define PDO_BATT_MAX_PWR_SHIFT 0 /* 250mW units */ 41c66ec88fSEmmanuel Vadot 42c66ec88fSEmmanuel Vadot #define PDO_BATT_MIN_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_BATT_MIN_VOLT_SHIFT) 43c66ec88fSEmmanuel Vadot #define PDO_BATT_MAX_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_BATT_MAX_VOLT_SHIFT) 44c66ec88fSEmmanuel Vadot #define PDO_BATT_MAX_POWER(mw) ((((mw) / 250) & PDO_PWR_MASK) << PDO_BATT_MAX_PWR_SHIFT) 45c66ec88fSEmmanuel Vadot 46c66ec88fSEmmanuel Vadot #define PDO_BATT(min_mv, max_mv, max_mw) \ 47c66ec88fSEmmanuel Vadot (PDO_TYPE(PDO_TYPE_BATT) | PDO_BATT_MIN_VOLT(min_mv) | \ 48c66ec88fSEmmanuel Vadot PDO_BATT_MAX_VOLT(max_mv) | PDO_BATT_MAX_POWER(max_mw)) 49c66ec88fSEmmanuel Vadot 50c66ec88fSEmmanuel Vadot #define PDO_VAR_MAX_VOLT_SHIFT 20 /* 50mV units */ 51c66ec88fSEmmanuel Vadot #define PDO_VAR_MIN_VOLT_SHIFT 10 /* 50mV units */ 52c66ec88fSEmmanuel Vadot #define PDO_VAR_MAX_CURR_SHIFT 0 /* 10mA units */ 53c66ec88fSEmmanuel Vadot 54c66ec88fSEmmanuel Vadot #define PDO_VAR_MIN_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_VAR_MIN_VOLT_SHIFT) 55c66ec88fSEmmanuel Vadot #define PDO_VAR_MAX_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_VAR_MAX_VOLT_SHIFT) 56c66ec88fSEmmanuel Vadot #define PDO_VAR_MAX_CURR(ma) ((((ma) / 10) & PDO_CURR_MASK) << PDO_VAR_MAX_CURR_SHIFT) 57c66ec88fSEmmanuel Vadot 58c66ec88fSEmmanuel Vadot #define PDO_VAR(min_mv, max_mv, max_ma) \ 59c66ec88fSEmmanuel Vadot (PDO_TYPE(PDO_TYPE_VAR) | PDO_VAR_MIN_VOLT(min_mv) | \ 60c66ec88fSEmmanuel Vadot PDO_VAR_MAX_VOLT(max_mv) | PDO_VAR_MAX_CURR(max_ma)) 61c66ec88fSEmmanuel Vadot 62c66ec88fSEmmanuel Vadot #define APDO_TYPE_PPS 0 63c66ec88fSEmmanuel Vadot 64c66ec88fSEmmanuel Vadot #define PDO_APDO_TYPE_SHIFT 28 /* Only valid value currently is 0x0 - PPS */ 65c66ec88fSEmmanuel Vadot #define PDO_APDO_TYPE_MASK 0x3 66c66ec88fSEmmanuel Vadot 67c66ec88fSEmmanuel Vadot #define PDO_APDO_TYPE(t) ((t) << PDO_APDO_TYPE_SHIFT) 68c66ec88fSEmmanuel Vadot 69c66ec88fSEmmanuel Vadot #define PDO_PPS_APDO_MAX_VOLT_SHIFT 17 /* 100mV units */ 70c66ec88fSEmmanuel Vadot #define PDO_PPS_APDO_MIN_VOLT_SHIFT 8 /* 100mV units */ 71c66ec88fSEmmanuel Vadot #define PDO_PPS_APDO_MAX_CURR_SHIFT 0 /* 50mA units */ 72c66ec88fSEmmanuel Vadot 73c66ec88fSEmmanuel Vadot #define PDO_PPS_APDO_VOLT_MASK 0xff 74c66ec88fSEmmanuel Vadot #define PDO_PPS_APDO_CURR_MASK 0x7f 75c66ec88fSEmmanuel Vadot 76c66ec88fSEmmanuel Vadot #define PDO_PPS_APDO_MIN_VOLT(mv) \ 77c66ec88fSEmmanuel Vadot ((((mv) / 100) & PDO_PPS_APDO_VOLT_MASK) << PDO_PPS_APDO_MIN_VOLT_SHIFT) 78c66ec88fSEmmanuel Vadot #define PDO_PPS_APDO_MAX_VOLT(mv) \ 79c66ec88fSEmmanuel Vadot ((((mv) / 100) & PDO_PPS_APDO_VOLT_MASK) << PDO_PPS_APDO_MAX_VOLT_SHIFT) 80c66ec88fSEmmanuel Vadot #define PDO_PPS_APDO_MAX_CURR(ma) \ 81c66ec88fSEmmanuel Vadot ((((ma) / 50) & PDO_PPS_APDO_CURR_MASK) << PDO_PPS_APDO_MAX_CURR_SHIFT) 82c66ec88fSEmmanuel Vadot 83c66ec88fSEmmanuel Vadot #define PDO_PPS_APDO(min_mv, max_mv, max_ma) \ 84c66ec88fSEmmanuel Vadot (PDO_TYPE(PDO_TYPE_APDO) | PDO_APDO_TYPE(APDO_TYPE_PPS) | \ 85c66ec88fSEmmanuel Vadot PDO_PPS_APDO_MIN_VOLT(min_mv) | PDO_PPS_APDO_MAX_VOLT(max_mv) | \ 86c66ec88fSEmmanuel Vadot PDO_PPS_APDO_MAX_CURR(max_ma)) 87c66ec88fSEmmanuel Vadot 885def4c47SEmmanuel Vadot /* 895def4c47SEmmanuel Vadot * Based on "Table 6-14 Fixed Supply PDO - Sink" of "USB Power Delivery Specification Revision 3.0, 905def4c47SEmmanuel Vadot * Version 1.2" 915def4c47SEmmanuel Vadot * Initial current capability of the new source when vSafe5V is applied. 925def4c47SEmmanuel Vadot */ 935def4c47SEmmanuel Vadot #define FRS_DEFAULT_POWER 1 945def4c47SEmmanuel Vadot #define FRS_5V_1P5A 2 955def4c47SEmmanuel Vadot #define FRS_5V_3A 3 965def4c47SEmmanuel Vadot 975def4c47SEmmanuel Vadot /* 985def4c47SEmmanuel Vadot * SVDM Identity Header 995def4c47SEmmanuel Vadot * -------------------- 1005def4c47SEmmanuel Vadot * <31> :: data capable as a USB host 1015def4c47SEmmanuel Vadot * <30> :: data capable as a USB device 1025def4c47SEmmanuel Vadot * <29:27> :: product type (UFP / Cable / VPD) 1035def4c47SEmmanuel Vadot * <26> :: modal operation supported (1b == yes) 1045def4c47SEmmanuel Vadot * <25:23> :: product type (DFP) (SVDM version 2.0+ only; set to zero in version 1.0) 1055def4c47SEmmanuel Vadot * <22:21> :: connector type (SVDM version 2.0+ only; set to zero in version 1.0) 1065def4c47SEmmanuel Vadot * <20:16> :: Reserved, Shall be set to zero 1075def4c47SEmmanuel Vadot * <15:0> :: USB-IF assigned VID for this cable vendor 1085def4c47SEmmanuel Vadot */ 109*2eb4d8dcSEmmanuel Vadot 110*2eb4d8dcSEmmanuel Vadot /* PD Rev2.0 definition */ 111*2eb4d8dcSEmmanuel Vadot #define IDH_PTYPE_UNDEF 0 112*2eb4d8dcSEmmanuel Vadot 1135def4c47SEmmanuel Vadot /* SOP Product Type (UFP) */ 1145def4c47SEmmanuel Vadot #define IDH_PTYPE_NOT_UFP 0 1155def4c47SEmmanuel Vadot #define IDH_PTYPE_HUB 1 1165def4c47SEmmanuel Vadot #define IDH_PTYPE_PERIPH 2 1175def4c47SEmmanuel Vadot #define IDH_PTYPE_PSD 3 1185def4c47SEmmanuel Vadot #define IDH_PTYPE_AMA 5 1195def4c47SEmmanuel Vadot 1205def4c47SEmmanuel Vadot /* SOP' Product Type (Cable Plug / VPD) */ 1215def4c47SEmmanuel Vadot #define IDH_PTYPE_NOT_CABLE 0 1225def4c47SEmmanuel Vadot #define IDH_PTYPE_PCABLE 3 1235def4c47SEmmanuel Vadot #define IDH_PTYPE_ACABLE 4 1245def4c47SEmmanuel Vadot #define IDH_PTYPE_VPD 6 1255def4c47SEmmanuel Vadot 1265def4c47SEmmanuel Vadot /* SOP Product Type (DFP) */ 1275def4c47SEmmanuel Vadot #define IDH_PTYPE_NOT_DFP 0 1285def4c47SEmmanuel Vadot #define IDH_PTYPE_DFP_HUB 1 1295def4c47SEmmanuel Vadot #define IDH_PTYPE_DFP_HOST 2 1305def4c47SEmmanuel Vadot #define IDH_PTYPE_DFP_PB 3 1315def4c47SEmmanuel Vadot 1325def4c47SEmmanuel Vadot #define VDO_IDH(usbh, usbd, ufp_cable, is_modal, dfp, conn, vid) \ 1335def4c47SEmmanuel Vadot ((usbh) << 31 | (usbd) << 30 | ((ufp_cable) & 0x7) << 27 \ 1345def4c47SEmmanuel Vadot | (is_modal) << 26 | ((dfp) & 0x7) << 23 | ((conn) & 0x3) << 21 \ 1355def4c47SEmmanuel Vadot | ((vid) & 0xffff)) 1365def4c47SEmmanuel Vadot 1375def4c47SEmmanuel Vadot /* 1385def4c47SEmmanuel Vadot * Cert Stat VDO 1395def4c47SEmmanuel Vadot * ------------- 1405def4c47SEmmanuel Vadot * <31:0> : USB-IF assigned XID for this cable 1415def4c47SEmmanuel Vadot */ 1425def4c47SEmmanuel Vadot #define VDO_CERT(xid) ((xid) & 0xffffffff) 1435def4c47SEmmanuel Vadot 1445def4c47SEmmanuel Vadot /* 1455def4c47SEmmanuel Vadot * Product VDO 1465def4c47SEmmanuel Vadot * ----------- 1475def4c47SEmmanuel Vadot * <31:16> : USB Product ID 1485def4c47SEmmanuel Vadot * <15:0> : USB bcdDevice 1495def4c47SEmmanuel Vadot */ 1505def4c47SEmmanuel Vadot #define VDO_PRODUCT(pid, bcd) (((pid) & 0xffff) << 16 | ((bcd) & 0xffff)) 1515def4c47SEmmanuel Vadot 1525def4c47SEmmanuel Vadot /* 1535def4c47SEmmanuel Vadot * UFP VDO (PD Revision 3.0+ only) 1545def4c47SEmmanuel Vadot * -------- 1555def4c47SEmmanuel Vadot * <31:29> :: UFP VDO version 1565def4c47SEmmanuel Vadot * <28> :: Reserved 1575def4c47SEmmanuel Vadot * <27:24> :: Device capability 1585def4c47SEmmanuel Vadot * <23:22> :: Connector type (10b == receptacle, 11b == captive plug) 1595def4c47SEmmanuel Vadot * <21:11> :: Reserved 1605def4c47SEmmanuel Vadot * <10:8> :: Vconn power (AMA only) 1615def4c47SEmmanuel Vadot * <7> :: Vconn required (AMA only, 0b == no, 1b == yes) 1625def4c47SEmmanuel Vadot * <6> :: Vbus required (AMA only, 0b == yes, 1b == no) 1635def4c47SEmmanuel Vadot * <5:3> :: Alternate modes 1645def4c47SEmmanuel Vadot * <2:0> :: USB highest speed 1655def4c47SEmmanuel Vadot */ 1665def4c47SEmmanuel Vadot /* UFP VDO Version */ 1675def4c47SEmmanuel Vadot #define UFP_VDO_VER1_2 2 1685def4c47SEmmanuel Vadot 1695def4c47SEmmanuel Vadot /* Device Capability */ 170*2eb4d8dcSEmmanuel Vadot #define DEV_USB2_CAPABLE (1 << 0) 171*2eb4d8dcSEmmanuel Vadot #define DEV_USB2_BILLBOARD (1 << 1) 172*2eb4d8dcSEmmanuel Vadot #define DEV_USB3_CAPABLE (1 << 2) 173*2eb4d8dcSEmmanuel Vadot #define DEV_USB4_CAPABLE (1 << 3) 1745def4c47SEmmanuel Vadot 1755def4c47SEmmanuel Vadot /* Connector Type */ 1765def4c47SEmmanuel Vadot #define UFP_RECEPTACLE 2 1775def4c47SEmmanuel Vadot #define UFP_CAPTIVE 3 1785def4c47SEmmanuel Vadot 1795def4c47SEmmanuel Vadot /* Vconn Power (AMA only, set to AMA_VCONN_NOT_REQ if Vconn is not required) */ 1805def4c47SEmmanuel Vadot #define AMA_VCONN_PWR_1W 0 1815def4c47SEmmanuel Vadot #define AMA_VCONN_PWR_1W5 1 1825def4c47SEmmanuel Vadot #define AMA_VCONN_PWR_2W 2 1835def4c47SEmmanuel Vadot #define AMA_VCONN_PWR_3W 3 1845def4c47SEmmanuel Vadot #define AMA_VCONN_PWR_4W 4 1855def4c47SEmmanuel Vadot #define AMA_VCONN_PWR_5W 5 1865def4c47SEmmanuel Vadot #define AMA_VCONN_PWR_6W 6 1875def4c47SEmmanuel Vadot 1885def4c47SEmmanuel Vadot /* Vconn Required (AMA only) */ 1895def4c47SEmmanuel Vadot #define AMA_VCONN_NOT_REQ 0 1905def4c47SEmmanuel Vadot #define AMA_VCONN_REQ 1 1915def4c47SEmmanuel Vadot 1925def4c47SEmmanuel Vadot /* Vbus Required (AMA only) */ 1935def4c47SEmmanuel Vadot #define AMA_VBUS_REQ 0 1945def4c47SEmmanuel Vadot #define AMA_VBUS_NOT_REQ 1 1955def4c47SEmmanuel Vadot 1965def4c47SEmmanuel Vadot /* Alternate Modes */ 1975def4c47SEmmanuel Vadot #define UFP_ALTMODE_NOT_SUPP 0 198*2eb4d8dcSEmmanuel Vadot #define UFP_ALTMODE_TBT3 (1 << 0) 199*2eb4d8dcSEmmanuel Vadot #define UFP_ALTMODE_RECFG (1 << 1) 200*2eb4d8dcSEmmanuel Vadot #define UFP_ALTMODE_NO_RECFG (1 << 2) 2015def4c47SEmmanuel Vadot 2025def4c47SEmmanuel Vadot /* USB Highest Speed */ 2035def4c47SEmmanuel Vadot #define UFP_USB2_ONLY 0 2045def4c47SEmmanuel Vadot #define UFP_USB32_GEN1 1 2055def4c47SEmmanuel Vadot #define UFP_USB32_4_GEN2 2 2065def4c47SEmmanuel Vadot #define UFP_USB4_GEN3 3 2075def4c47SEmmanuel Vadot 2085def4c47SEmmanuel Vadot #define VDO_UFP(ver, cap, conn, vcpwr, vcr, vbr, alt, spd) \ 2095def4c47SEmmanuel Vadot (((ver) & 0x7) << 29 | ((cap) & 0xf) << 24 | ((conn) & 0x3) << 22 \ 2105def4c47SEmmanuel Vadot | ((vcpwr) & 0x7) << 8 | (vcr) << 7 | (vbr) << 6 | ((alt) & 0x7) << 3 \ 2115def4c47SEmmanuel Vadot | ((spd) & 0x7)) 2125def4c47SEmmanuel Vadot 2135def4c47SEmmanuel Vadot /* 2145def4c47SEmmanuel Vadot * DFP VDO (PD Revision 3.0+ only) 2155def4c47SEmmanuel Vadot * -------- 2165def4c47SEmmanuel Vadot * <31:29> :: DFP VDO version 2175def4c47SEmmanuel Vadot * <28:27> :: Reserved 2185def4c47SEmmanuel Vadot * <26:24> :: Host capability 2195def4c47SEmmanuel Vadot * <23:22> :: Connector type (10b == receptacle, 11b == captive plug) 2205def4c47SEmmanuel Vadot * <21:5> :: Reserved 2215def4c47SEmmanuel Vadot * <4:0> :: Port number 2225def4c47SEmmanuel Vadot */ 2235def4c47SEmmanuel Vadot #define DFP_VDO_VER1_1 1 224*2eb4d8dcSEmmanuel Vadot #define HOST_USB2_CAPABLE (1 << 0) 225*2eb4d8dcSEmmanuel Vadot #define HOST_USB3_CAPABLE (1 << 1) 226*2eb4d8dcSEmmanuel Vadot #define HOST_USB4_CAPABLE (1 << 2) 2275def4c47SEmmanuel Vadot #define DFP_RECEPTACLE 2 2285def4c47SEmmanuel Vadot #define DFP_CAPTIVE 3 2295def4c47SEmmanuel Vadot 2305def4c47SEmmanuel Vadot #define VDO_DFP(ver, cap, conn, pnum) \ 2315def4c47SEmmanuel Vadot (((ver) & 0x7) << 29 | ((cap) & 0x7) << 24 | ((conn) & 0x3) << 22 \ 2325def4c47SEmmanuel Vadot | ((pnum) & 0x1f)) 2335def4c47SEmmanuel Vadot 2345def4c47SEmmanuel Vadot /* 235*2eb4d8dcSEmmanuel Vadot * Cable VDO (for both Passive and Active Cable VDO in PD Rev2.0) 236*2eb4d8dcSEmmanuel Vadot * --------- 237*2eb4d8dcSEmmanuel Vadot * <31:28> :: Cable HW version 238*2eb4d8dcSEmmanuel Vadot * <27:24> :: Cable FW version 239*2eb4d8dcSEmmanuel Vadot * <23:20> :: Reserved, Shall be set to zero 240*2eb4d8dcSEmmanuel Vadot * <19:18> :: type-C to Type-A/B/C/Captive (00b == A, 01 == B, 10 == C, 11 == Captive) 241*2eb4d8dcSEmmanuel Vadot * <17> :: Reserved, Shall be set to zero 242*2eb4d8dcSEmmanuel Vadot * <16:13> :: cable latency (0001 == <10ns(~1m length)) 243*2eb4d8dcSEmmanuel Vadot * <12:11> :: cable termination type (11b == both ends active VCONN req) 244*2eb4d8dcSEmmanuel Vadot * <10> :: SSTX1 Directionality support (0b == fixed, 1b == cfgable) 245*2eb4d8dcSEmmanuel Vadot * <9> :: SSTX2 Directionality support 246*2eb4d8dcSEmmanuel Vadot * <8> :: SSRX1 Directionality support 247*2eb4d8dcSEmmanuel Vadot * <7> :: SSRX2 Directionality support 248*2eb4d8dcSEmmanuel Vadot * <6:5> :: Vbus current handling capability (01b == 3A, 10b == 5A) 249*2eb4d8dcSEmmanuel Vadot * <4> :: Vbus through cable (0b == no, 1b == yes) 250*2eb4d8dcSEmmanuel Vadot * <3> :: SOP" controller present? (0b == no, 1b == yes) 251*2eb4d8dcSEmmanuel Vadot * <2:0> :: USB SS Signaling support 252*2eb4d8dcSEmmanuel Vadot * 253*2eb4d8dcSEmmanuel Vadot * Passive Cable VDO (PD Rev3.0+) 2545def4c47SEmmanuel Vadot * --------- 2555def4c47SEmmanuel Vadot * <31:28> :: Cable HW version 2565def4c47SEmmanuel Vadot * <27:24> :: Cable FW version 2575def4c47SEmmanuel Vadot * <23:21> :: VDO version 2585def4c47SEmmanuel Vadot * <20> :: Reserved, Shall be set to zero 2595def4c47SEmmanuel Vadot * <19:18> :: Type-C to Type-C/Captive (10b == C, 11b == Captive) 2605def4c47SEmmanuel Vadot * <17> :: Reserved, Shall be set to zero 2615def4c47SEmmanuel Vadot * <16:13> :: cable latency (0001 == <10ns(~1m length)) 2625def4c47SEmmanuel Vadot * <12:11> :: cable termination type (10b == Vconn not req, 01b == Vconn req) 2635def4c47SEmmanuel Vadot * <10:9> :: Maximum Vbus voltage (00b == 20V, 01b == 30V, 10b == 40V, 11b == 50V) 2645def4c47SEmmanuel Vadot * <8:7> :: Reserved, Shall be set to zero 2655def4c47SEmmanuel Vadot * <6:5> :: Vbus current handling capability (01b == 3A, 10b == 5A) 2665def4c47SEmmanuel Vadot * <4:3> :: Reserved, Shall be set to zero 2675def4c47SEmmanuel Vadot * <2:0> :: USB highest speed 2685def4c47SEmmanuel Vadot * 269*2eb4d8dcSEmmanuel Vadot * Active Cable VDO 1 (PD Rev3.0+) 2705def4c47SEmmanuel Vadot * --------- 2715def4c47SEmmanuel Vadot * <31:28> :: Cable HW version 2725def4c47SEmmanuel Vadot * <27:24> :: Cable FW version 2735def4c47SEmmanuel Vadot * <23:21> :: VDO version 2745def4c47SEmmanuel Vadot * <20> :: Reserved, Shall be set to zero 2755def4c47SEmmanuel Vadot * <19:18> :: Connector type (10b == C, 11b == Captive) 2765def4c47SEmmanuel Vadot * <17> :: Reserved, Shall be set to zero 2775def4c47SEmmanuel Vadot * <16:13> :: cable latency (0001 == <10ns(~1m length)) 2785def4c47SEmmanuel Vadot * <12:11> :: cable termination type (10b == one end active, 11b == both ends active VCONN req) 2795def4c47SEmmanuel Vadot * <10:9> :: Maximum Vbus voltage (00b == 20V, 01b == 30V, 10b == 40V, 11b == 50V) 2805def4c47SEmmanuel Vadot * <8> :: SBU supported (0b == supported, 1b == not supported) 2815def4c47SEmmanuel Vadot * <7> :: SBU type (0b == passive, 1b == active) 2825def4c47SEmmanuel Vadot * <6:5> :: Vbus current handling capability (01b == 3A, 10b == 5A) 2835def4c47SEmmanuel Vadot * <4> :: Vbus through cable (0b == no, 1b == yes) 2845def4c47SEmmanuel Vadot * <3> :: SOP" controller present? (0b == no, 1b == yes) 2855def4c47SEmmanuel Vadot * <2:0> :: USB highest speed 2865def4c47SEmmanuel Vadot */ 2875def4c47SEmmanuel Vadot /* Cable VDO Version */ 2885def4c47SEmmanuel Vadot #define CABLE_VDO_VER1_0 0 2895def4c47SEmmanuel Vadot #define CABLE_VDO_VER1_3 3 2905def4c47SEmmanuel Vadot 291*2eb4d8dcSEmmanuel Vadot /* Connector Type (_ATYPE and _BTYPE are for PD Rev2.0 only) */ 292*2eb4d8dcSEmmanuel Vadot #define CABLE_ATYPE 0 293*2eb4d8dcSEmmanuel Vadot #define CABLE_BTYPE 1 2945def4c47SEmmanuel Vadot #define CABLE_CTYPE 2 2955def4c47SEmmanuel Vadot #define CABLE_CAPTIVE 3 2965def4c47SEmmanuel Vadot 2975def4c47SEmmanuel Vadot /* Cable Latency */ 2985def4c47SEmmanuel Vadot #define CABLE_LATENCY_1M 1 2995def4c47SEmmanuel Vadot #define CABLE_LATENCY_2M 2 3005def4c47SEmmanuel Vadot #define CABLE_LATENCY_3M 3 3015def4c47SEmmanuel Vadot #define CABLE_LATENCY_4M 4 3025def4c47SEmmanuel Vadot #define CABLE_LATENCY_5M 5 3035def4c47SEmmanuel Vadot #define CABLE_LATENCY_6M 6 3045def4c47SEmmanuel Vadot #define CABLE_LATENCY_7M 7 3055def4c47SEmmanuel Vadot #define CABLE_LATENCY_7M_PLUS 8 3065def4c47SEmmanuel Vadot 3075def4c47SEmmanuel Vadot /* Cable Termination Type */ 3085def4c47SEmmanuel Vadot #define PCABLE_VCONN_NOT_REQ 0 3095def4c47SEmmanuel Vadot #define PCABLE_VCONN_REQ 1 3105def4c47SEmmanuel Vadot #define ACABLE_ONE_END 2 3115def4c47SEmmanuel Vadot #define ACABLE_BOTH_END 3 3125def4c47SEmmanuel Vadot 3135def4c47SEmmanuel Vadot /* Maximum Vbus Voltage */ 3145def4c47SEmmanuel Vadot #define CABLE_MAX_VBUS_20V 0 3155def4c47SEmmanuel Vadot #define CABLE_MAX_VBUS_30V 1 3165def4c47SEmmanuel Vadot #define CABLE_MAX_VBUS_40V 2 3175def4c47SEmmanuel Vadot #define CABLE_MAX_VBUS_50V 3 3185def4c47SEmmanuel Vadot 3195def4c47SEmmanuel Vadot /* Active Cable SBU Supported/Type */ 3205def4c47SEmmanuel Vadot #define ACABLE_SBU_SUPP 0 3215def4c47SEmmanuel Vadot #define ACABLE_SBU_NOT_SUPP 1 3225def4c47SEmmanuel Vadot #define ACABLE_SBU_PASSIVE 0 3235def4c47SEmmanuel Vadot #define ACABLE_SBU_ACTIVE 1 3245def4c47SEmmanuel Vadot 3255def4c47SEmmanuel Vadot /* Vbus Current Handling Capability */ 3265def4c47SEmmanuel Vadot #define CABLE_CURR_DEF 0 3275def4c47SEmmanuel Vadot #define CABLE_CURR_3A 1 3285def4c47SEmmanuel Vadot #define CABLE_CURR_5A 2 3295def4c47SEmmanuel Vadot 330*2eb4d8dcSEmmanuel Vadot /* USB SuperSpeed Signaling Support (PD Rev2.0) */ 331*2eb4d8dcSEmmanuel Vadot #define CABLE_USBSS_U2_ONLY 0 332*2eb4d8dcSEmmanuel Vadot #define CABLE_USBSS_U31_GEN1 1 333*2eb4d8dcSEmmanuel Vadot #define CABLE_USBSS_U31_GEN2 2 334*2eb4d8dcSEmmanuel Vadot 3355def4c47SEmmanuel Vadot /* USB Highest Speed */ 3365def4c47SEmmanuel Vadot #define CABLE_USB2_ONLY 0 3375def4c47SEmmanuel Vadot #define CABLE_USB32_GEN1 1 3385def4c47SEmmanuel Vadot #define CABLE_USB32_4_GEN2 2 3395def4c47SEmmanuel Vadot #define CABLE_USB4_GEN3 3 3405def4c47SEmmanuel Vadot 341*2eb4d8dcSEmmanuel Vadot #define VDO_CABLE(hw, fw, cbl, lat, term, tx1d, tx2d, rx1d, rx2d, cur, vps, sopp, usbss) \ 342*2eb4d8dcSEmmanuel Vadot (((hw) & 0x7) << 28 | ((fw) & 0x7) << 24 | ((cbl) & 0x3) << 18 \ 343*2eb4d8dcSEmmanuel Vadot | ((lat) & 0x7) << 13 | ((term) & 0x3) << 11 | (tx1d) << 10 \ 344*2eb4d8dcSEmmanuel Vadot | (tx2d) << 9 | (rx1d) << 8 | (rx2d) << 7 | ((cur) & 0x3) << 5 \ 345*2eb4d8dcSEmmanuel Vadot | (vps) << 4 | (sopp) << 3 | ((usbss) & 0x7)) 3465def4c47SEmmanuel Vadot #define VDO_PCABLE(hw, fw, ver, conn, lat, term, vbm, cur, spd) \ 3475def4c47SEmmanuel Vadot (((hw) & 0xf) << 28 | ((fw) & 0xf) << 24 | ((ver) & 0x7) << 21 \ 3485def4c47SEmmanuel Vadot | ((conn) & 0x3) << 18 | ((lat) & 0xf) << 13 | ((term) & 0x3) << 11 \ 3495def4c47SEmmanuel Vadot | ((vbm) & 0x3) << 9 | ((cur) & 0x3) << 5 | ((spd) & 0x7)) 3505def4c47SEmmanuel Vadot #define VDO_ACABLE1(hw, fw, ver, conn, lat, term, vbm, sbu, sbut, cur, vbt, sopp, spd) \ 3515def4c47SEmmanuel Vadot (((hw) & 0xf) << 28 | ((fw) & 0xf) << 24 | ((ver) & 0x7) << 21 \ 3525def4c47SEmmanuel Vadot | ((conn) & 0x3) << 18 | ((lat) & 0xf) << 13 | ((term) & 0x3) << 11 \ 3535def4c47SEmmanuel Vadot | ((vbm) & 0x3) << 9 | (sbu) << 8 | (sbut) << 7 | ((cur) & 0x3) << 5 \ 3545def4c47SEmmanuel Vadot | (vbt) << 4 | (sopp) << 3 | ((spd) & 0x7)) 3555def4c47SEmmanuel Vadot 3565def4c47SEmmanuel Vadot /* 3575def4c47SEmmanuel Vadot * Active Cable VDO 2 3585def4c47SEmmanuel Vadot * --------- 3595def4c47SEmmanuel Vadot * <31:24> :: Maximum operating temperature 3605def4c47SEmmanuel Vadot * <23:16> :: Shutdown temperature 3615def4c47SEmmanuel Vadot * <15> :: Reserved, Shall be set to zero 3625def4c47SEmmanuel Vadot * <14:12> :: U3/CLd power 3635def4c47SEmmanuel Vadot * <11> :: U3 to U0 transition mode (0b == direct, 1b == through U3S) 3645def4c47SEmmanuel Vadot * <10> :: Physical connection (0b == copper, 1b == optical) 3655def4c47SEmmanuel Vadot * <9> :: Active element (0b == redriver, 1b == retimer) 3665def4c47SEmmanuel Vadot * <8> :: USB4 supported (0b == yes, 1b == no) 3675def4c47SEmmanuel Vadot * <7:6> :: USB2 hub hops consumed 3685def4c47SEmmanuel Vadot * <5> :: USB2 supported (0b == yes, 1b == no) 3695def4c47SEmmanuel Vadot * <4> :: USB3.2 supported (0b == yes, 1b == no) 3705def4c47SEmmanuel Vadot * <3> :: USB lanes supported (0b == one lane, 1b == two lanes) 3715def4c47SEmmanuel Vadot * <2> :: Optically isolated active cable (0b == no, 1b == yes) 3725def4c47SEmmanuel Vadot * <1> :: Reserved, Shall be set to zero 3735def4c47SEmmanuel Vadot * <0> :: USB gen (0b == gen1, 1b == gen2+) 3745def4c47SEmmanuel Vadot */ 3755def4c47SEmmanuel Vadot /* U3/CLd Power*/ 3765def4c47SEmmanuel Vadot #define ACAB2_U3_CLD_10MW_PLUS 0 3775def4c47SEmmanuel Vadot #define ACAB2_U3_CLD_10MW 1 3785def4c47SEmmanuel Vadot #define ACAB2_U3_CLD_5MW 2 3795def4c47SEmmanuel Vadot #define ACAB2_U3_CLD_1MW 3 3805def4c47SEmmanuel Vadot #define ACAB2_U3_CLD_500UW 4 3815def4c47SEmmanuel Vadot #define ACAB2_U3_CLD_200UW 5 3825def4c47SEmmanuel Vadot #define ACAB2_U3_CLD_50UW 6 3835def4c47SEmmanuel Vadot 3845def4c47SEmmanuel Vadot /* Other Active Cable VDO 2 Fields */ 3855def4c47SEmmanuel Vadot #define ACAB2_U3U0_DIRECT 0 3865def4c47SEmmanuel Vadot #define ACAB2_U3U0_U3S 1 3875def4c47SEmmanuel Vadot #define ACAB2_PHY_COPPER 0 3885def4c47SEmmanuel Vadot #define ACAB2_PHY_OPTICAL 1 3895def4c47SEmmanuel Vadot #define ACAB2_REDRIVER 0 3905def4c47SEmmanuel Vadot #define ACAB2_RETIMER 1 3915def4c47SEmmanuel Vadot #define ACAB2_USB4_SUPP 0 3925def4c47SEmmanuel Vadot #define ACAB2_USB4_NOT_SUPP 1 3935def4c47SEmmanuel Vadot #define ACAB2_USB2_SUPP 0 3945def4c47SEmmanuel Vadot #define ACAB2_USB2_NOT_SUPP 1 3955def4c47SEmmanuel Vadot #define ACAB2_USB32_SUPP 0 3965def4c47SEmmanuel Vadot #define ACAB2_USB32_NOT_SUPP 1 3975def4c47SEmmanuel Vadot #define ACAB2_LANES_ONE 0 3985def4c47SEmmanuel Vadot #define ACAB2_LANES_TWO 1 3995def4c47SEmmanuel Vadot #define ACAB2_OPT_ISO_NO 0 4005def4c47SEmmanuel Vadot #define ACAB2_OPT_ISO_YES 1 4015def4c47SEmmanuel Vadot #define ACAB2_GEN_1 0 4025def4c47SEmmanuel Vadot #define ACAB2_GEN_2_PLUS 1 4035def4c47SEmmanuel Vadot 4045def4c47SEmmanuel Vadot #define VDO_ACABLE2(mtemp, stemp, u3p, trans, phy, ele, u4, hops, u2, u32, lane, iso, gen) \ 4055def4c47SEmmanuel Vadot (((mtemp) & 0xff) << 24 | ((stemp) & 0xff) << 16 | ((u3p) & 0x7) << 12 \ 4065def4c47SEmmanuel Vadot | (trans) << 11 | (phy) << 10 | (ele) << 9 | (u4) << 8 \ 4075def4c47SEmmanuel Vadot | ((hops) & 0x3) << 6 | (u2) << 5 | (u32) << 4 | (lane) << 3 \ 4085def4c47SEmmanuel Vadot | (iso) << 2 | (gen)) 4095def4c47SEmmanuel Vadot 4105def4c47SEmmanuel Vadot /* 411*2eb4d8dcSEmmanuel Vadot * AMA VDO (PD Rev2.0) 412*2eb4d8dcSEmmanuel Vadot * --------- 413*2eb4d8dcSEmmanuel Vadot * <31:28> :: Cable HW version 414*2eb4d8dcSEmmanuel Vadot * <27:24> :: Cable FW version 415*2eb4d8dcSEmmanuel Vadot * <23:12> :: Reserved, Shall be set to zero 416*2eb4d8dcSEmmanuel Vadot * <11> :: SSTX1 Directionality support (0b == fixed, 1b == cfgable) 417*2eb4d8dcSEmmanuel Vadot * <10> :: SSTX2 Directionality support 418*2eb4d8dcSEmmanuel Vadot * <9> :: SSRX1 Directionality support 419*2eb4d8dcSEmmanuel Vadot * <8> :: SSRX2 Directionality support 420*2eb4d8dcSEmmanuel Vadot * <7:5> :: Vconn power 421*2eb4d8dcSEmmanuel Vadot * <4> :: Vconn power required 422*2eb4d8dcSEmmanuel Vadot * <3> :: Vbus power required 423*2eb4d8dcSEmmanuel Vadot * <2:0> :: USB SS Signaling support 424*2eb4d8dcSEmmanuel Vadot */ 425*2eb4d8dcSEmmanuel Vadot #define VDO_AMA(hw, fw, tx1d, tx2d, rx1d, rx2d, vcpwr, vcr, vbr, usbss) \ 426*2eb4d8dcSEmmanuel Vadot (((hw) & 0x7) << 28 | ((fw) & 0x7) << 24 \ 427*2eb4d8dcSEmmanuel Vadot | (tx1d) << 11 | (tx2d) << 10 | (rx1d) << 9 | (rx2d) << 8 \ 428*2eb4d8dcSEmmanuel Vadot | ((vcpwr) & 0x7) << 5 | (vcr) << 4 | (vbr) << 3 \ 429*2eb4d8dcSEmmanuel Vadot | ((usbss) & 0x7)) 430*2eb4d8dcSEmmanuel Vadot 431*2eb4d8dcSEmmanuel Vadot #define PD_VDO_AMA_VCONN_REQ(vdo) (((vdo) >> 4) & 1) 432*2eb4d8dcSEmmanuel Vadot #define PD_VDO_AMA_VBUS_REQ(vdo) (((vdo) >> 3) & 1) 433*2eb4d8dcSEmmanuel Vadot 434*2eb4d8dcSEmmanuel Vadot #define AMA_USBSS_U2_ONLY 0 435*2eb4d8dcSEmmanuel Vadot #define AMA_USBSS_U31_GEN1 1 436*2eb4d8dcSEmmanuel Vadot #define AMA_USBSS_U31_GEN2 2 437*2eb4d8dcSEmmanuel Vadot #define AMA_USBSS_BBONLY 3 438*2eb4d8dcSEmmanuel Vadot 439*2eb4d8dcSEmmanuel Vadot /* 4405def4c47SEmmanuel Vadot * VPD VDO 4415def4c47SEmmanuel Vadot * --------- 4425def4c47SEmmanuel Vadot * <31:28> :: HW version 4435def4c47SEmmanuel Vadot * <27:24> :: FW version 4445def4c47SEmmanuel Vadot * <23:21> :: VDO version 4455def4c47SEmmanuel Vadot * <20:17> :: Reserved, Shall be set to zero 4465def4c47SEmmanuel Vadot * <16:15> :: Maximum Vbus voltage (00b == 20V, 01b == 30V, 10b == 40V, 11b == 50V) 4475def4c47SEmmanuel Vadot * <14> :: Charge through current support (0b == 3A, 1b == 5A) 4485def4c47SEmmanuel Vadot * <13> :: Reserved, Shall be set to zero 4495def4c47SEmmanuel Vadot * <12:7> :: Vbus impedance 4505def4c47SEmmanuel Vadot * <6:1> :: Ground impedance 4515def4c47SEmmanuel Vadot * <0> :: Charge through support (0b == no, 1b == yes) 4525def4c47SEmmanuel Vadot */ 4535def4c47SEmmanuel Vadot #define VPD_VDO_VER1_0 0 4545def4c47SEmmanuel Vadot #define VPD_MAX_VBUS_20V 0 4555def4c47SEmmanuel Vadot #define VPD_MAX_VBUS_30V 1 4565def4c47SEmmanuel Vadot #define VPD_MAX_VBUS_40V 2 4575def4c47SEmmanuel Vadot #define VPD_MAX_VBUS_50V 3 4585def4c47SEmmanuel Vadot #define VPDCT_CURR_3A 0 4595def4c47SEmmanuel Vadot #define VPDCT_CURR_5A 1 4605def4c47SEmmanuel Vadot #define VPDCT_NOT_SUPP 0 4615def4c47SEmmanuel Vadot #define VPDCT_SUPP 1 4625def4c47SEmmanuel Vadot 4635def4c47SEmmanuel Vadot #define VDO_VPD(hw, fw, ver, vbm, curr, vbi, gi, ct) \ 4645def4c47SEmmanuel Vadot (((hw) & 0xf) << 28 | ((fw) & 0xf) << 24 | ((ver) & 0x7) << 21 \ 4655def4c47SEmmanuel Vadot | ((vbm) & 0x3) << 15 | (curr) << 14 | ((vbi) & 0x3f) << 7 \ 4665def4c47SEmmanuel Vadot | ((gi) & 0x3f) << 1 | (ct)) 4675def4c47SEmmanuel Vadot 468c66ec88fSEmmanuel Vadot #endif /* __DT_POWER_DELIVERY_H */ 469