基于OHCI的USB主机 —— 寄存器(传输)

启动控制传输

进行控制传输以前,须要设置好相应的 ED TD 参数(参见下一章),启动传输时须要设置 OHCI 寄存器中的控制传输 ED 头指针寄存器和控制传输的当前 ED 指针寄存器,而后设置控制寄存器容许处理控制传输列表,控制状态寄存器有控制传输列表数据须要传输,代码以下:
/**
 * 经过 Control 端口传输数据
 * @param *ed 须要进行数据收发的 ED 指针
 * @return 0 - 成功
 */
short ohciCtrlXfer( AT91S_UHP_ED *ed)
{
    // Programming the CHED
    pUhp-> UHP_HcControlHeadED = ( unsigned int ) ed;
 
    // Programming the CCED
    pUhp-> UHP_HcControlCurrentED = ( unsigned int ) ed;
 
    // UHP: UHP is now operational and control list processing is enabled
    pUhp-> UHP_HcControl = 0x90;
   
    // UHP: Notify the Hc that the Control list is filled
    pUhp-> UHP_HcCommandStatus = OHCI_HC_COMMAND_STATUS_CLF;
   
    return 0;
}
 

启动批量传输

启动批量传输的流程与控制传输相似,只不过相应寄存器换为批量传输的寄存器了:
/**
 * 经过 Bulk 端口传输数据
 * @param *ed 须要进行数据收发的 ED 指针
 * @return 0 - 成功
 */
short ohciBulkXfer( AT91S_UHP_ED *ed)
{
    // 禁止 ED
    pUhp-> UHP_HcControl = 0x180;
    pUhp-> UHP_HcCommandStatus = 0x00;
   
    // Programming the BHED
    pUhp-> UHP_HcBulkHeadED = ( unsigned int ) ed;
 
    // Programming the BCED
    pUhp-> UHP_HcBulkCurrentED = ( unsigned int ) ed;
 
    // UHP: UHP is now operational and control list processing is enabled
    pUhp-> UHP_HcControl = 0x0A0;
   
    // UHP: Notify the Hc that the Bulk list is filled
    pUhp-> UHP_HcCommandStatus = OHCI_HC_COMMAND_STATUS_BLF;
   
    return 0;
}