Path: blob/main/sys/contrib/device-tree/include/dt-bindings/usb/pd.h
48406 views
/* SPDX-License-Identifier: GPL-2.0 */1#ifndef __DT_POWER_DELIVERY_H2#define __DT_POWER_DELIVERY_H34/* Power delivery Power Data Object definitions */5#define PDO_TYPE_FIXED 06#define PDO_TYPE_BATT 17#define PDO_TYPE_VAR 28#define PDO_TYPE_APDO 3910#define PDO_TYPE_SHIFT 3011#define PDO_TYPE_MASK 0x31213#define PDO_TYPE(t) ((t) << PDO_TYPE_SHIFT)1415#define PDO_VOLT_MASK 0x3ff16#define PDO_CURR_MASK 0x3ff17#define PDO_PWR_MASK 0x3ff1819#define PDO_FIXED_DUAL_ROLE (1 << 29) /* Power role swap supported */20#define PDO_FIXED_SUSPEND (1 << 28) /* USB Suspend supported (Source) */21#define PDO_FIXED_HIGHER_CAP (1 << 28) /* Requires more than vSafe5V (Sink) */22#define PDO_FIXED_EXTPOWER (1 << 27) /* Externally powered */23#define PDO_FIXED_USB_COMM (1 << 26) /* USB communications capable */24#define PDO_FIXED_DATA_SWAP (1 << 25) /* Data role swap supported */25#define PDO_FIXED_VOLT_SHIFT 10 /* 50mV units */26#define PDO_FIXED_CURR_SHIFT 0 /* 10mA units */2728#define PDO_FIXED_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_FIXED_VOLT_SHIFT)29#define PDO_FIXED_CURR(ma) ((((ma) / 10) & PDO_CURR_MASK) << PDO_FIXED_CURR_SHIFT)3031#define PDO_FIXED(mv, ma, flags) \32(PDO_TYPE(PDO_TYPE_FIXED) | (flags) | \33PDO_FIXED_VOLT(mv) | PDO_FIXED_CURR(ma))3435#define VSAFE5V 5000 /* mv units */3637#define PDO_BATT_MAX_VOLT_SHIFT 20 /* 50mV units */38#define PDO_BATT_MIN_VOLT_SHIFT 10 /* 50mV units */39#define PDO_BATT_MAX_PWR_SHIFT 0 /* 250mW units */4041#define PDO_BATT_MIN_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_BATT_MIN_VOLT_SHIFT)42#define PDO_BATT_MAX_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_BATT_MAX_VOLT_SHIFT)43#define PDO_BATT_MAX_POWER(mw) ((((mw) / 250) & PDO_PWR_MASK) << PDO_BATT_MAX_PWR_SHIFT)4445#define PDO_BATT(min_mv, max_mv, max_mw) \46(PDO_TYPE(PDO_TYPE_BATT) | PDO_BATT_MIN_VOLT(min_mv) | \47PDO_BATT_MAX_VOLT(max_mv) | PDO_BATT_MAX_POWER(max_mw))4849#define PDO_VAR_MAX_VOLT_SHIFT 20 /* 50mV units */50#define PDO_VAR_MIN_VOLT_SHIFT 10 /* 50mV units */51#define PDO_VAR_MAX_CURR_SHIFT 0 /* 10mA units */5253#define PDO_VAR_MIN_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_VAR_MIN_VOLT_SHIFT)54#define PDO_VAR_MAX_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_VAR_MAX_VOLT_SHIFT)55#define PDO_VAR_MAX_CURR(ma) ((((ma) / 10) & PDO_CURR_MASK) << PDO_VAR_MAX_CURR_SHIFT)5657#define PDO_VAR(min_mv, max_mv, max_ma) \58(PDO_TYPE(PDO_TYPE_VAR) | PDO_VAR_MIN_VOLT(min_mv) | \59PDO_VAR_MAX_VOLT(max_mv) | PDO_VAR_MAX_CURR(max_ma))6061#define APDO_TYPE_PPS 06263#define PDO_APDO_TYPE_SHIFT 28 /* Only valid value currently is 0x0 - PPS */64#define PDO_APDO_TYPE_MASK 0x36566#define PDO_APDO_TYPE(t) ((t) << PDO_APDO_TYPE_SHIFT)6768#define PDO_PPS_APDO_MAX_VOLT_SHIFT 17 /* 100mV units */69#define PDO_PPS_APDO_MIN_VOLT_SHIFT 8 /* 100mV units */70#define PDO_PPS_APDO_MAX_CURR_SHIFT 0 /* 50mA units */7172#define PDO_PPS_APDO_VOLT_MASK 0xff73#define PDO_PPS_APDO_CURR_MASK 0x7f7475#define PDO_PPS_APDO_MIN_VOLT(mv) \76((((mv) / 100) & PDO_PPS_APDO_VOLT_MASK) << PDO_PPS_APDO_MIN_VOLT_SHIFT)77#define PDO_PPS_APDO_MAX_VOLT(mv) \78((((mv) / 100) & PDO_PPS_APDO_VOLT_MASK) << PDO_PPS_APDO_MAX_VOLT_SHIFT)79#define PDO_PPS_APDO_MAX_CURR(ma) \80((((ma) / 50) & PDO_PPS_APDO_CURR_MASK) << PDO_PPS_APDO_MAX_CURR_SHIFT)8182#define PDO_PPS_APDO(min_mv, max_mv, max_ma) \83(PDO_TYPE(PDO_TYPE_APDO) | PDO_APDO_TYPE(APDO_TYPE_PPS) | \84PDO_PPS_APDO_MIN_VOLT(min_mv) | PDO_PPS_APDO_MAX_VOLT(max_mv) | \85PDO_PPS_APDO_MAX_CURR(max_ma))8687/*88* Based on "Table 6-14 Fixed Supply PDO - Sink" of "USB Power Delivery Specification Revision 3.0,89* Version 1.2"90* Initial current capability of the new source when vSafe5V is applied.91*/92#define FRS_DEFAULT_POWER 193#define FRS_5V_1P5A 294#define FRS_5V_3A 39596/*97* SVDM Identity Header98* --------------------99* <31> :: data capable as a USB host100* <30> :: data capable as a USB device101* <29:27> :: product type (UFP / Cable / VPD)102* <26> :: modal operation supported (1b == yes)103* <25:23> :: product type (DFP) (SVDM version 2.0+ only; set to zero in version 1.0)104* <22:21> :: connector type (SVDM version 2.0+ only; set to zero in version 1.0)105* <20:16> :: Reserved, Shall be set to zero106* <15:0> :: USB-IF assigned VID for this cable vendor107*/108109/* PD Rev2.0 definition */110#define IDH_PTYPE_UNDEF 0111112/* SOP Product Type (UFP) */113#define IDH_PTYPE_NOT_UFP 0114#define IDH_PTYPE_HUB 1115#define IDH_PTYPE_PERIPH 2116#define IDH_PTYPE_PSD 3117#define IDH_PTYPE_AMA 5118119/* SOP' Product Type (Cable Plug / VPD) */120#define IDH_PTYPE_NOT_CABLE 0121#define IDH_PTYPE_PCABLE 3122#define IDH_PTYPE_ACABLE 4123#define IDH_PTYPE_VPD 6124125/* SOP Product Type (DFP) */126#define IDH_PTYPE_NOT_DFP 0127#define IDH_PTYPE_DFP_HUB 1128#define IDH_PTYPE_DFP_HOST 2129#define IDH_PTYPE_DFP_PB 3130131#define VDO_IDH(usbh, usbd, ufp_cable, is_modal, dfp, conn, vid) \132((usbh) << 31 | (usbd) << 30 | ((ufp_cable) & 0x7) << 27 \133| (is_modal) << 26 | ((dfp) & 0x7) << 23 | ((conn) & 0x3) << 21 \134| ((vid) & 0xffff))135136/*137* Cert Stat VDO138* -------------139* <31:0> : USB-IF assigned XID for this cable140*/141#define VDO_CERT(xid) ((xid) & 0xffffffff)142143/*144* Product VDO145* -----------146* <31:16> : USB Product ID147* <15:0> : USB bcdDevice148*/149#define VDO_PRODUCT(pid, bcd) (((pid) & 0xffff) << 16 | ((bcd) & 0xffff))150151/*152* UFP VDO (PD Revision 3.0+ only)153* --------154* <31:29> :: UFP VDO version155* <28> :: Reserved156* <27:24> :: Device capability157* <23:22> :: Connector type (10b == receptacle, 11b == captive plug)158* <21:11> :: Reserved159* <10:8> :: Vconn power (AMA only)160* <7> :: Vconn required (AMA only, 0b == no, 1b == yes)161* <6> :: Vbus required (AMA only, 0b == yes, 1b == no)162* <5:3> :: Alternate modes163* <2:0> :: USB highest speed164*/165/* UFP VDO Version */166#define UFP_VDO_VER1_2 2167168/* Device Capability */169#define DEV_USB2_CAPABLE (1 << 0)170#define DEV_USB2_BILLBOARD (1 << 1)171#define DEV_USB3_CAPABLE (1 << 2)172#define DEV_USB4_CAPABLE (1 << 3)173174/* Connector Type */175#define UFP_RECEPTACLE 2176#define UFP_CAPTIVE 3177178/* Vconn Power (AMA only, set to AMA_VCONN_NOT_REQ if Vconn is not required) */179#define AMA_VCONN_PWR_1W 0180#define AMA_VCONN_PWR_1W5 1181#define AMA_VCONN_PWR_2W 2182#define AMA_VCONN_PWR_3W 3183#define AMA_VCONN_PWR_4W 4184#define AMA_VCONN_PWR_5W 5185#define AMA_VCONN_PWR_6W 6186187/* Vconn Required (AMA only) */188#define AMA_VCONN_NOT_REQ 0189#define AMA_VCONN_REQ 1190191/* Vbus Required (AMA only) */192#define AMA_VBUS_REQ 0193#define AMA_VBUS_NOT_REQ 1194195/* Alternate Modes */196#define UFP_ALTMODE_NOT_SUPP 0197#define UFP_ALTMODE_TBT3 (1 << 0)198#define UFP_ALTMODE_RECFG (1 << 1)199#define UFP_ALTMODE_NO_RECFG (1 << 2)200201/* USB Highest Speed */202#define UFP_USB2_ONLY 0203#define UFP_USB32_GEN1 1204#define UFP_USB32_4_GEN2 2205#define UFP_USB4_GEN3 3206207#define VDO_UFP(ver, cap, conn, vcpwr, vcr, vbr, alt, spd) \208(((ver) & 0x7) << 29 | ((cap) & 0xf) << 24 | ((conn) & 0x3) << 22 \209| ((vcpwr) & 0x7) << 8 | (vcr) << 7 | (vbr) << 6 | ((alt) & 0x7) << 3 \210| ((spd) & 0x7))211212/*213* DFP VDO (PD Revision 3.0+ only)214* --------215* <31:29> :: DFP VDO version216* <28:27> :: Reserved217* <26:24> :: Host capability218* <23:22> :: Connector type (10b == receptacle, 11b == captive plug)219* <21:5> :: Reserved220* <4:0> :: Port number221*/222#define DFP_VDO_VER1_1 1223#define HOST_USB2_CAPABLE (1 << 0)224#define HOST_USB3_CAPABLE (1 << 1)225#define HOST_USB4_CAPABLE (1 << 2)226#define DFP_RECEPTACLE 2227#define DFP_CAPTIVE 3228229#define VDO_DFP(ver, cap, conn, pnum) \230(((ver) & 0x7) << 29 | ((cap) & 0x7) << 24 | ((conn) & 0x3) << 22 \231| ((pnum) & 0x1f))232233/*234* Cable VDO (for both Passive and Active Cable VDO in PD Rev2.0)235* ---------236* <31:28> :: Cable HW version237* <27:24> :: Cable FW version238* <23:20> :: Reserved, Shall be set to zero239* <19:18> :: type-C to Type-A/B/C/Captive (00b == A, 01 == B, 10 == C, 11 == Captive)240* <17> :: Reserved, Shall be set to zero241* <16:13> :: cable latency (0001 == <10ns(~1m length))242* <12:11> :: cable termination type (11b == both ends active VCONN req)243* <10> :: SSTX1 Directionality support (0b == fixed, 1b == cfgable)244* <9> :: SSTX2 Directionality support245* <8> :: SSRX1 Directionality support246* <7> :: SSRX2 Directionality support247* <6:5> :: Vbus current handling capability (01b == 3A, 10b == 5A)248* <4> :: Vbus through cable (0b == no, 1b == yes)249* <3> :: SOP" controller present? (0b == no, 1b == yes)250* <2:0> :: USB SS Signaling support251*252* Passive Cable VDO (PD Rev3.0+)253* ---------254* <31:28> :: Cable HW version255* <27:24> :: Cable FW version256* <23:21> :: VDO version257* <20> :: Reserved, Shall be set to zero258* <19:18> :: Type-C to Type-C/Captive (10b == C, 11b == Captive)259* <17> :: Reserved, Shall be set to zero260* <16:13> :: cable latency (0001 == <10ns(~1m length))261* <12:11> :: cable termination type (10b == Vconn not req, 01b == Vconn req)262* <10:9> :: Maximum Vbus voltage (00b == 20V, 01b == 30V, 10b == 40V, 11b == 50V)263* <8:7> :: Reserved, Shall be set to zero264* <6:5> :: Vbus current handling capability (01b == 3A, 10b == 5A)265* <4:3> :: Reserved, Shall be set to zero266* <2:0> :: USB highest speed267*268* Active Cable VDO 1 (PD Rev3.0+)269* ---------270* <31:28> :: Cable HW version271* <27:24> :: Cable FW version272* <23:21> :: VDO version273* <20> :: Reserved, Shall be set to zero274* <19:18> :: Connector type (10b == C, 11b == Captive)275* <17> :: Reserved, Shall be set to zero276* <16:13> :: cable latency (0001 == <10ns(~1m length))277* <12:11> :: cable termination type (10b == one end active, 11b == both ends active VCONN req)278* <10:9> :: Maximum Vbus voltage (00b == 20V, 01b == 30V, 10b == 40V, 11b == 50V)279* <8> :: SBU supported (0b == supported, 1b == not supported)280* <7> :: SBU type (0b == passive, 1b == active)281* <6:5> :: Vbus current handling capability (01b == 3A, 10b == 5A)282* <4> :: Vbus through cable (0b == no, 1b == yes)283* <3> :: SOP" controller present? (0b == no, 1b == yes)284* <2:0> :: USB highest speed285*/286/* Cable VDO Version */287#define CABLE_VDO_VER1_0 0288#define CABLE_VDO_VER1_3 3289290/* Connector Type (_ATYPE and _BTYPE are for PD Rev2.0 only) */291#define CABLE_ATYPE 0292#define CABLE_BTYPE 1293#define CABLE_CTYPE 2294#define CABLE_CAPTIVE 3295296/* Cable Latency */297#define CABLE_LATENCY_1M 1298#define CABLE_LATENCY_2M 2299#define CABLE_LATENCY_3M 3300#define CABLE_LATENCY_4M 4301#define CABLE_LATENCY_5M 5302#define CABLE_LATENCY_6M 6303#define CABLE_LATENCY_7M 7304#define CABLE_LATENCY_7M_PLUS 8305306/* Cable Termination Type */307#define PCABLE_VCONN_NOT_REQ 0308#define PCABLE_VCONN_REQ 1309#define ACABLE_ONE_END 2310#define ACABLE_BOTH_END 3311312/* Maximum Vbus Voltage */313#define CABLE_MAX_VBUS_20V 0314#define CABLE_MAX_VBUS_30V 1315#define CABLE_MAX_VBUS_40V 2316#define CABLE_MAX_VBUS_50V 3317318/* Active Cable SBU Supported/Type */319#define ACABLE_SBU_SUPP 0320#define ACABLE_SBU_NOT_SUPP 1321#define ACABLE_SBU_PASSIVE 0322#define ACABLE_SBU_ACTIVE 1323324/* Vbus Current Handling Capability */325#define CABLE_CURR_DEF 0326#define CABLE_CURR_3A 1327#define CABLE_CURR_5A 2328329/* USB SuperSpeed Signaling Support (PD Rev2.0) */330#define CABLE_USBSS_U2_ONLY 0331#define CABLE_USBSS_U31_GEN1 1332#define CABLE_USBSS_U31_GEN2 2333334/* USB Highest Speed */335#define CABLE_USB2_ONLY 0336#define CABLE_USB32_GEN1 1337#define CABLE_USB32_4_GEN2 2338#define CABLE_USB4_GEN3 3339340#define VDO_CABLE(hw, fw, cbl, lat, term, tx1d, tx2d, rx1d, rx2d, cur, vps, sopp, usbss) \341(((hw) & 0x7) << 28 | ((fw) & 0x7) << 24 | ((cbl) & 0x3) << 18 \342| ((lat) & 0x7) << 13 | ((term) & 0x3) << 11 | (tx1d) << 10 \343| (tx2d) << 9 | (rx1d) << 8 | (rx2d) << 7 | ((cur) & 0x3) << 5 \344| (vps) << 4 | (sopp) << 3 | ((usbss) & 0x7))345#define VDO_PCABLE(hw, fw, ver, conn, lat, term, vbm, cur, spd) \346(((hw) & 0xf) << 28 | ((fw) & 0xf) << 24 | ((ver) & 0x7) << 21 \347| ((conn) & 0x3) << 18 | ((lat) & 0xf) << 13 | ((term) & 0x3) << 11 \348| ((vbm) & 0x3) << 9 | ((cur) & 0x3) << 5 | ((spd) & 0x7))349#define VDO_ACABLE1(hw, fw, ver, conn, lat, term, vbm, sbu, sbut, cur, vbt, sopp, spd) \350(((hw) & 0xf) << 28 | ((fw) & 0xf) << 24 | ((ver) & 0x7) << 21 \351| ((conn) & 0x3) << 18 | ((lat) & 0xf) << 13 | ((term) & 0x3) << 11 \352| ((vbm) & 0x3) << 9 | (sbu) << 8 | (sbut) << 7 | ((cur) & 0x3) << 5 \353| (vbt) << 4 | (sopp) << 3 | ((spd) & 0x7))354355/*356* Active Cable VDO 2357* ---------358* <31:24> :: Maximum operating temperature359* <23:16> :: Shutdown temperature360* <15> :: Reserved, Shall be set to zero361* <14:12> :: U3/CLd power362* <11> :: U3 to U0 transition mode (0b == direct, 1b == through U3S)363* <10> :: Physical connection (0b == copper, 1b == optical)364* <9> :: Active element (0b == redriver, 1b == retimer)365* <8> :: USB4 supported (0b == yes, 1b == no)366* <7:6> :: USB2 hub hops consumed367* <5> :: USB2 supported (0b == yes, 1b == no)368* <4> :: USB3.2 supported (0b == yes, 1b == no)369* <3> :: USB lanes supported (0b == one lane, 1b == two lanes)370* <2> :: Optically isolated active cable (0b == no, 1b == yes)371* <1> :: Reserved, Shall be set to zero372* <0> :: USB gen (0b == gen1, 1b == gen2+)373*/374/* U3/CLd Power*/375#define ACAB2_U3_CLD_10MW_PLUS 0376#define ACAB2_U3_CLD_10MW 1377#define ACAB2_U3_CLD_5MW 2378#define ACAB2_U3_CLD_1MW 3379#define ACAB2_U3_CLD_500UW 4380#define ACAB2_U3_CLD_200UW 5381#define ACAB2_U3_CLD_50UW 6382383/* Other Active Cable VDO 2 Fields */384#define ACAB2_U3U0_DIRECT 0385#define ACAB2_U3U0_U3S 1386#define ACAB2_PHY_COPPER 0387#define ACAB2_PHY_OPTICAL 1388#define ACAB2_REDRIVER 0389#define ACAB2_RETIMER 1390#define ACAB2_USB4_SUPP 0391#define ACAB2_USB4_NOT_SUPP 1392#define ACAB2_USB2_SUPP 0393#define ACAB2_USB2_NOT_SUPP 1394#define ACAB2_USB32_SUPP 0395#define ACAB2_USB32_NOT_SUPP 1396#define ACAB2_LANES_ONE 0397#define ACAB2_LANES_TWO 1398#define ACAB2_OPT_ISO_NO 0399#define ACAB2_OPT_ISO_YES 1400#define ACAB2_GEN_1 0401#define ACAB2_GEN_2_PLUS 1402403#define VDO_ACABLE2(mtemp, stemp, u3p, trans, phy, ele, u4, hops, u2, u32, lane, iso, gen) \404(((mtemp) & 0xff) << 24 | ((stemp) & 0xff) << 16 | ((u3p) & 0x7) << 12 \405| (trans) << 11 | (phy) << 10 | (ele) << 9 | (u4) << 8 \406| ((hops) & 0x3) << 6 | (u2) << 5 | (u32) << 4 | (lane) << 3 \407| (iso) << 2 | (gen))408409/*410* AMA VDO (PD Rev2.0)411* ---------412* <31:28> :: Cable HW version413* <27:24> :: Cable FW version414* <23:12> :: Reserved, Shall be set to zero415* <11> :: SSTX1 Directionality support (0b == fixed, 1b == cfgable)416* <10> :: SSTX2 Directionality support417* <9> :: SSRX1 Directionality support418* <8> :: SSRX2 Directionality support419* <7:5> :: Vconn power420* <4> :: Vconn power required421* <3> :: Vbus power required422* <2:0> :: USB SS Signaling support423*/424#define VDO_AMA(hw, fw, tx1d, tx2d, rx1d, rx2d, vcpwr, vcr, vbr, usbss) \425(((hw) & 0x7) << 28 | ((fw) & 0x7) << 24 \426| (tx1d) << 11 | (tx2d) << 10 | (rx1d) << 9 | (rx2d) << 8 \427| ((vcpwr) & 0x7) << 5 | (vcr) << 4 | (vbr) << 3 \428| ((usbss) & 0x7))429430#define PD_VDO_AMA_VCONN_REQ(vdo) (((vdo) >> 4) & 1)431#define PD_VDO_AMA_VBUS_REQ(vdo) (((vdo) >> 3) & 1)432433#define AMA_USBSS_U2_ONLY 0434#define AMA_USBSS_U31_GEN1 1435#define AMA_USBSS_U31_GEN2 2436#define AMA_USBSS_BBONLY 3437438/*439* VPD VDO440* ---------441* <31:28> :: HW version442* <27:24> :: FW version443* <23:21> :: VDO version444* <20:17> :: Reserved, Shall be set to zero445* <16:15> :: Maximum Vbus voltage (00b == 20V, 01b == 30V, 10b == 40V, 11b == 50V)446* <14> :: Charge through current support (0b == 3A, 1b == 5A)447* <13> :: Reserved, Shall be set to zero448* <12:7> :: Vbus impedance449* <6:1> :: Ground impedance450* <0> :: Charge through support (0b == no, 1b == yes)451*/452#define VPD_VDO_VER1_0 0453#define VPD_MAX_VBUS_20V 0454#define VPD_MAX_VBUS_30V 1455#define VPD_MAX_VBUS_40V 2456#define VPD_MAX_VBUS_50V 3457#define VPDCT_CURR_3A 0458#define VPDCT_CURR_5A 1459#define VPDCT_NOT_SUPP 0460#define VPDCT_SUPP 1461462#define VDO_VPD(hw, fw, ver, vbm, curr, vbi, gi, ct) \463(((hw) & 0xf) << 28 | ((fw) & 0xf) << 24 | ((ver) & 0x7) << 21 \464| ((vbm) & 0x3) << 15 | (curr) << 14 | ((vbi) & 0x3f) << 7 \465| ((gi) & 0x3f) << 1 | (ct))466467#endif /* __DT_POWER_DELIVERY_H */468469470