tcpm.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /*
  2. * Copyright 2015-2017 Google, Inc
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. */
  14. #ifndef __LINUX_USB_TCPM_H
  15. #define __LINUX_USB_TCPM_H
  16. #include <linux/bitops.h>
  17. #include <linux/usb/typec.h>
  18. #include "pd.h"
  19. enum typec_cc_status {
  20. TYPEC_CC_OPEN,
  21. TYPEC_CC_RA,
  22. TYPEC_CC_RD,
  23. TYPEC_CC_RP_DEF,
  24. TYPEC_CC_RP_1_5,
  25. TYPEC_CC_RP_3_0,
  26. };
  27. enum typec_cc_polarity {
  28. TYPEC_POLARITY_CC1,
  29. TYPEC_POLARITY_CC2,
  30. };
  31. /* Time to wait for TCPC to complete transmit */
  32. #define PD_T_TCPC_TX_TIMEOUT 100 /* in ms */
  33. #define PD_ROLE_SWAP_TIMEOUT (MSEC_PER_SEC * 10)
  34. enum tcpm_transmit_status {
  35. TCPC_TX_SUCCESS = 0,
  36. TCPC_TX_DISCARDED = 1,
  37. TCPC_TX_FAILED = 2,
  38. };
  39. enum tcpm_transmit_type {
  40. TCPC_TX_SOP = 0,
  41. TCPC_TX_SOP_PRIME = 1,
  42. TCPC_TX_SOP_PRIME_PRIME = 2,
  43. TCPC_TX_SOP_DEBUG_PRIME = 3,
  44. TCPC_TX_SOP_DEBUG_PRIME_PRIME = 4,
  45. TCPC_TX_HARD_RESET = 5,
  46. TCPC_TX_CABLE_RESET = 6,
  47. TCPC_TX_BIST_MODE_2 = 7
  48. };
  49. /**
  50. * struct tcpc_config - Port configuration
  51. * @src_pdo: PDO parameters sent to port partner as response to
  52. * PD_CTRL_GET_SOURCE_CAP message
  53. * @nr_src_pdo: Number of entries in @src_pdo
  54. * @snk_pdo: PDO parameters sent to partner as response to
  55. * PD_CTRL_GET_SINK_CAP message
  56. * @nr_snk_pdo: Number of entries in @snk_pdo
  57. * @max_snk_mv: Maximum acceptable sink voltage in mV
  58. * @max_snk_ma: Maximum sink current in mA
  59. * @max_snk_mw: Maximum required sink power in mW
  60. * @operating_snk_mw:
  61. * Required operating sink power in mW
  62. * @type: Port type (TYPEC_PORT_DFP, TYPEC_PORT_UFP, or
  63. * TYPEC_PORT_DRP)
  64. * @default_role:
  65. * Default port role (TYPEC_SINK or TYPEC_SOURCE).
  66. * Set to TYPEC_NO_PREFERRED_ROLE if no default role.
  67. * @try_role_hw:True if try.{Src,Snk} is implemented in hardware
  68. * @alt_modes: List of supported alternate modes
  69. */
  70. struct tcpc_config {
  71. const u32 *src_pdo;
  72. unsigned int nr_src_pdo;
  73. const u32 *snk_pdo;
  74. unsigned int nr_snk_pdo;
  75. const u32 *snk_vdo;
  76. unsigned int nr_snk_vdo;
  77. unsigned int max_snk_mv;
  78. unsigned int max_snk_ma;
  79. unsigned int max_snk_mw;
  80. unsigned int operating_snk_mw;
  81. enum typec_port_type type;
  82. enum typec_port_data data;
  83. enum typec_role default_role;
  84. bool try_role_hw; /* try.{src,snk} implemented in hardware */
  85. const struct typec_altmode_desc *alt_modes;
  86. };
  87. /* Mux state attributes */
  88. #define TCPC_MUX_USB_ENABLED BIT(0) /* USB enabled */
  89. #define TCPC_MUX_DP_ENABLED BIT(1) /* DP enabled */
  90. #define TCPC_MUX_POLARITY_INVERTED BIT(2) /* Polarity inverted */
  91. /* Mux modes, decoded to attributes */
  92. enum tcpc_mux_mode {
  93. TYPEC_MUX_NONE = 0, /* Open switch */
  94. TYPEC_MUX_USB = TCPC_MUX_USB_ENABLED, /* USB only */
  95. TYPEC_MUX_DP = TCPC_MUX_DP_ENABLED, /* DP only */
  96. TYPEC_MUX_DOCK = TCPC_MUX_USB_ENABLED | /* Both USB and DP */
  97. TCPC_MUX_DP_ENABLED,
  98. };
  99. /**
  100. * struct tcpc_dev - Port configuration and callback functions
  101. * @config: Pointer to port configuration
  102. * @get_vbus: Called to read current VBUS state
  103. * @get_current_limit:
  104. * Optional; called by the tcpm core when configured as a snk
  105. * and cc=Rp-def. This allows the tcpm to provide a fallback
  106. * current-limit detection method for the cc=Rp-def case.
  107. * For example, some tcpcs may include BC1.2 charger detection
  108. * and use that in this case.
  109. * @set_cc: Called to set value of CC pins
  110. * @get_cc: Called to read current CC pin values
  111. * @set_polarity:
  112. * Called to set polarity
  113. * @set_vconn: Called to enable or disable VCONN
  114. * @set_vbus: Called to enable or disable VBUS
  115. * @set_current_limit:
  116. * Optional; called to set current limit as negotiated
  117. * with partner.
  118. * @set_pd_rx: Called to enable or disable reception of PD messages
  119. * @set_roles: Called to set power and data roles
  120. * @start_drp_toggling:
  121. * Optional; if supported by hardware, called to start DRP
  122. * toggling. DRP toggling is stopped automatically if
  123. * a connection is established.
  124. * @try_role: Optional; called to set a preferred role
  125. * @pd_transmit:Called to transmit PD message
  126. * @mux: Pointer to multiplexer data
  127. */
  128. struct tcpc_dev {
  129. const struct tcpc_config *config;
  130. int (*init)(struct tcpc_dev *dev);
  131. int (*get_vbus)(struct tcpc_dev *dev);
  132. int (*get_current_limit)(struct tcpc_dev *dev);
  133. int (*set_cc)(struct tcpc_dev *dev, enum typec_cc_status cc);
  134. int (*get_cc)(struct tcpc_dev *dev, enum typec_cc_status *cc1,
  135. enum typec_cc_status *cc2);
  136. int (*set_polarity)(struct tcpc_dev *dev,
  137. enum typec_cc_polarity polarity);
  138. int (*set_vconn)(struct tcpc_dev *dev, bool on);
  139. int (*set_vbus)(struct tcpc_dev *dev, bool on, bool charge);
  140. int (*set_current_limit)(struct tcpc_dev *dev, u32 max_ma, u32 mv);
  141. int (*set_pd_rx)(struct tcpc_dev *dev, bool on);
  142. int (*set_roles)(struct tcpc_dev *dev, bool attached,
  143. enum typec_role role, enum typec_data_role data);
  144. int (*start_drp_toggling)(struct tcpc_dev *dev,
  145. enum typec_cc_status cc);
  146. int (*try_role)(struct tcpc_dev *dev, int role);
  147. int (*pd_transmit)(struct tcpc_dev *dev, enum tcpm_transmit_type type,
  148. const struct pd_message *msg);
  149. };
  150. struct tcpm_port;
  151. struct tcpm_port *tcpm_register_port(struct device *dev, struct tcpc_dev *tcpc);
  152. void tcpm_unregister_port(struct tcpm_port *port);
  153. int tcpm_update_source_capabilities(struct tcpm_port *port, const u32 *pdo,
  154. unsigned int nr_pdo);
  155. int tcpm_update_sink_capabilities(struct tcpm_port *port, const u32 *pdo,
  156. unsigned int nr_pdo,
  157. unsigned int max_snk_mv,
  158. unsigned int max_snk_ma,
  159. unsigned int max_snk_mw,
  160. unsigned int operating_snk_mw);
  161. void tcpm_vbus_change(struct tcpm_port *port);
  162. void tcpm_cc_change(struct tcpm_port *port);
  163. void tcpm_pd_receive(struct tcpm_port *port,
  164. const struct pd_message *msg);
  165. void tcpm_pd_transmit_complete(struct tcpm_port *port,
  166. enum tcpm_transmit_status status);
  167. void tcpm_pd_hard_reset(struct tcpm_port *port);
  168. void tcpm_tcpc_reset(struct tcpm_port *port);
  169. #endif /* __LINUX_USB_TCPM_H */