tcpm.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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. #define PD_PPS_CTRL_TIMEOUT (MSEC_PER_SEC * 10)
  35. enum tcpm_transmit_status {
  36. TCPC_TX_SUCCESS = 0,
  37. TCPC_TX_DISCARDED = 1,
  38. TCPC_TX_FAILED = 2,
  39. };
  40. enum tcpm_transmit_type {
  41. TCPC_TX_SOP = 0,
  42. TCPC_TX_SOP_PRIME = 1,
  43. TCPC_TX_SOP_PRIME_PRIME = 2,
  44. TCPC_TX_SOP_DEBUG_PRIME = 3,
  45. TCPC_TX_SOP_DEBUG_PRIME_PRIME = 4,
  46. TCPC_TX_HARD_RESET = 5,
  47. TCPC_TX_CABLE_RESET = 6,
  48. TCPC_TX_BIST_MODE_2 = 7
  49. };
  50. /**
  51. * struct tcpc_config - Port configuration
  52. * @src_pdo: PDO parameters sent to port partner as response to
  53. * PD_CTRL_GET_SOURCE_CAP message
  54. * @nr_src_pdo: Number of entries in @src_pdo
  55. * @snk_pdo: PDO parameters sent to partner as response to
  56. * PD_CTRL_GET_SINK_CAP message
  57. * @nr_snk_pdo: Number of entries in @snk_pdo
  58. * @operating_snk_mw:
  59. * Required operating sink power in mW
  60. * @type: Port type (TYPEC_PORT_DFP, TYPEC_PORT_UFP, or
  61. * TYPEC_PORT_DRP)
  62. * @default_role:
  63. * Default port role (TYPEC_SINK or TYPEC_SOURCE).
  64. * Set to TYPEC_NO_PREFERRED_ROLE if no default role.
  65. * @try_role_hw:True if try.{Src,Snk} is implemented in hardware
  66. * @alt_modes: List of supported alternate modes
  67. */
  68. struct tcpc_config {
  69. const u32 *src_pdo;
  70. unsigned int nr_src_pdo;
  71. const u32 *snk_pdo;
  72. unsigned int nr_snk_pdo;
  73. const u32 *snk_vdo;
  74. unsigned int nr_snk_vdo;
  75. unsigned int operating_snk_mw;
  76. enum typec_port_type type;
  77. enum typec_port_data data;
  78. enum typec_role default_role;
  79. bool try_role_hw; /* try.{src,snk} implemented in hardware */
  80. const struct typec_altmode_desc *alt_modes;
  81. };
  82. /* Mux state attributes */
  83. #define TCPC_MUX_USB_ENABLED BIT(0) /* USB enabled */
  84. #define TCPC_MUX_DP_ENABLED BIT(1) /* DP enabled */
  85. #define TCPC_MUX_POLARITY_INVERTED BIT(2) /* Polarity inverted */
  86. /* Mux modes, decoded to attributes */
  87. enum tcpc_mux_mode {
  88. TYPEC_MUX_NONE = 0, /* Open switch */
  89. TYPEC_MUX_USB = TCPC_MUX_USB_ENABLED, /* USB only */
  90. TYPEC_MUX_DP = TCPC_MUX_DP_ENABLED, /* DP only */
  91. TYPEC_MUX_DOCK = TCPC_MUX_USB_ENABLED | /* Both USB and DP */
  92. TCPC_MUX_DP_ENABLED,
  93. };
  94. /**
  95. * struct tcpc_dev - Port configuration and callback functions
  96. * @config: Pointer to port configuration
  97. * @get_vbus: Called to read current VBUS state
  98. * @get_current_limit:
  99. * Optional; called by the tcpm core when configured as a snk
  100. * and cc=Rp-def. This allows the tcpm to provide a fallback
  101. * current-limit detection method for the cc=Rp-def case.
  102. * For example, some tcpcs may include BC1.2 charger detection
  103. * and use that in this case.
  104. * @set_cc: Called to set value of CC pins
  105. * @get_cc: Called to read current CC pin values
  106. * @set_polarity:
  107. * Called to set polarity
  108. * @set_vconn: Called to enable or disable VCONN
  109. * @set_vbus: Called to enable or disable VBUS
  110. * @set_current_limit:
  111. * Optional; called to set current limit as negotiated
  112. * with partner.
  113. * @set_pd_rx: Called to enable or disable reception of PD messages
  114. * @set_roles: Called to set power and data roles
  115. * @start_drp_toggling:
  116. * Optional; if supported by hardware, called to start DRP
  117. * toggling. DRP toggling is stopped automatically if
  118. * a connection is established.
  119. * @try_role: Optional; called to set a preferred role
  120. * @pd_transmit:Called to transmit PD message
  121. * @mux: Pointer to multiplexer data
  122. */
  123. struct tcpc_dev {
  124. const struct tcpc_config *config;
  125. int (*init)(struct tcpc_dev *dev);
  126. int (*get_vbus)(struct tcpc_dev *dev);
  127. int (*get_current_limit)(struct tcpc_dev *dev);
  128. int (*set_cc)(struct tcpc_dev *dev, enum typec_cc_status cc);
  129. int (*get_cc)(struct tcpc_dev *dev, enum typec_cc_status *cc1,
  130. enum typec_cc_status *cc2);
  131. int (*set_polarity)(struct tcpc_dev *dev,
  132. enum typec_cc_polarity polarity);
  133. int (*set_vconn)(struct tcpc_dev *dev, bool on);
  134. int (*set_vbus)(struct tcpc_dev *dev, bool on, bool charge);
  135. int (*set_current_limit)(struct tcpc_dev *dev, u32 max_ma, u32 mv);
  136. int (*set_pd_rx)(struct tcpc_dev *dev, bool on);
  137. int (*set_roles)(struct tcpc_dev *dev, bool attached,
  138. enum typec_role role, enum typec_data_role data);
  139. int (*start_drp_toggling)(struct tcpc_dev *dev,
  140. enum typec_cc_status cc);
  141. int (*try_role)(struct tcpc_dev *dev, int role);
  142. int (*pd_transmit)(struct tcpc_dev *dev, enum tcpm_transmit_type type,
  143. const struct pd_message *msg);
  144. };
  145. struct tcpm_port;
  146. struct tcpm_port *tcpm_register_port(struct device *dev, struct tcpc_dev *tcpc);
  147. void tcpm_unregister_port(struct tcpm_port *port);
  148. int tcpm_update_source_capabilities(struct tcpm_port *port, const u32 *pdo,
  149. unsigned int nr_pdo);
  150. int tcpm_update_sink_capabilities(struct tcpm_port *port, const u32 *pdo,
  151. unsigned int nr_pdo,
  152. unsigned int operating_snk_mw);
  153. void tcpm_vbus_change(struct tcpm_port *port);
  154. void tcpm_cc_change(struct tcpm_port *port);
  155. void tcpm_pd_receive(struct tcpm_port *port,
  156. const struct pd_message *msg);
  157. void tcpm_pd_transmit_complete(struct tcpm_port *port,
  158. enum tcpm_transmit_status status);
  159. void tcpm_pd_hard_reset(struct tcpm_port *port);
  160. void tcpm_tcpc_reset(struct tcpm_port *port);
  161. #endif /* __LINUX_USB_TCPM_H */