~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/dt-bindings/usb/pd.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/dt-bindings/usb/pd.h (Version linux-6.11-rc3) and /include/dt-bindings/usb/pd.h (Version linux-6.6.45)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef __DT_POWER_DELIVERY_H                       2 #ifndef __DT_POWER_DELIVERY_H
  3 #define __DT_POWER_DELIVERY_H                       3 #define __DT_POWER_DELIVERY_H
  4                                                     4 
  5 /* Power delivery Power Data Object definition      5 /* Power delivery Power Data Object definitions */
  6 #define PDO_TYPE_FIXED          0                   6 #define PDO_TYPE_FIXED          0
  7 #define PDO_TYPE_BATT           1                   7 #define PDO_TYPE_BATT           1
  8 #define PDO_TYPE_VAR            2                   8 #define PDO_TYPE_VAR            2
  9 #define PDO_TYPE_APDO           3                   9 #define PDO_TYPE_APDO           3
 10                                                    10 
 11 #define PDO_TYPE_SHIFT          30                 11 #define PDO_TYPE_SHIFT          30
 12 #define PDO_TYPE_MASK           0x3                12 #define PDO_TYPE_MASK           0x3
 13                                                    13 
 14 #define PDO_TYPE(t)     ((t) << PDO_TYPE_SHIFT     14 #define PDO_TYPE(t)     ((t) << PDO_TYPE_SHIFT)
 15                                                    15 
 16 #define PDO_VOLT_MASK           0x3ff              16 #define PDO_VOLT_MASK           0x3ff
 17 #define PDO_CURR_MASK           0x3ff              17 #define PDO_CURR_MASK           0x3ff
 18 #define PDO_PWR_MASK            0x3ff              18 #define PDO_PWR_MASK            0x3ff
 19                                                    19 
 20 #define PDO_FIXED_DUAL_ROLE     (1 << 29) /* P     20 #define PDO_FIXED_DUAL_ROLE     (1 << 29) /* Power role swap supported */
 21 #define PDO_FIXED_SUSPEND       (1 << 28) /* U     21 #define PDO_FIXED_SUSPEND       (1 << 28) /* USB Suspend supported (Source) */
 22 #define PDO_FIXED_HIGHER_CAP    (1 << 28) /* R     22 #define PDO_FIXED_HIGHER_CAP    (1 << 28) /* Requires more than vSafe5V (Sink) */
 23 #define PDO_FIXED_EXTPOWER      (1 << 27) /* E     23 #define PDO_FIXED_EXTPOWER      (1 << 27) /* Externally powered */
 24 #define PDO_FIXED_USB_COMM      (1 << 26) /* U     24 #define PDO_FIXED_USB_COMM      (1 << 26) /* USB communications capable */
 25 #define PDO_FIXED_DATA_SWAP     (1 << 25) /* D     25 #define PDO_FIXED_DATA_SWAP     (1 << 25) /* Data role swap supported */
 26 #define PDO_FIXED_VOLT_SHIFT    10      /* 50m     26 #define PDO_FIXED_VOLT_SHIFT    10      /* 50mV units */
 27 #define PDO_FIXED_CURR_SHIFT    0       /* 10m     27 #define PDO_FIXED_CURR_SHIFT    0       /* 10mA units */
 28                                                    28 
 29 #define PDO_FIXED_VOLT(mv)      ((((mv) / 50)      29 #define PDO_FIXED_VOLT(mv)      ((((mv) / 50) & PDO_VOLT_MASK) << PDO_FIXED_VOLT_SHIFT)
 30 #define PDO_FIXED_CURR(ma)      ((((ma) / 10)      30 #define PDO_FIXED_CURR(ma)      ((((ma) / 10) & PDO_CURR_MASK) << PDO_FIXED_CURR_SHIFT)
 31                                                    31 
 32 #define PDO_FIXED(mv, ma, flags)                   32 #define PDO_FIXED(mv, ma, flags)                        \
 33         (PDO_TYPE(PDO_TYPE_FIXED) | (flags) |      33         (PDO_TYPE(PDO_TYPE_FIXED) | (flags) |           \
 34          PDO_FIXED_VOLT(mv) | PDO_FIXED_CURR(m     34          PDO_FIXED_VOLT(mv) | PDO_FIXED_CURR(ma))
 35                                                    35 
 36 #define VSAFE5V 5000 /* mv units */                36 #define VSAFE5V 5000 /* mv units */
 37                                                    37 
 38 #define PDO_BATT_MAX_VOLT_SHIFT 20      /* 50m     38 #define PDO_BATT_MAX_VOLT_SHIFT 20      /* 50mV units */
 39 #define PDO_BATT_MIN_VOLT_SHIFT 10      /* 50m     39 #define PDO_BATT_MIN_VOLT_SHIFT 10      /* 50mV units */
 40 #define PDO_BATT_MAX_PWR_SHIFT  0       /* 250     40 #define PDO_BATT_MAX_PWR_SHIFT  0       /* 250mW units */
 41                                                    41 
 42 #define PDO_BATT_MIN_VOLT(mv) ((((mv) / 50) &      42 #define PDO_BATT_MIN_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_BATT_MIN_VOLT_SHIFT)
 43 #define PDO_BATT_MAX_VOLT(mv) ((((mv) / 50) &      43 #define PDO_BATT_MAX_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_BATT_MAX_VOLT_SHIFT)
 44 #define PDO_BATT_MAX_POWER(mw) ((((mw) / 250)      44 #define PDO_BATT_MAX_POWER(mw) ((((mw) / 250) & PDO_PWR_MASK) << PDO_BATT_MAX_PWR_SHIFT)
 45                                                    45 
 46 #define PDO_BATT(min_mv, max_mv, max_mw)           46 #define PDO_BATT(min_mv, max_mv, max_mw)                        \
 47         (PDO_TYPE(PDO_TYPE_BATT) | PDO_BATT_MI     47         (PDO_TYPE(PDO_TYPE_BATT) | PDO_BATT_MIN_VOLT(min_mv) |  \
 48          PDO_BATT_MAX_VOLT(max_mv) | PDO_BATT_     48          PDO_BATT_MAX_VOLT(max_mv) | PDO_BATT_MAX_POWER(max_mw))
 49                                                    49 
 50 #define PDO_VAR_MAX_VOLT_SHIFT  20      /* 50m     50 #define PDO_VAR_MAX_VOLT_SHIFT  20      /* 50mV units */
 51 #define PDO_VAR_MIN_VOLT_SHIFT  10      /* 50m     51 #define PDO_VAR_MIN_VOLT_SHIFT  10      /* 50mV units */
 52 #define PDO_VAR_MAX_CURR_SHIFT  0       /* 10m     52 #define PDO_VAR_MAX_CURR_SHIFT  0       /* 10mA units */
 53                                                    53 
 54 #define PDO_VAR_MIN_VOLT(mv) ((((mv) / 50) & P     54 #define PDO_VAR_MIN_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_VAR_MIN_VOLT_SHIFT)
 55 #define PDO_VAR_MAX_VOLT(mv) ((((mv) / 50) & P     55 #define PDO_VAR_MAX_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_VAR_MAX_VOLT_SHIFT)
 56 #define PDO_VAR_MAX_CURR(ma) ((((ma) / 10) & P     56 #define PDO_VAR_MAX_CURR(ma) ((((ma) / 10) & PDO_CURR_MASK) << PDO_VAR_MAX_CURR_SHIFT)
 57                                                    57 
 58 #define PDO_VAR(min_mv, max_mv, max_ma)            58 #define PDO_VAR(min_mv, max_mv, max_ma)                         \
 59         (PDO_TYPE(PDO_TYPE_VAR) | PDO_VAR_MIN_     59         (PDO_TYPE(PDO_TYPE_VAR) | PDO_VAR_MIN_VOLT(min_mv) |    \
 60          PDO_VAR_MAX_VOLT(max_mv) | PDO_VAR_MA     60          PDO_VAR_MAX_VOLT(max_mv) | PDO_VAR_MAX_CURR(max_ma))
 61                                                    61 
 62 #define APDO_TYPE_PPS           0                  62 #define APDO_TYPE_PPS           0
 63                                                    63 
 64 #define PDO_APDO_TYPE_SHIFT     28      /* Onl     64 #define PDO_APDO_TYPE_SHIFT     28      /* Only valid value currently is 0x0 - PPS */
 65 #define PDO_APDO_TYPE_MASK      0x3                65 #define PDO_APDO_TYPE_MASK      0x3
 66                                                    66 
 67 #define PDO_APDO_TYPE(t)        ((t) << PDO_AP     67 #define PDO_APDO_TYPE(t)        ((t) << PDO_APDO_TYPE_SHIFT)
 68                                                    68 
 69 #define PDO_PPS_APDO_MAX_VOLT_SHIFT     17         69 #define PDO_PPS_APDO_MAX_VOLT_SHIFT     17      /* 100mV units */
 70 #define PDO_PPS_APDO_MIN_VOLT_SHIFT     8          70 #define PDO_PPS_APDO_MIN_VOLT_SHIFT     8       /* 100mV units */
 71 #define PDO_PPS_APDO_MAX_CURR_SHIFT     0          71 #define PDO_PPS_APDO_MAX_CURR_SHIFT     0       /* 50mA units */
 72                                                    72 
 73 #define PDO_PPS_APDO_VOLT_MASK  0xff               73 #define PDO_PPS_APDO_VOLT_MASK  0xff
 74 #define PDO_PPS_APDO_CURR_MASK  0x7f               74 #define PDO_PPS_APDO_CURR_MASK  0x7f
 75                                                    75 
 76 #define PDO_PPS_APDO_MIN_VOLT(mv)       \          76 #define PDO_PPS_APDO_MIN_VOLT(mv)       \
 77         ((((mv) / 100) & PDO_PPS_APDO_VOLT_MAS     77         ((((mv) / 100) & PDO_PPS_APDO_VOLT_MASK) << PDO_PPS_APDO_MIN_VOLT_SHIFT)
 78 #define PDO_PPS_APDO_MAX_VOLT(mv)       \          78 #define PDO_PPS_APDO_MAX_VOLT(mv)       \
 79         ((((mv) / 100) & PDO_PPS_APDO_VOLT_MAS     79         ((((mv) / 100) & PDO_PPS_APDO_VOLT_MASK) << PDO_PPS_APDO_MAX_VOLT_SHIFT)
 80 #define PDO_PPS_APDO_MAX_CURR(ma)       \          80 #define PDO_PPS_APDO_MAX_CURR(ma)       \
 81         ((((ma) / 50) & PDO_PPS_APDO_CURR_MASK     81         ((((ma) / 50) & PDO_PPS_APDO_CURR_MASK) << PDO_PPS_APDO_MAX_CURR_SHIFT)
 82                                                    82 
 83 #define PDO_PPS_APDO(min_mv, max_mv, max_ma)       83 #define PDO_PPS_APDO(min_mv, max_mv, max_ma)                                    \
 84         (PDO_TYPE(PDO_TYPE_APDO) | PDO_APDO_TY     84         (PDO_TYPE(PDO_TYPE_APDO) | PDO_APDO_TYPE(APDO_TYPE_PPS) |               \
 85          PDO_PPS_APDO_MIN_VOLT(min_mv) | PDO_P     85          PDO_PPS_APDO_MIN_VOLT(min_mv) | PDO_PPS_APDO_MAX_VOLT(max_mv) |        \
 86          PDO_PPS_APDO_MAX_CURR(max_ma))            86          PDO_PPS_APDO_MAX_CURR(max_ma))
 87                                                    87 
 88  /*                                                88  /*
 89   * Based on "Table 6-14 Fixed Supply PDO - Si     89   * Based on "Table 6-14 Fixed Supply PDO - Sink" of "USB Power Delivery Specification Revision 3.0,
 90   * Version 1.2"                                   90   * Version 1.2"
 91   * Initial current capability of the new sour     91   * Initial current capability of the new source when vSafe5V is applied.
 92   */                                               92   */
 93 #define FRS_DEFAULT_POWER      1                   93 #define FRS_DEFAULT_POWER      1
 94 #define FRS_5V_1P5A            2                   94 #define FRS_5V_1P5A            2
 95 #define FRS_5V_3A              3                   95 #define FRS_5V_3A              3
 96                                                    96 
 97 /*                                                 97 /*
 98  * SVDM Identity Header                            98  * SVDM Identity Header
 99  * --------------------                            99  * --------------------
100  * <31>     :: data capable as a USB host         100  * <31>     :: data capable as a USB host
101  * <30>     :: data capable as a USB device       101  * <30>     :: data capable as a USB device
102  * <29:27>  :: product type (UFP / Cable / VPD    102  * <29:27>  :: product type (UFP / Cable / VPD)
103  * <26>     :: modal operation supported (1b =    103  * <26>     :: modal operation supported (1b == yes)
104  * <25:23>  :: product type (DFP) (SVDM versio    104  * <25:23>  :: product type (DFP) (SVDM version 2.0+ only; set to zero in version 1.0)
105  * <22:21>  :: connector type (SVDM version 2.    105  * <22:21>  :: connector type (SVDM version 2.0+ only; set to zero in version 1.0)
106  * <20:16>  :: Reserved, Shall be set to zero     106  * <20:16>  :: Reserved, Shall be set to zero
107  * <15:0>   :: USB-IF assigned VID for this ca    107  * <15:0>   :: USB-IF assigned VID for this cable vendor
108  */                                               108  */
109                                                   109 
110 /* PD Rev2.0 definition */                        110 /* PD Rev2.0 definition */
111 #define IDH_PTYPE_UNDEF         0                 111 #define IDH_PTYPE_UNDEF         0
112                                                   112 
113 /* SOP Product Type (UFP) */                      113 /* SOP Product Type (UFP) */
114 #define IDH_PTYPE_NOT_UFP       0                 114 #define IDH_PTYPE_NOT_UFP       0
115 #define IDH_PTYPE_HUB           1                 115 #define IDH_PTYPE_HUB           1
116 #define IDH_PTYPE_PERIPH        2                 116 #define IDH_PTYPE_PERIPH        2
117 #define IDH_PTYPE_PSD           3                 117 #define IDH_PTYPE_PSD           3
118 #define IDH_PTYPE_AMA           5                 118 #define IDH_PTYPE_AMA           5
119                                                   119 
120 /* SOP' Product Type (Cable Plug / VPD) */        120 /* SOP' Product Type (Cable Plug / VPD) */
121 #define IDH_PTYPE_NOT_CABLE     0                 121 #define IDH_PTYPE_NOT_CABLE     0
122 #define IDH_PTYPE_PCABLE        3                 122 #define IDH_PTYPE_PCABLE        3
123 #define IDH_PTYPE_ACABLE        4                 123 #define IDH_PTYPE_ACABLE        4
124 #define IDH_PTYPE_VPD           6                 124 #define IDH_PTYPE_VPD           6
125                                                   125 
126 /* SOP Product Type (DFP) */                      126 /* SOP Product Type (DFP) */
127 #define IDH_PTYPE_NOT_DFP       0                 127 #define IDH_PTYPE_NOT_DFP       0
128 #define IDH_PTYPE_DFP_HUB       1                 128 #define IDH_PTYPE_DFP_HUB       1
129 #define IDH_PTYPE_DFP_HOST      2                 129 #define IDH_PTYPE_DFP_HOST      2
130 #define IDH_PTYPE_DFP_PB        3                 130 #define IDH_PTYPE_DFP_PB        3
131                                                   131 
132 #define VDO_IDH(usbh, usbd, ufp_cable, is_moda    132 #define VDO_IDH(usbh, usbd, ufp_cable, is_modal, dfp, conn, vid)                \
133         ((usbh) << 31 | (usbd) << 30 | ((ufp_c    133         ((usbh) << 31 | (usbd) << 30 | ((ufp_cable) & 0x7) << 27                \
134          | (is_modal) << 26 | ((dfp) & 0x7) <<    134          | (is_modal) << 26 | ((dfp) & 0x7) << 23 | ((conn) & 0x3) << 21        \
135          | ((vid) & 0xffff))                      135          | ((vid) & 0xffff))
136                                                   136 
137 /*                                                137 /*
138  * Cert Stat VDO                                  138  * Cert Stat VDO
139  * -------------                                  139  * -------------
140  * <31:0>  : USB-IF assigned XID for this cabl    140  * <31:0>  : USB-IF assigned XID for this cable
141  */                                               141  */
142 #define VDO_CERT(xid)           ((xid) & 0xfff    142 #define VDO_CERT(xid)           ((xid) & 0xffffffff)
143                                                   143 
144 /*                                                144 /*
145  * Product VDO                                    145  * Product VDO
146  * -----------                                    146  * -----------
147  * <31:16> : USB Product ID                       147  * <31:16> : USB Product ID
148  * <15:0>  : USB bcdDevice                        148  * <15:0>  : USB bcdDevice
149  */                                               149  */
150 #define VDO_PRODUCT(pid, bcd)   (((pid) & 0xff    150 #define VDO_PRODUCT(pid, bcd)   (((pid) & 0xffff) << 16 | ((bcd) & 0xffff))
151                                                   151 
152 /*                                                152 /*
153  * UFP VDO (PD Revision 3.0+ only)                153  * UFP VDO (PD Revision 3.0+ only)
154  * --------                                       154  * --------
155  * <31:29> :: UFP VDO version                     155  * <31:29> :: UFP VDO version
156  * <28>    :: Reserved                            156  * <28>    :: Reserved
157  * <27:24> :: Device capability                   157  * <27:24> :: Device capability
158  * <23:22> :: Connector type (10b == receptacl    158  * <23:22> :: Connector type (10b == receptacle, 11b == captive plug)
159  * <21:11> :: Reserved                            159  * <21:11> :: Reserved
160  * <10:8>  :: Vconn power (AMA only)              160  * <10:8>  :: Vconn power (AMA only)
161  * <7>     :: Vconn required (AMA only, 0b ==     161  * <7>     :: Vconn required (AMA only, 0b == no, 1b == yes)
162  * <6>     :: Vbus required (AMA only, 0b == y    162  * <6>     :: Vbus required (AMA only, 0b == yes, 1b == no)
163  * <5:3>   :: Alternate modes                     163  * <5:3>   :: Alternate modes
164  * <2:0>   :: USB highest speed                   164  * <2:0>   :: USB highest speed
165  */                                               165  */
166 /* UFP VDO Version */                             166 /* UFP VDO Version */
167 #define UFP_VDO_VER1_2          2                 167 #define UFP_VDO_VER1_2          2
168                                                   168 
169 /* Device Capability */                           169 /* Device Capability */
170 #define DEV_USB2_CAPABLE        (1 << 0)          170 #define DEV_USB2_CAPABLE        (1 << 0)
171 #define DEV_USB2_BILLBOARD      (1 << 1)          171 #define DEV_USB2_BILLBOARD      (1 << 1)
172 #define DEV_USB3_CAPABLE        (1 << 2)          172 #define DEV_USB3_CAPABLE        (1 << 2)
173 #define DEV_USB4_CAPABLE        (1 << 3)          173 #define DEV_USB4_CAPABLE        (1 << 3)
174                                                   174 
175 /* Connector Type */                              175 /* Connector Type */
176 #define UFP_RECEPTACLE          2                 176 #define UFP_RECEPTACLE          2
177 #define UFP_CAPTIVE             3                 177 #define UFP_CAPTIVE             3
178                                                   178 
179 /* Vconn Power (AMA only, set to AMA_VCONN_NOT    179 /* Vconn Power (AMA only, set to AMA_VCONN_NOT_REQ if Vconn is not required) */
180 #define AMA_VCONN_PWR_1W        0                 180 #define AMA_VCONN_PWR_1W        0
181 #define AMA_VCONN_PWR_1W5       1                 181 #define AMA_VCONN_PWR_1W5       1
182 #define AMA_VCONN_PWR_2W        2                 182 #define AMA_VCONN_PWR_2W        2
183 #define AMA_VCONN_PWR_3W        3                 183 #define AMA_VCONN_PWR_3W        3
184 #define AMA_VCONN_PWR_4W        4                 184 #define AMA_VCONN_PWR_4W        4
185 #define AMA_VCONN_PWR_5W        5                 185 #define AMA_VCONN_PWR_5W        5
186 #define AMA_VCONN_PWR_6W        6                 186 #define AMA_VCONN_PWR_6W        6
187                                                   187 
188 /* Vconn Required (AMA only) */                   188 /* Vconn Required (AMA only) */
189 #define AMA_VCONN_NOT_REQ       0                 189 #define AMA_VCONN_NOT_REQ       0
190 #define AMA_VCONN_REQ           1                 190 #define AMA_VCONN_REQ           1
191                                                   191 
192 /* Vbus Required (AMA only) */                    192 /* Vbus Required (AMA only) */
193 #define AMA_VBUS_REQ            0                 193 #define AMA_VBUS_REQ            0
194 #define AMA_VBUS_NOT_REQ        1                 194 #define AMA_VBUS_NOT_REQ        1
195                                                   195 
196 /* Alternate Modes */                             196 /* Alternate Modes */
197 #define UFP_ALTMODE_NOT_SUPP    0                 197 #define UFP_ALTMODE_NOT_SUPP    0
198 #define UFP_ALTMODE_TBT3        (1 << 0)          198 #define UFP_ALTMODE_TBT3        (1 << 0)
199 #define UFP_ALTMODE_RECFG       (1 << 1)          199 #define UFP_ALTMODE_RECFG       (1 << 1)
200 #define UFP_ALTMODE_NO_RECFG    (1 << 2)          200 #define UFP_ALTMODE_NO_RECFG    (1 << 2)
201                                                   201 
202 /* USB Highest Speed */                           202 /* USB Highest Speed */
203 #define UFP_USB2_ONLY           0                 203 #define UFP_USB2_ONLY           0
204 #define UFP_USB32_GEN1          1                 204 #define UFP_USB32_GEN1          1
205 #define UFP_USB32_4_GEN2        2                 205 #define UFP_USB32_4_GEN2        2
206 #define UFP_USB4_GEN3           3                 206 #define UFP_USB4_GEN3           3
207                                                   207 
208 #define VDO_UFP(ver, cap, conn, vcpwr, vcr, vb    208 #define VDO_UFP(ver, cap, conn, vcpwr, vcr, vbr, alt, spd)                      \
209         (((ver) & 0x7) << 29 | ((cap) & 0xf) <    209         (((ver) & 0x7) << 29 | ((cap) & 0xf) << 24 | ((conn) & 0x3) << 22       \
210          | ((vcpwr) & 0x7) << 8 | (vcr) << 7 |    210          | ((vcpwr) & 0x7) << 8 | (vcr) << 7 | (vbr) << 6 | ((alt) & 0x7) << 3  \
211          | ((spd) & 0x7))                         211          | ((spd) & 0x7))
212                                                   212 
213 /*                                                213 /*
214  * DFP VDO (PD Revision 3.0+ only)                214  * DFP VDO (PD Revision 3.0+ only)
215  * --------                                       215  * --------
216  * <31:29> :: DFP VDO version                     216  * <31:29> :: DFP VDO version
217  * <28:27> :: Reserved                            217  * <28:27> :: Reserved
218  * <26:24> :: Host capability                     218  * <26:24> :: Host capability
219  * <23:22> :: Connector type (10b == receptacl    219  * <23:22> :: Connector type (10b == receptacle, 11b == captive plug)
220  * <21:5>  :: Reserved                            220  * <21:5>  :: Reserved
221  * <4:0>   :: Port number                         221  * <4:0>   :: Port number
222  */                                               222  */
223 #define DFP_VDO_VER1_1          1                 223 #define DFP_VDO_VER1_1          1
224 #define HOST_USB2_CAPABLE       (1 << 0)          224 #define HOST_USB2_CAPABLE       (1 << 0)
225 #define HOST_USB3_CAPABLE       (1 << 1)          225 #define HOST_USB3_CAPABLE       (1 << 1)
226 #define HOST_USB4_CAPABLE       (1 << 2)          226 #define HOST_USB4_CAPABLE       (1 << 2)
227 #define DFP_RECEPTACLE          2                 227 #define DFP_RECEPTACLE          2
228 #define DFP_CAPTIVE             3                 228 #define DFP_CAPTIVE             3
229                                                   229 
230 #define VDO_DFP(ver, cap, conn, pnum)             230 #define VDO_DFP(ver, cap, conn, pnum)                                           \
231         (((ver) & 0x7) << 29 | ((cap) & 0x7) <    231         (((ver) & 0x7) << 29 | ((cap) & 0x7) << 24 | ((conn) & 0x3) << 22       \
232          | ((pnum) & 0x1f))                       232          | ((pnum) & 0x1f))
233                                                   233 
234 /*                                                234 /*
235  * Cable VDO (for both Passive and Active Cabl    235  * Cable VDO (for both Passive and Active Cable VDO in PD Rev2.0)
236  * ---------                                      236  * ---------
237  * <31:28> :: Cable HW version                    237  * <31:28> :: Cable HW version
238  * <27:24> :: Cable FW version                    238  * <27:24> :: Cable FW version
239  * <23:20> :: Reserved, Shall be set to zero      239  * <23:20> :: Reserved, Shall be set to zero
240  * <19:18> :: type-C to Type-A/B/C/Captive (00    240  * <19:18> :: type-C to Type-A/B/C/Captive (00b == A, 01 == B, 10 == C, 11 == Captive)
241  * <17>    :: Reserved, Shall be set to zero      241  * <17>    :: Reserved, Shall be set to zero
242  * <16:13> :: cable latency (0001 == <10ns(~1m    242  * <16:13> :: cable latency (0001 == <10ns(~1m length))
243  * <12:11> :: cable termination type (11b == b    243  * <12:11> :: cable termination type (11b == both ends active VCONN req)
244  * <10>    :: SSTX1 Directionality support (0b    244  * <10>    :: SSTX1 Directionality support (0b == fixed, 1b == cfgable)
245  * <9>     :: SSTX2 Directionality support        245  * <9>     :: SSTX2 Directionality support
246  * <8>     :: SSRX1 Directionality support        246  * <8>     :: SSRX1 Directionality support
247  * <7>     :: SSRX2 Directionality support        247  * <7>     :: SSRX2 Directionality support
248  * <6:5>   :: Vbus current handling capability    248  * <6:5>   :: Vbus current handling capability (01b == 3A, 10b == 5A)
249  * <4>     :: Vbus through cable (0b == no, 1b    249  * <4>     :: Vbus through cable (0b == no, 1b == yes)
250  * <3>     :: SOP" controller present? (0b ==     250  * <3>     :: SOP" controller present? (0b == no, 1b == yes)
251  * <2:0>   :: USB SS Signaling support            251  * <2:0>   :: USB SS Signaling support
252  *                                                252  *
253  * Passive Cable VDO (PD Rev3.0+)                 253  * Passive Cable VDO (PD Rev3.0+)
254  * ---------                                      254  * ---------
255  * <31:28> :: Cable HW version                    255  * <31:28> :: Cable HW version
256  * <27:24> :: Cable FW version                    256  * <27:24> :: Cable FW version
257  * <23:21> :: VDO version                         257  * <23:21> :: VDO version
258  * <20>    :: Reserved, Shall be set to zero      258  * <20>    :: Reserved, Shall be set to zero
259  * <19:18> :: Type-C to Type-C/Captive (10b ==    259  * <19:18> :: Type-C to Type-C/Captive (10b == C, 11b == Captive)
260  * <17>    :: Reserved, Shall be set to zero      260  * <17>    :: Reserved, Shall be set to zero
261  * <16:13> :: cable latency (0001 == <10ns(~1m    261  * <16:13> :: cable latency (0001 == <10ns(~1m length))
262  * <12:11> :: cable termination type (10b == V    262  * <12:11> :: cable termination type (10b == Vconn not req, 01b == Vconn req)
263  * <10:9>  :: Maximum Vbus voltage (00b == 20V    263  * <10:9>  :: Maximum Vbus voltage (00b == 20V, 01b == 30V, 10b == 40V, 11b == 50V)
264  * <8:7>   :: Reserved, Shall be set to zero      264  * <8:7>   :: Reserved, Shall be set to zero
265  * <6:5>   :: Vbus current handling capability    265  * <6:5>   :: Vbus current handling capability (01b == 3A, 10b == 5A)
266  * <4:3>   :: Reserved, Shall be set to zero      266  * <4:3>   :: Reserved, Shall be set to zero
267  * <2:0>   :: USB highest speed                   267  * <2:0>   :: USB highest speed
268  *                                                268  *
269  * Active Cable VDO 1 (PD Rev3.0+)                269  * Active Cable VDO 1 (PD Rev3.0+)
270  * ---------                                      270  * ---------
271  * <31:28> :: Cable HW version                    271  * <31:28> :: Cable HW version
272  * <27:24> :: Cable FW version                    272  * <27:24> :: Cable FW version
273  * <23:21> :: VDO version                         273  * <23:21> :: VDO version
274  * <20>    :: Reserved, Shall be set to zero      274  * <20>    :: Reserved, Shall be set to zero
275  * <19:18> :: Connector type (10b == C, 11b ==    275  * <19:18> :: Connector type (10b == C, 11b == Captive)
276  * <17>    :: Reserved, Shall be set to zero      276  * <17>    :: Reserved, Shall be set to zero
277  * <16:13> :: cable latency (0001 == <10ns(~1m    277  * <16:13> :: cable latency (0001 == <10ns(~1m length))
278  * <12:11> :: cable termination type (10b == o    278  * <12:11> :: cable termination type (10b == one end active, 11b == both ends active VCONN req)
279  * <10:9>  :: Maximum Vbus voltage (00b == 20V    279  * <10:9>  :: Maximum Vbus voltage (00b == 20V, 01b == 30V, 10b == 40V, 11b == 50V)
280  * <8>     :: SBU supported (0b == supported,     280  * <8>     :: SBU supported (0b == supported, 1b == not supported)
281  * <7>     :: SBU type (0b == passive, 1b == a    281  * <7>     :: SBU type (0b == passive, 1b == active)
282  * <6:5>   :: Vbus current handling capability    282  * <6:5>   :: Vbus current handling capability (01b == 3A, 10b == 5A)
283  * <4>     :: Vbus through cable (0b == no, 1b    283  * <4>     :: Vbus through cable (0b == no, 1b == yes)
284  * <3>     :: SOP" controller present? (0b ==     284  * <3>     :: SOP" controller present? (0b == no, 1b == yes)
285  * <2:0>   :: USB highest speed                   285  * <2:0>   :: USB highest speed
286  */                                               286  */
287 /* Cable VDO Version */                           287 /* Cable VDO Version */
288 #define CABLE_VDO_VER1_0        0                 288 #define CABLE_VDO_VER1_0        0
289 #define CABLE_VDO_VER1_3        3                 289 #define CABLE_VDO_VER1_3        3
290                                                   290 
291 /* Connector Type (_ATYPE and _BTYPE are for P    291 /* Connector Type (_ATYPE and _BTYPE are for PD Rev2.0 only) */
292 #define CABLE_ATYPE             0                 292 #define CABLE_ATYPE             0
293 #define CABLE_BTYPE             1                 293 #define CABLE_BTYPE             1
294 #define CABLE_CTYPE             2                 294 #define CABLE_CTYPE             2
295 #define CABLE_CAPTIVE           3                 295 #define CABLE_CAPTIVE           3
296                                                   296 
297 /* Cable Latency */                               297 /* Cable Latency */
298 #define CABLE_LATENCY_1M        1                 298 #define CABLE_LATENCY_1M        1
299 #define CABLE_LATENCY_2M        2                 299 #define CABLE_LATENCY_2M        2
300 #define CABLE_LATENCY_3M        3                 300 #define CABLE_LATENCY_3M        3
301 #define CABLE_LATENCY_4M        4                 301 #define CABLE_LATENCY_4M        4
302 #define CABLE_LATENCY_5M        5                 302 #define CABLE_LATENCY_5M        5
303 #define CABLE_LATENCY_6M        6                 303 #define CABLE_LATENCY_6M        6
304 #define CABLE_LATENCY_7M        7                 304 #define CABLE_LATENCY_7M        7
305 #define CABLE_LATENCY_7M_PLUS   8                 305 #define CABLE_LATENCY_7M_PLUS   8
306                                                   306 
307 /* Cable Termination Type */                      307 /* Cable Termination Type */
308 #define PCABLE_VCONN_NOT_REQ    0                 308 #define PCABLE_VCONN_NOT_REQ    0
309 #define PCABLE_VCONN_REQ        1                 309 #define PCABLE_VCONN_REQ        1
310 #define ACABLE_ONE_END          2                 310 #define ACABLE_ONE_END          2
311 #define ACABLE_BOTH_END         3                 311 #define ACABLE_BOTH_END         3
312                                                   312 
313 /* Maximum Vbus Voltage */                        313 /* Maximum Vbus Voltage */
314 #define CABLE_MAX_VBUS_20V      0                 314 #define CABLE_MAX_VBUS_20V      0
315 #define CABLE_MAX_VBUS_30V      1                 315 #define CABLE_MAX_VBUS_30V      1
316 #define CABLE_MAX_VBUS_40V      2                 316 #define CABLE_MAX_VBUS_40V      2
317 #define CABLE_MAX_VBUS_50V      3                 317 #define CABLE_MAX_VBUS_50V      3
318                                                   318 
319 /* Active Cable SBU Supported/Type */             319 /* Active Cable SBU Supported/Type */
320 #define ACABLE_SBU_SUPP         0                 320 #define ACABLE_SBU_SUPP         0
321 #define ACABLE_SBU_NOT_SUPP     1                 321 #define ACABLE_SBU_NOT_SUPP     1
322 #define ACABLE_SBU_PASSIVE      0                 322 #define ACABLE_SBU_PASSIVE      0
323 #define ACABLE_SBU_ACTIVE       1                 323 #define ACABLE_SBU_ACTIVE       1
324                                                   324 
325 /* Vbus Current Handling Capability */            325 /* Vbus Current Handling Capability */
326 #define CABLE_CURR_DEF          0                 326 #define CABLE_CURR_DEF          0
327 #define CABLE_CURR_3A           1                 327 #define CABLE_CURR_3A           1
328 #define CABLE_CURR_5A           2                 328 #define CABLE_CURR_5A           2
329                                                   329 
330 /* USB SuperSpeed Signaling Support (PD Rev2.0    330 /* USB SuperSpeed Signaling Support (PD Rev2.0) */
331 #define CABLE_USBSS_U2_ONLY     0                 331 #define CABLE_USBSS_U2_ONLY     0
332 #define CABLE_USBSS_U31_GEN1    1                 332 #define CABLE_USBSS_U31_GEN1    1
333 #define CABLE_USBSS_U31_GEN2    2                 333 #define CABLE_USBSS_U31_GEN2    2
334                                                   334 
335 /* USB Highest Speed */                           335 /* USB Highest Speed */
336 #define CABLE_USB2_ONLY         0                 336 #define CABLE_USB2_ONLY         0
337 #define CABLE_USB32_GEN1        1                 337 #define CABLE_USB32_GEN1        1
338 #define CABLE_USB32_4_GEN2      2                 338 #define CABLE_USB32_4_GEN2      2
339 #define CABLE_USB4_GEN3         3                 339 #define CABLE_USB4_GEN3         3
340                                                   340 
341 #define VDO_CABLE(hw, fw, cbl, lat, term, tx1d    341 #define VDO_CABLE(hw, fw, cbl, lat, term, tx1d, tx2d, rx1d, rx2d, cur, vps, sopp, usbss) \
342         (((hw) & 0x7) << 28 | ((fw) & 0x7) <<     342         (((hw) & 0x7) << 28 | ((fw) & 0x7) << 24 | ((cbl) & 0x3) << 18          \
343          | ((lat) & 0x7) << 13 | ((term) & 0x3    343          | ((lat) & 0x7) << 13 | ((term) & 0x3) << 11 | (tx1d) << 10            \
344          | (tx2d) << 9 | (rx1d) << 8 | (rx2d)     344          | (tx2d) << 9 | (rx1d) << 8 | (rx2d) << 7 | ((cur) & 0x3) << 5         \
345          | (vps) << 4 | (sopp) << 3 | ((usbss)    345          | (vps) << 4 | (sopp) << 3 | ((usbss) & 0x7))
346 #define VDO_PCABLE(hw, fw, ver, conn, lat, ter    346 #define VDO_PCABLE(hw, fw, ver, conn, lat, term, vbm, cur, spd)                 \
347         (((hw) & 0xf) << 28 | ((fw) & 0xf) <<     347         (((hw) & 0xf) << 28 | ((fw) & 0xf) << 24 | ((ver) & 0x7) << 21          \
348          | ((conn) & 0x3) << 18 | ((lat) & 0xf    348          | ((conn) & 0x3) << 18 | ((lat) & 0xf) << 13 | ((term) & 0x3) << 11    \
349          | ((vbm) & 0x3) << 9 | ((cur) & 0x3)     349          | ((vbm) & 0x3) << 9 | ((cur) & 0x3) << 5 | ((spd) & 0x7))
350 #define VDO_ACABLE1(hw, fw, ver, conn, lat, te    350 #define VDO_ACABLE1(hw, fw, ver, conn, lat, term, vbm, sbu, sbut, cur, vbt, sopp, spd) \
351         (((hw) & 0xf) << 28 | ((fw) & 0xf) <<     351         (((hw) & 0xf) << 28 | ((fw) & 0xf) << 24 | ((ver) & 0x7) << 21          \
352          | ((conn) & 0x3) << 18 | ((lat) & 0xf    352          | ((conn) & 0x3) << 18 | ((lat) & 0xf) << 13 | ((term) & 0x3) << 11    \
353          | ((vbm) & 0x3) << 9 | (sbu) << 8 | (    353          | ((vbm) & 0x3) << 9 | (sbu) << 8 | (sbut) << 7 | ((cur) & 0x3) << 5   \
354          | (vbt) << 4 | (sopp) << 3 | ((spd) &    354          | (vbt) << 4 | (sopp) << 3 | ((spd) & 0x7))
355                                                   355 
356 /*                                                356 /*
357  * Active Cable VDO 2                             357  * Active Cable VDO 2
358  * ---------                                      358  * ---------
359  * <31:24> :: Maximum operating temperature       359  * <31:24> :: Maximum operating temperature
360  * <23:16> :: Shutdown temperature                360  * <23:16> :: Shutdown temperature
361  * <15>    :: Reserved, Shall be set to zero      361  * <15>    :: Reserved, Shall be set to zero
362  * <14:12> :: U3/CLd power                        362  * <14:12> :: U3/CLd power
363  * <11>    :: U3 to U0 transition mode (0b ==     363  * <11>    :: U3 to U0 transition mode (0b == direct, 1b == through U3S)
364  * <10>    :: Physical connection (0b == coppe    364  * <10>    :: Physical connection (0b == copper, 1b == optical)
365  * <9>     :: Active element (0b == redriver,     365  * <9>     :: Active element (0b == redriver, 1b == retimer)
366  * <8>     :: USB4 supported (0b == yes, 1b ==    366  * <8>     :: USB4 supported (0b == yes, 1b == no)
367  * <7:6>   :: USB2 hub hops consumed              367  * <7:6>   :: USB2 hub hops consumed
368  * <5>     :: USB2 supported (0b == yes, 1b ==    368  * <5>     :: USB2 supported (0b == yes, 1b == no)
369  * <4>     :: USB3.2 supported (0b == yes, 1b     369  * <4>     :: USB3.2 supported (0b == yes, 1b == no)
370  * <3>     :: USB lanes supported (0b == one l    370  * <3>     :: USB lanes supported (0b == one lane, 1b == two lanes)
371  * <2>     :: Optically isolated active cable     371  * <2>     :: Optically isolated active cable (0b == no, 1b == yes)
372  * <1>     :: Reserved, Shall be set to zero      372  * <1>     :: Reserved, Shall be set to zero
373  * <0>     :: USB gen (0b == gen1, 1b == gen2+    373  * <0>     :: USB gen (0b == gen1, 1b == gen2+)
374  */                                               374  */
375 /* U3/CLd Power*/                                 375 /* U3/CLd Power*/
376 #define ACAB2_U3_CLD_10MW_PLUS  0                 376 #define ACAB2_U3_CLD_10MW_PLUS  0
377 #define ACAB2_U3_CLD_10MW       1                 377 #define ACAB2_U3_CLD_10MW       1
378 #define ACAB2_U3_CLD_5MW        2                 378 #define ACAB2_U3_CLD_5MW        2
379 #define ACAB2_U3_CLD_1MW        3                 379 #define ACAB2_U3_CLD_1MW        3
380 #define ACAB2_U3_CLD_500UW      4                 380 #define ACAB2_U3_CLD_500UW      4
381 #define ACAB2_U3_CLD_200UW      5                 381 #define ACAB2_U3_CLD_200UW      5
382 #define ACAB2_U3_CLD_50UW       6                 382 #define ACAB2_U3_CLD_50UW       6
383                                                   383 
384 /* Other Active Cable VDO 2 Fields */             384 /* Other Active Cable VDO 2 Fields */
385 #define ACAB2_U3U0_DIRECT       0                 385 #define ACAB2_U3U0_DIRECT       0
386 #define ACAB2_U3U0_U3S          1                 386 #define ACAB2_U3U0_U3S          1
387 #define ACAB2_PHY_COPPER        0                 387 #define ACAB2_PHY_COPPER        0
388 #define ACAB2_PHY_OPTICAL       1                 388 #define ACAB2_PHY_OPTICAL       1
389 #define ACAB2_REDRIVER          0                 389 #define ACAB2_REDRIVER          0
390 #define ACAB2_RETIMER           1                 390 #define ACAB2_RETIMER           1
391 #define ACAB2_USB4_SUPP         0                 391 #define ACAB2_USB4_SUPP         0
392 #define ACAB2_USB4_NOT_SUPP     1                 392 #define ACAB2_USB4_NOT_SUPP     1
393 #define ACAB2_USB2_SUPP         0                 393 #define ACAB2_USB2_SUPP         0
394 #define ACAB2_USB2_NOT_SUPP     1                 394 #define ACAB2_USB2_NOT_SUPP     1
395 #define ACAB2_USB32_SUPP        0                 395 #define ACAB2_USB32_SUPP        0
396 #define ACAB2_USB32_NOT_SUPP    1                 396 #define ACAB2_USB32_NOT_SUPP    1
397 #define ACAB2_LANES_ONE         0                 397 #define ACAB2_LANES_ONE         0
398 #define ACAB2_LANES_TWO         1                 398 #define ACAB2_LANES_TWO         1
399 #define ACAB2_OPT_ISO_NO        0                 399 #define ACAB2_OPT_ISO_NO        0
400 #define ACAB2_OPT_ISO_YES       1                 400 #define ACAB2_OPT_ISO_YES       1
401 #define ACAB2_GEN_1             0                 401 #define ACAB2_GEN_1             0
402 #define ACAB2_GEN_2_PLUS        1                 402 #define ACAB2_GEN_2_PLUS        1
403                                                   403 
404 #define VDO_ACABLE2(mtemp, stemp, u3p, trans,     404 #define VDO_ACABLE2(mtemp, stemp, u3p, trans, phy, ele, u4, hops, u2, u32, lane, iso, gen)      \
405         (((mtemp) & 0xff) << 24 | ((stemp) & 0    405         (((mtemp) & 0xff) << 24 | ((stemp) & 0xff) << 16 | ((u3p) & 0x7) << 12  \
406          | (trans) << 11 | (phy) << 10 | (ele)    406          | (trans) << 11 | (phy) << 10 | (ele) << 9 | (u4) << 8                 \
407          | ((hops) & 0x3) << 6 | (u2) << 5 | (    407          | ((hops) & 0x3) << 6 | (u2) << 5 | (u32) << 4 | (lane) << 3           \
408          | (iso) << 2 | (gen))                    408          | (iso) << 2 | (gen))
409                                                   409 
410 /*                                                410 /*
411  * AMA VDO (PD Rev2.0)                            411  * AMA VDO (PD Rev2.0)
412  * ---------                                      412  * ---------
413  * <31:28> :: Cable HW version                    413  * <31:28> :: Cable HW version
414  * <27:24> :: Cable FW version                    414  * <27:24> :: Cable FW version
415  * <23:12> :: Reserved, Shall be set to zero      415  * <23:12> :: Reserved, Shall be set to zero
416  * <11>    :: SSTX1 Directionality support (0b    416  * <11>    :: SSTX1 Directionality support (0b == fixed, 1b == cfgable)
417  * <10>    :: SSTX2 Directionality support        417  * <10>    :: SSTX2 Directionality support
418  * <9>     :: SSRX1 Directionality support        418  * <9>     :: SSRX1 Directionality support
419  * <8>     :: SSRX2 Directionality support        419  * <8>     :: SSRX2 Directionality support
420  * <7:5>   :: Vconn power                         420  * <7:5>   :: Vconn power
421  * <4>     :: Vconn power required                421  * <4>     :: Vconn power required
422  * <3>     :: Vbus power required                 422  * <3>     :: Vbus power required
423  * <2:0>   :: USB SS Signaling support            423  * <2:0>   :: USB SS Signaling support
424  */                                               424  */
425 #define VDO_AMA(hw, fw, tx1d, tx2d, rx1d, rx2d    425 #define VDO_AMA(hw, fw, tx1d, tx2d, rx1d, rx2d, vcpwr, vcr, vbr, usbss) \
426         (((hw) & 0x7) << 28 | ((fw) & 0x7) <<     426         (((hw) & 0x7) << 28 | ((fw) & 0x7) << 24                        \
427          | (tx1d) << 11 | (tx2d) << 10 | (rx1d    427          | (tx1d) << 11 | (tx2d) << 10 | (rx1d) << 9 | (rx2d) << 8      \
428          | ((vcpwr) & 0x7) << 5 | (vcr) << 4 |    428          | ((vcpwr) & 0x7) << 5 | (vcr) << 4 | (vbr) << 3               \
429          | ((usbss) & 0x7))                       429          | ((usbss) & 0x7))
430                                                   430 
431 #define PD_VDO_AMA_VCONN_REQ(vdo)       (((vdo    431 #define PD_VDO_AMA_VCONN_REQ(vdo)       (((vdo) >> 4) & 1)
432 #define PD_VDO_AMA_VBUS_REQ(vdo)        (((vdo    432 #define PD_VDO_AMA_VBUS_REQ(vdo)        (((vdo) >> 3) & 1)
433                                                   433 
434 #define AMA_USBSS_U2_ONLY       0                 434 #define AMA_USBSS_U2_ONLY       0
435 #define AMA_USBSS_U31_GEN1      1                 435 #define AMA_USBSS_U31_GEN1      1
436 #define AMA_USBSS_U31_GEN2      2                 436 #define AMA_USBSS_U31_GEN2      2
437 #define AMA_USBSS_BBONLY        3                 437 #define AMA_USBSS_BBONLY        3
438                                                   438 
439 /*                                                439 /*
440  * VPD VDO                                        440  * VPD VDO
441  * ---------                                      441  * ---------
442  * <31:28> :: HW version                          442  * <31:28> :: HW version
443  * <27:24> :: FW version                          443  * <27:24> :: FW version
444  * <23:21> :: VDO version                         444  * <23:21> :: VDO version
445  * <20:17> :: Reserved, Shall be set to zero      445  * <20:17> :: Reserved, Shall be set to zero
446  * <16:15> :: Maximum Vbus voltage (00b == 20V    446  * <16:15> :: Maximum Vbus voltage (00b == 20V, 01b == 30V, 10b == 40V, 11b == 50V)
447  * <14>    :: Charge through current support (    447  * <14>    :: Charge through current support (0b == 3A, 1b == 5A)
448  * <13>    :: Reserved, Shall be set to zero      448  * <13>    :: Reserved, Shall be set to zero
449  * <12:7>  :: Vbus impedance                      449  * <12:7>  :: Vbus impedance
450  * <6:1>   :: Ground impedance                    450  * <6:1>   :: Ground impedance
451  * <0>     :: Charge through support (0b == no    451  * <0>     :: Charge through support (0b == no, 1b == yes)
452  */                                               452  */
453 #define VPD_VDO_VER1_0          0                 453 #define VPD_VDO_VER1_0          0
454 #define VPD_MAX_VBUS_20V        0                 454 #define VPD_MAX_VBUS_20V        0
455 #define VPD_MAX_VBUS_30V        1                 455 #define VPD_MAX_VBUS_30V        1
456 #define VPD_MAX_VBUS_40V        2                 456 #define VPD_MAX_VBUS_40V        2
457 #define VPD_MAX_VBUS_50V        3                 457 #define VPD_MAX_VBUS_50V        3
458 #define VPDCT_CURR_3A           0                 458 #define VPDCT_CURR_3A           0
459 #define VPDCT_CURR_5A           1                 459 #define VPDCT_CURR_5A           1
460 #define VPDCT_NOT_SUPP          0                 460 #define VPDCT_NOT_SUPP          0
461 #define VPDCT_SUPP              1                 461 #define VPDCT_SUPP              1
462                                                   462 
463 #define VDO_VPD(hw, fw, ver, vbm, curr, vbi, g    463 #define VDO_VPD(hw, fw, ver, vbm, curr, vbi, gi, ct)                    \
464         (((hw) & 0xf) << 28 | ((fw) & 0xf) <<     464         (((hw) & 0xf) << 28 | ((fw) & 0xf) << 24 | ((ver) & 0x7) << 21  \
465          | ((vbm) & 0x3) << 15 | (curr) << 14     465          | ((vbm) & 0x3) << 15 | (curr) << 14 | ((vbi) & 0x3f) << 7     \
466          | ((gi) & 0x3f) << 1 | (ct))             466          | ((gi) & 0x3f) << 1 | (ct))
467                                                   467 
468 #endif /* __DT_POWER_DELIVERY_H */                468 #endif /* __DT_POWER_DELIVERY_H */
469                                                   469 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php