android /linux usb typec 插拔以及主从机识别过程

0.硬件原理

// 这里的主从都是对于设备本身来说的
DFP (Downstream Facing Port) 主
UFP (Upstream Facing Port) 从

在DFP的CC pin有上拉电阻Rp,在UFP的CC pin有下拉电阻Rd。

— 未连接时,DFP的VBUS是无输出的。
— 连接后,CC pin相连,DFP的CC pin会检测到UFP的下拉电阻Rd,说明连接上了,DFP就打开Vbus电源开关,输出电源给UFP。而哪个CC pin(CC1,CC2)检测到下拉电阻就确定接口插入的方向,顺便切换RX/TX


1.代码流程


1. 1 发出typec notify事件

( drivers\usb\typecphy-fusb300.c)

    // 1.1 typc事件集合
    enum typec_event {
        TYPEC_EVENT_UNKNOWN,
        TYPEC_EVENT_VBUS,
        TYPEC_EVENT_DRP,
        TYPEC_EVENT_UFP,            // 从机插入事件
        TYPEC_EVENT_DFP,            // 主机插入事件
        TYPEC_EVENT_TIMER,
        TYPEC_EVENT_NONE,           // 拔出事件
        TYPEC_EVENT_DEV_REMOVE,
    };           

    // 1.2 发出typec事件
    fusb300_probe
    fusb300_send_ufp_notification
    fusb300_tog_stat_work    
    fusb300_handle_vbus_int
    fusb300_interrupt
    fusb300_valid_disconnect
            atomic_notifier_call_chain(&phy->notifier,TYPEC_EVENT_XXX, phy);

1. 2 监听typec notify事件

( drivers/usb/typec/usb_typec_detect.c)

typec_bind_detect

   typec_register_notifier(phy, &detect->nb);
            atomic_notifier_chain_register(phy->notifier, &detect->nb);

detect->nb.notifier_call = typec_handle_phy_ntf;

(1) ☆ notify回调函数
typec_handle_phy_ntf


(2) typec cable接口的类型

                    #define TYPEC_CABLE_USB           "USB"                                   // usb类型
                    #define TYPEC_CABLE_USB_HOST    "USB-Host"                           // host 类型
                    #define TYPEC_CABLE_USB_SNK "USB_TYPEC_SNK"                 // 从机  (典型的从机为psy设备)
                    #define TYPEC_CABLE_USB_SRC "USB_TYPEC_SRC"                 // 主机
                    #define TYPEC_CABLE_USB_DP_SRC  "USB_TYPEC_DP_SOURCE"      // dp

(3) 从机插入事件
case TYPEC_EVENT_UFP:
schedule_work(&detect->ufp_work);

            // 从机插入工作队列处理函数
            detect_ufp_work
                detect_update_ufp_state
                    typec_detect_notify_extcon(detect,TYPEC_CABLE_USB_SNK, true);
             typec_detect_notify_extcon(detect,TYPEC_CABLE_USB, true);

(4) 拔出事件
case TYPEC_EVENT_NONE:
schedule_work(&detect->phy_ntf_work);

        //  拔出工作队列处理函数: typec拔出cable接口分类处理
            update_phy_state

                 case TYPEC_EVENT_NONE:

                 // detect->state == DETECT_STATE_ATTACHED_UFP) 从机

                            typec_detect_notify_extcon(detect,TYPEC_CABLE_USB_SNK, false);

                            if (detect->usb_state) 
                            typec_detect_notify_extcon(detect,TYPEC_CABLE_USB, false);

                                else if (detect->usb_host_state) 
                            typec_detect_notify_extcon(detect,TYPEC_CABLE_USB_HOST, false);



                //  detect->state == DETECT_STATE_ATTACHED_DFP)  主机

                        typec_detect_notify_extcon(detect,TYPEC_CABLE_USB_SRC, false);

                        if (detect->usb_state)  
                        typec_detect_notify_extcon(detect,TYPEC_CABLE_USB, false);

                        else if (detect->usb_host_state) 
                        typec_detect_notify_extcon(detect,TYPEC_CABLE_USB_HOST, false);

1.3 main func: typec_detect_notify_extcon

typec_detect_notify_extcon
    case E_TYPEC_CABLE_USB_SNK:
        typec_detect_send_psy_notification(detect, state);

    case E_TYPEC_CABLE_USB_SRC:
    case E_TYPEC_CABLE_USB_HOST:
    case E_TYPEC_CABLE_USB_SNK:
    case E_TYPEC_CABLE_USB_SRC:
    case E_TYPEC_CABLE_DP_SRC:

      extcon_set_cable_state(detect->edev, type, state);

你可能感兴趣的:(usb)