tcpci->data->frs_sourcing_vbus(tcpci, tcpci->data);
 }
 
+static void tcpci_check_contaminant(struct tcpc_dev *dev)
+{
+       struct tcpci *tcpci = tcpc_to_tcpci(dev);
+
+       if (tcpci->data->check_contaminant)
+               tcpci->data->check_contaminant(tcpci, tcpci->data);
+}
+
 static int tcpci_set_bist_data(struct tcpc_dev *tcpc, bool enable)
 {
        struct tcpci *tcpci = tcpc_to_tcpci(tcpc);
        tcpci->tcpc.frs_sourcing_vbus = tcpci_frs_sourcing_vbus;
        tcpci->tcpc.set_partner_usb_comm_capable = tcpci_set_partner_usb_comm_capable;
 
+       if (tcpci->data->check_contaminant)
+               tcpci->tcpc.check_contaminant = tcpci_check_contaminant;
+
        if (tcpci->data->auto_discharge_disconnect) {
                tcpci->tcpc.enable_auto_vbus_discharge = tcpci_enable_auto_vbus_discharge;
                tcpci->tcpc.set_auto_vbus_discharge_threshold =
 
  *             Optional; The USB Communications Capable bit indicates if port
  *             partner is capable of communication over the USB data lines
  *             (e.g. D+/- or SS Tx/Rx). Called to notify the status of the bit.
+ * @check_contaminant:
+ *             Optional; The callback is invoked when chiplevel drivers indicated
+ *             that the USB port needs to be checked for contaminant presence.
+ *             Chip level drivers are expected to check for contaminant and call
+ *             tcpm_clean_port when the port is clean to put the port back into
+ *             toggling state.
  */
 struct tcpci_data {
        struct regmap *regmap;
        void (*frs_sourcing_vbus)(struct tcpci *tcpci, struct tcpci_data *data);
        void (*set_partner_usb_comm_capable)(struct tcpci *tcpci, struct tcpci_data *data,
                                             bool capable);
+       void (*check_contaminant)(struct tcpci *tcpci, struct tcpci_data *data);
 };
 
 struct tcpci *tcpci_register_port(struct device *dev, struct tcpci_data *data);