at v6.1 10 kB view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2 3#ifndef __LINUX_USB_TYPEC_H 4#define __LINUX_USB_TYPEC_H 5 6#include <linux/types.h> 7 8/* USB Type-C Specification releases */ 9#define USB_TYPEC_REV_1_0 0x100 /* 1.0 */ 10#define USB_TYPEC_REV_1_1 0x110 /* 1.1 */ 11#define USB_TYPEC_REV_1_2 0x120 /* 1.2 */ 12#define USB_TYPEC_REV_1_3 0x130 /* 1.3 */ 13#define USB_TYPEC_REV_1_4 0x140 /* 1.4 */ 14#define USB_TYPEC_REV_2_0 0x200 /* 2.0 */ 15 16struct typec_partner; 17struct typec_cable; 18struct typec_plug; 19struct typec_port; 20struct typec_altmode_ops; 21 22struct fwnode_handle; 23struct device; 24 25struct usb_power_delivery; 26 27enum typec_port_type { 28 TYPEC_PORT_SRC, 29 TYPEC_PORT_SNK, 30 TYPEC_PORT_DRP, 31}; 32 33enum typec_port_data { 34 TYPEC_PORT_DFP, 35 TYPEC_PORT_UFP, 36 TYPEC_PORT_DRD, 37}; 38 39enum typec_plug_type { 40 USB_PLUG_NONE, 41 USB_PLUG_TYPE_A, 42 USB_PLUG_TYPE_B, 43 USB_PLUG_TYPE_C, 44 USB_PLUG_CAPTIVE, 45}; 46 47enum typec_data_role { 48 TYPEC_DEVICE, 49 TYPEC_HOST, 50}; 51 52enum typec_role { 53 TYPEC_SINK, 54 TYPEC_SOURCE, 55}; 56 57static inline int is_sink(enum typec_role role) 58{ 59 return role == TYPEC_SINK; 60} 61 62static inline int is_source(enum typec_role role) 63{ 64 return role == TYPEC_SOURCE; 65} 66 67enum typec_pwr_opmode { 68 TYPEC_PWR_MODE_USB, 69 TYPEC_PWR_MODE_1_5A, 70 TYPEC_PWR_MODE_3_0A, 71 TYPEC_PWR_MODE_PD, 72}; 73 74enum typec_accessory { 75 TYPEC_ACCESSORY_NONE, 76 TYPEC_ACCESSORY_AUDIO, 77 TYPEC_ACCESSORY_DEBUG, 78}; 79 80#define TYPEC_MAX_ACCESSORY 3 81 82enum typec_orientation { 83 TYPEC_ORIENTATION_NONE, 84 TYPEC_ORIENTATION_NORMAL, 85 TYPEC_ORIENTATION_REVERSE, 86}; 87 88/* 89 * struct enter_usb_data - Enter_USB Message details 90 * @eudo: Enter_USB Data Object 91 * @active_link_training: Active Cable Plug Link Training 92 * 93 * @active_link_training is a flag that should be set with uni-directional SBRX 94 * communication, and left 0 with passive cables and with bi-directional SBRX 95 * communication. 96 */ 97struct enter_usb_data { 98 u32 eudo; 99 unsigned char active_link_training:1; 100}; 101 102/* 103 * struct usb_pd_identity - USB Power Delivery identity data 104 * @id_header: ID Header VDO 105 * @cert_stat: Cert Stat VDO 106 * @product: Product VDO 107 * @vdo: Product Type Specific VDOs 108 * 109 * USB power delivery Discover Identity command response data. 110 * 111 * REVISIT: This is USB Power Delivery specific information, so this structure 112 * probable belongs to USB Power Delivery header file once we have them. 113 */ 114struct usb_pd_identity { 115 u32 id_header; 116 u32 cert_stat; 117 u32 product; 118 u32 vdo[3]; 119}; 120 121int typec_partner_set_identity(struct typec_partner *partner); 122int typec_cable_set_identity(struct typec_cable *cable); 123 124/* 125 * struct typec_altmode_desc - USB Type-C Alternate Mode Descriptor 126 * @svid: Standard or Vendor ID 127 * @mode: Index of the Mode 128 * @vdo: VDO returned by Discover Modes USB PD command 129 * @roles: Only for ports. DRP if the mode is available in both roles 130 * 131 * Description of an Alternate Mode which a connector, cable plug or partner 132 * supports. 133 */ 134struct typec_altmode_desc { 135 u16 svid; 136 u8 mode; 137 u32 vdo; 138 /* Only used with ports */ 139 enum typec_port_data roles; 140}; 141 142void typec_partner_set_pd_revision(struct typec_partner *partner, u16 pd_revision); 143int typec_partner_set_num_altmodes(struct typec_partner *partner, int num_altmodes); 144struct typec_altmode 145*typec_partner_register_altmode(struct typec_partner *partner, 146 const struct typec_altmode_desc *desc); 147int typec_plug_set_num_altmodes(struct typec_plug *plug, int num_altmodes); 148struct typec_altmode 149*typec_plug_register_altmode(struct typec_plug *plug, 150 const struct typec_altmode_desc *desc); 151struct typec_altmode 152*typec_port_register_altmode(struct typec_port *port, 153 const struct typec_altmode_desc *desc); 154 155void typec_port_register_altmodes(struct typec_port *port, 156 const struct typec_altmode_ops *ops, void *drvdata, 157 struct typec_altmode **altmodes, size_t n); 158 159void typec_unregister_altmode(struct typec_altmode *altmode); 160 161struct typec_port *typec_altmode2port(struct typec_altmode *alt); 162 163void typec_altmode_update_active(struct typec_altmode *alt, bool active); 164 165enum typec_plug_index { 166 TYPEC_PLUG_SOP_P, 167 TYPEC_PLUG_SOP_PP, 168}; 169 170/* 171 * struct typec_plug_desc - USB Type-C Cable Plug Descriptor 172 * @index: SOP Prime for the plug connected to DFP and SOP Double Prime for the 173 * plug connected to UFP 174 * 175 * Represents USB Type-C Cable Plug. 176 */ 177struct typec_plug_desc { 178 enum typec_plug_index index; 179}; 180 181/* 182 * struct typec_cable_desc - USB Type-C Cable Descriptor 183 * @type: The plug type from USB PD Cable VDO 184 * @active: Is the cable active or passive 185 * @identity: Result of Discover Identity command 186 * @pd_revision: USB Power Delivery Specification revision if supported 187 * 188 * Represents USB Type-C Cable attached to USB Type-C port. 189 */ 190struct typec_cable_desc { 191 enum typec_plug_type type; 192 unsigned int active:1; 193 struct usb_pd_identity *identity; 194 u16 pd_revision; /* 0300H = "3.0" */ 195 196}; 197 198/* 199 * struct typec_partner_desc - USB Type-C Partner Descriptor 200 * @usb_pd: USB Power Delivery support 201 * @accessory: Audio, Debug or none. 202 * @identity: Discover Identity command data 203 * @pd_revision: USB Power Delivery Specification Revision if supported 204 * 205 * Details about a partner that is attached to USB Type-C port. If @identity 206 * member exists when partner is registered, a directory named "identity" is 207 * created to sysfs for the partner device. 208 * 209 * @pd_revision is based on the setting of the "Specification Revision" field 210 * in the message header on the initial "Source Capabilities" message received 211 * from the partner, or a "Request" message received from the partner, depending 212 * on whether our port is a Sink or a Source. 213 */ 214struct typec_partner_desc { 215 unsigned int usb_pd:1; 216 enum typec_accessory accessory; 217 struct usb_pd_identity *identity; 218 u16 pd_revision; /* 0300H = "3.0" */ 219}; 220 221/** 222 * struct typec_operations - USB Type-C Port Operations 223 * @try_role: Set data role preference for DRP port 224 * @dr_set: Set Data Role 225 * @pr_set: Set Power Role 226 * @vconn_set: Source VCONN 227 * @port_type_set: Set port type 228 * @pd_get: Get available USB Power Delivery Capabilities. 229 * @pd_set: Set USB Power Delivery Capabilities. 230 */ 231struct typec_operations { 232 int (*try_role)(struct typec_port *port, int role); 233 int (*dr_set)(struct typec_port *port, enum typec_data_role role); 234 int (*pr_set)(struct typec_port *port, enum typec_role role); 235 int (*vconn_set)(struct typec_port *port, enum typec_role role); 236 int (*port_type_set)(struct typec_port *port, 237 enum typec_port_type type); 238 struct usb_power_delivery **(*pd_get)(struct typec_port *port); 239 int (*pd_set)(struct typec_port *port, struct usb_power_delivery *pd); 240}; 241 242enum usb_pd_svdm_ver { 243 SVDM_VER_1_0 = 0, 244 SVDM_VER_2_0 = 1, 245 SVDM_VER_MAX = SVDM_VER_2_0, 246}; 247 248/* 249 * struct typec_capability - USB Type-C Port Capabilities 250 * @type: Supported power role of the port 251 * @data: Supported data role of the port 252 * @revision: USB Type-C Specification release. Binary coded decimal 253 * @pd_revision: USB Power Delivery Specification revision if supported 254 * @svdm_version: USB PD Structured VDM version if supported 255 * @prefer_role: Initial role preference (DRP ports). 256 * @accessory: Supported Accessory Modes 257 * @fwnode: Optional fwnode of the port 258 * @driver_data: Private pointer for driver specific info 259 * @pd: Optional USB Power Delivery Support 260 * @ops: Port operations vector 261 * 262 * Static capabilities of a single USB Type-C port. 263 */ 264struct typec_capability { 265 enum typec_port_type type; 266 enum typec_port_data data; 267 u16 revision; /* 0120H = "1.2" */ 268 u16 pd_revision; /* 0300H = "3.0" */ 269 enum usb_pd_svdm_ver svdm_version; 270 int prefer_role; 271 enum typec_accessory accessory[TYPEC_MAX_ACCESSORY]; 272 unsigned int orientation_aware:1; 273 274 struct fwnode_handle *fwnode; 275 void *driver_data; 276 277 struct usb_power_delivery *pd; 278 279 const struct typec_operations *ops; 280}; 281 282/* Specific to try_role(). Indicates the user want's to clear the preference. */ 283#define TYPEC_NO_PREFERRED_ROLE (-1) 284 285struct typec_port *typec_register_port(struct device *parent, 286 const struct typec_capability *cap); 287void typec_unregister_port(struct typec_port *port); 288 289struct typec_partner *typec_register_partner(struct typec_port *port, 290 struct typec_partner_desc *desc); 291void typec_unregister_partner(struct typec_partner *partner); 292 293struct typec_cable *typec_register_cable(struct typec_port *port, 294 struct typec_cable_desc *desc); 295void typec_unregister_cable(struct typec_cable *cable); 296 297struct typec_cable *typec_cable_get(struct typec_port *port); 298void typec_cable_put(struct typec_cable *cable); 299int typec_cable_is_active(struct typec_cable *cable); 300 301struct typec_plug *typec_register_plug(struct typec_cable *cable, 302 struct typec_plug_desc *desc); 303void typec_unregister_plug(struct typec_plug *plug); 304 305void typec_set_data_role(struct typec_port *port, enum typec_data_role role); 306void typec_set_pwr_role(struct typec_port *port, enum typec_role role); 307void typec_set_vconn_role(struct typec_port *port, enum typec_role role); 308void typec_set_pwr_opmode(struct typec_port *port, enum typec_pwr_opmode mode); 309 310int typec_set_orientation(struct typec_port *port, 311 enum typec_orientation orientation); 312enum typec_orientation typec_get_orientation(struct typec_port *port); 313int typec_set_mode(struct typec_port *port, int mode); 314 315void *typec_get_drvdata(struct typec_port *port); 316 317int typec_get_fw_cap(struct typec_capability *cap, 318 struct fwnode_handle *fwnode); 319 320int typec_find_pwr_opmode(const char *name); 321int typec_find_orientation(const char *name); 322int typec_find_port_power_role(const char *name); 323int typec_find_power_role(const char *name); 324int typec_find_port_data_role(const char *name); 325 326void typec_partner_set_svdm_version(struct typec_partner *partner, 327 enum usb_pd_svdm_ver svdm_version); 328int typec_get_negotiated_svdm_version(struct typec_port *port); 329 330int typec_port_set_usb_power_delivery(struct typec_port *port, struct usb_power_delivery *pd); 331int typec_partner_set_usb_power_delivery(struct typec_partner *partner, 332 struct usb_power_delivery *pd); 333 334#endif /* __LINUX_USB_TYPEC_H */