123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880 |
- /**
- ******************************************************************************
- * @file stm32g0xx_hal_hcd.c
- * @author MCD Application Team
- * @brief HCD HAL module driver.
- * This file provides firmware functions to manage the following
- * functionalities of the USB Peripheral Controller:
- * + Initialization and de-initialization functions
- * + IO operation functions
- * + Peripheral Control functions
- * + Peripheral State functions
- *
- ******************************************************************************
- * @attention
- *
- * Copyright (c) 2018 STMicroelectronics.
- * All rights reserved.
- *
- * This software is licensed under terms that can be found in the LICENSE file
- * in the root directory of this software component.
- * If no LICENSE file comes with this software, it is provided AS-IS.
- *
- ******************************************************************************
- @verbatim
- ==============================================================================
- ##### How to use this driver #####
- ==============================================================================
- [..]
- (#)Declare a HCD_HandleTypeDef handle structure, for example:
- HCD_HandleTypeDef hhcd;
- (#)Fill parameters of Init structure in HCD handle
- (#)Call HAL_HCD_Init() API to initialize the HCD peripheral (Core, Host core, ...)
- (#)Initialize the HCD low level resources through the HAL_HCD_MspInit() API:
- (##) Enable the HCD/USB Low Level interface clock using the following macros
- (+++) __HAL_RCC_USB_CLK_ENABLE();
- (##) Initialize the related GPIO clocks
- (##) Configure HCD pin-out
- (##) Configure HCD NVIC interrupt
- (#)Associate the Upper USB Host stack to the HAL HCD Driver:
- (##) hhcd.pData = phost;
- (#)Enable HCD transmission and reception:
- (##) HAL_HCD_Start();
- @endverbatim
- ******************************************************************************
- */
- /* Includes ------------------------------------------------------------------*/
- #include "stm32g0xx_hal.h"
- /** @addtogroup STM32G0xx_HAL_Driver
- * @{
- */
- #ifdef HAL_HCD_MODULE_ENABLED
- #if defined (USB_DRD_FS)
- /** @defgroup HCD HCD
- * @brief HCD HAL module driver
- * @{
- */
- /* Private typedef -----------------------------------------------------------*/
- /* Private define ------------------------------------------------------------*/
- /* Private macro -------------------------------------------------------------*/
- /* Private variables ---------------------------------------------------------*/
- /* Private function ----------------------------------------------------------*/
- /** @defgroup HCD_Private_Functions HCD Private Functions
- * @{
- */
- static void HCD_HC_IN_IRQHandler(HCD_HandleTypeDef *hhcd, uint8_t chnum);
- static void HCD_HC_OUT_IRQHandler(HCD_HandleTypeDef *hhcd, uint8_t chnum);
- static void HCD_Port_IRQHandler(HCD_HandleTypeDef *hhcd);
- static void HAL_HCD_ClearPhyChannel(HCD_HandleTypeDef *hhcd);
- static uint8_t HAL_HCD_GetLogical_Channel(HCD_HandleTypeDef const *hhcd, uint8_t phy_chnum, uint8_t dir);
- static uint8_t HAL_HCD_Check_usedChannel(HCD_HandleTypeDef const *hhcd, uint8_t ch_num);
- static uint8_t HAL_HCD_Get_FreePhyChannel(HCD_HandleTypeDef *hhcd, uint8_t ch_num, uint8_t epnum, uint8_t ep_type);
- #if (USE_USB_DOUBLE_BUFFER == 1U)
- static void HCD_HC_IN_BulkDb(HCD_HandleTypeDef *hhcd, uint8_t ch_num, uint8_t phy_chnum, uint32_t regvalue);
- static void HCD_HC_OUT_BulkDb(HCD_HandleTypeDef *hhcd, uint8_t ch_num, uint8_t phy_chnum, uint32_t regvalue);
- #endif /* (USE_USB_DOUBLE_BUFFER == 1U) */
- static uint16_t HAL_HCD_GetFreePMA(HCD_HandleTypeDef *hhcd, uint16_t mps);
- static HAL_StatusTypeDef HAL_HCD_PMAFree(HCD_HandleTypeDef *hhcd, uint32_t pma_base, uint16_t mps);
- static void inline HCD_HC_IN_ISO(HCD_HandleTypeDef *hhcd, uint8_t ch_num, uint8_t phy_chnum, uint32_t regvalue);
- /**
- * @}
- */
- /* Exported functions --------------------------------------------------------*/
- /** @defgroup HCD_Exported_Functions HCD Exported Functions
- * @{
- */
- /** @defgroup HCD_Exported_Functions_Group1 Initialization and de-initialization functions
- * @brief Initialization and Configuration functions
- *
- @verbatim
- ===============================================================================
- ##### Initialization and de-initialization functions #####
- ===============================================================================
- [..] This section provides functions allowing to:
- @endverbatim
- * @{
- */
- /**
- * @brief Initialize the host driver.
- * @param hhcd HCD handle
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_Init(HCD_HandleTypeDef *hhcd)
- {
- /* Check the HCD handle allocation */
- if (hhcd == NULL)
- {
- return HAL_ERROR;
- }
- /* Check the parameters */
- assert_param(IS_HCD_ALL_INSTANCE(hhcd->Instance));
- if (hhcd->State == HAL_HCD_STATE_RESET)
- {
- /* Allocate lock resource and initialize it */
- hhcd->Lock = HAL_UNLOCKED;
- #if (USE_HAL_HCD_REGISTER_CALLBACKS == 1U)
- hhcd->SOFCallback = HAL_HCD_SOF_Callback;
- hhcd->ConnectCallback = HAL_HCD_Connect_Callback;
- hhcd->DisconnectCallback = HAL_HCD_Disconnect_Callback;
- hhcd->PortEnabledCallback = HAL_HCD_PortEnabled_Callback;
- hhcd->PortDisabledCallback = HAL_HCD_PortDisabled_Callback;
- hhcd->HC_NotifyURBChangeCallback = HAL_HCD_HC_NotifyURBChange_Callback;
- if (hhcd->MspInitCallback == NULL)
- {
- hhcd->MspInitCallback = HAL_HCD_MspInit;
- }
- /* Init the low level hardware */
- hhcd->MspInitCallback(hhcd);
- #else
- /* Init the low level hardware : GPIO, CLOCK, NVIC... */
- HAL_HCD_MspInit(hhcd);
- #endif /* (USE_HAL_HCD_REGISTER_CALLBACKS) */
- }
- hhcd->State = HAL_HCD_STATE_BUSY;
- /* Disable the Interrupts */
- (void)__HAL_HCD_DISABLE(hhcd);
- /* Dma not supported, force to zero */
- hhcd->Init.dma_enable = 0U;
- /* Init the Core (common init.) */
- (void)USB_CoreInit(hhcd->Instance, hhcd->Init);
- /* Force Host Mode */
- (void)USB_SetCurrentMode(hhcd->Instance, USB_HOST_MODE);
- /* Init Host */
- (void)USB_HostInit(hhcd->Instance, hhcd->Init);
- /* Deactivate the power down */
- hhcd->Instance->CNTR &= ~USB_CNTR_PDWN;
- hhcd->State = HAL_HCD_STATE_READY;
- /* Host Port State */
- hhcd->HostState = HCD_HCD_STATE_DISCONNECTED;
- /* Init PMA Address */
- (void)HAL_HCD_PMAReset(hhcd);
- hhcd->State = HAL_HCD_STATE_READY;
- return HAL_OK;
- }
- /**
- * @brief Initialize a host channel.
- * @param hhcd HCD handle
- * @param ch_num Channel number.
- * This parameter can be a value from 1 to 15
- * @param epnum Endpoint number.
- * This parameter can be a value from 1 to 15
- * @param dev_address Current device address
- * This parameter can be a value from 0 to 255
- * @param speed Current device speed.
- * This parameter can be one of these values:
- * HCD_DEVICE_SPEED_HIGH High speed mode,
- * HCD_DEVICE_SPEED_FULL Full speed mode,
- * HCD_DEVICE_SPEED_LOW Low speed mode
- * @param ep_type Endpoint Type.
- * This parameter can be one of these values:
- * USBH_EP_CONTROL Control type,
- * USBH_EP_ISO Isochronous type,
- * USBH_EP_BULK Bulk type,
- * USBH_EP_INTERRUPT Interrupt type
- * @param mps Max Packet Size.
- * This parameter can be a value from 0 to32K
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_HC_Init(HCD_HandleTypeDef *hhcd, uint8_t ch_num,
- uint8_t epnum, uint8_t dev_address,
- uint8_t speed, uint8_t ep_type, uint16_t mps)
- {
- HAL_StatusTypeDef status;
- uint8_t used_channel;
- uint8_t ep0_virtual_channel;
- __HAL_LOCK(hhcd);
- /* Check if the logical channel are already allocated */
- used_channel = HAL_HCD_Check_usedChannel(hhcd, ch_num);
- /* Check if the channel is not already opened */
- if (used_channel == 0U)
- {
- /* Allocate New Physical channel */
- hhcd->hc[ch_num & 0xFU].phy_ch_num = HAL_HCD_Get_FreePhyChannel(hhcd, ch_num, epnum, ep_type);
- /* No free Channel available, return error */
- if (hhcd->hc[ch_num & 0xFU].phy_ch_num == HCD_FREE_CH_NOT_FOUND)
- {
- return HAL_ERROR;
- }
- }
- /* Channel already opened */
- else
- {
- /* Get Physical Channel number */
- hhcd->hc[ch_num & 0xFU].phy_ch_num = (used_channel & 0xF0U) >> 4U;
- }
- if ((epnum & 0x80U) != 0U)
- {
- hhcd->hc[ch_num & 0xFU].ch_dir = CH_IN_DIR;
- }
- else
- {
- hhcd->hc[ch_num & 0xFU].ch_dir = CH_OUT_DIR;
- }
- hhcd->hc[ch_num & 0xFU].dev_addr = dev_address;
- hhcd->hc[ch_num & 0xFU].max_packet = mps;
- hhcd->hc[ch_num & 0xFU].ep_type = ep_type;
- hhcd->hc[ch_num & 0xFU].ep_num = epnum & 0x7FU;
- hhcd->hc[ch_num & 0xFU].speed = speed;
- /* Check if the channel is not already opened */
- if (used_channel == 0U)
- {
- if (((ep_type == EP_TYPE_ISOC) && (hhcd->Init.iso_singlebuffer_enable == 0U)) ||
- ((ep_type == EP_TYPE_BULK) && (hhcd->Init.bulk_doublebuffer_enable == 1U)))
- {
- /* PMA Dynamic Allocation */
- status = HAL_HCD_PMAlloc(hhcd, ch_num, HCD_DBL_BUF, mps);
- if (status == HAL_ERROR)
- {
- return HAL_ERROR;
- }
- /* Clear Channel DTOG_TX */
- HCD_CLEAR_TX_DTOG(hhcd->Instance, hhcd->hc[ch_num & 0xFU].phy_ch_num);
- /* Clear Channel DTOG RX */
- HCD_CLEAR_RX_DTOG(hhcd->Instance, hhcd->hc[ch_num & 0xFU].phy_ch_num);
- }
- else
- {
- if (hhcd->hc[ch_num & 0xFU].ep_num != 0U)
- {
- status = HAL_HCD_PMAlloc(hhcd, ch_num, HCD_SNG_BUF, mps);
- if (status == HAL_ERROR)
- {
- return HAL_ERROR;
- }
- }
- else
- {
- if (ch_num == 0U)
- {
- ep0_virtual_channel = (uint8_t)(hhcd->ep0_PmaAllocState & 0xFU);
- if ((ep0_virtual_channel != 0U) && (((hhcd->ep0_PmaAllocState & 0xF0U) >> 4) == CH_IN_DIR))
- {
- if (hhcd->hc[ch_num & 0xFU].ch_dir == CH_OUT_DIR)
- {
- status = HAL_HCD_PMAlloc(hhcd, ch_num, HCD_SNG_BUF, 64U);
- if (status == HAL_ERROR)
- {
- return HAL_ERROR;
- }
- }
- else
- {
- return HAL_ERROR;
- }
- }
- else
- {
- /* PMA Dynamic Allocation for EP0 OUT direction */
- hhcd->hc[ch_num & 0xFU].ch_dir = CH_OUT_DIR;
- status = HAL_HCD_PMAlloc(hhcd, ch_num, HCD_SNG_BUF, 64U);
- if (status == HAL_ERROR)
- {
- return HAL_ERROR;
- }
- /* PMA Dynamic Allocation for EP0 IN direction */
- hhcd->hc[ch_num & 0xFU].ch_dir = CH_IN_DIR;
- status = HAL_HCD_PMAlloc(hhcd, ch_num, HCD_SNG_BUF, 64U);
- if (status == HAL_ERROR)
- {
- return HAL_ERROR;
- }
- }
- }
- else
- {
- if (((hhcd->ep0_PmaAllocState & 0xF00U) >> 8) == 1U)
- {
- ep0_virtual_channel = (uint8_t)(hhcd->ep0_PmaAllocState & 0xFU);
- if (((hhcd->ep0_PmaAllocState & 0xF0U) >> 4) == CH_IN_DIR)
- {
- hhcd->hc[ch_num & 0xFU].pmaaddr1 = hhcd->hc[ep0_virtual_channel & 0xFU].pmaaddr1;
- }
- else
- {
- hhcd->hc[ch_num & 0xFU].pmaaddr0 = hhcd->hc[ep0_virtual_channel & 0xFU].pmaaddr0;
- }
- }
- else
- {
- status = HAL_HCD_PMAlloc(hhcd, ch_num, HCD_SNG_BUF, 64U);
- if (status == HAL_ERROR)
- {
- return HAL_ERROR;
- }
- }
- }
- }
- }
- }
- if ((epnum & 0x80U) != 0U)
- {
- hhcd->hc[ch_num & 0xFU].ch_dir = CH_IN_DIR;
- if (hhcd->hc[ch_num & 0xFU].ep_num == 0U)
- {
- hhcd->hc[ch_num & 0xFU].pmaadress = hhcd->hc[ch_num & 0xFU].pmaaddr1;
- }
- }
- else
- {
- hhcd->hc[ch_num & 0xFU].ch_dir = CH_OUT_DIR;
- if (hhcd->hc[ch_num & 0xFU].ep_num == 0U)
- {
- hhcd->hc[ch_num & 0xFU].pmaadress = hhcd->hc[ch_num & 0xFU].pmaaddr0;
- }
- }
- /* Init the USB Channel CHEPRx */
- status = USB_HC_Init(hhcd->Instance, hhcd->hc[ch_num & 0xFU].phy_ch_num,
- epnum, dev_address, speed, ep_type, mps);
- /* check single buffer for isochronous channel */
- if (ep_type == EP_TYPE_ISOC)
- {
- if (hhcd->Init.iso_singlebuffer_enable == 1U)
- {
- (void)USB_HC_DoubleBuffer(hhcd->Instance, hhcd->hc[ch_num & 0xFU].phy_ch_num,
- USB_DRD_ISOC_DBUFF_DISABLE);
- }
- }
- /* Bulk double buffer check */
- if (ep_type == EP_TYPE_BULK)
- {
- if (hhcd->Init.bulk_doublebuffer_enable == 1U)
- {
- (void)USB_HC_DoubleBuffer(hhcd->Instance, hhcd->hc[ch_num & 0xFU].phy_ch_num,
- USB_DRD_BULK_DBUFF_ENBALE);
- }
- }
- __HAL_UNLOCK(hhcd);
- return status;
- }
- /**
- * @brief HAL_HCD_HC_Close Pipe
- * @param hhcd HCD handle
- * @param ch_num Channel number.
- * This parameter can be a value from 1 to 15
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_HC_Close(HCD_HandleTypeDef *hhcd, uint8_t ch_num)
- {
- /* Stop the channel */
- (void) HAL_HCD_HC_Halt(hhcd, ch_num);
- HAL_Delay(3U);
- if (hhcd->hc[ch_num & 0xFU].ch_dir == CH_IN_DIR)
- {
- /* Free Allocated Channel */
- hhcd->phy_chin_state[hhcd->hc[ch_num & 0xFU].phy_ch_num] = 0U;
- }
- else
- {
- /* Free Allocated Channel */
- hhcd->phy_chout_state[hhcd->hc[ch_num & 0xFU].phy_ch_num] = 0U;
- }
- /* Reset PMA Channel_Allocation */
- (void)HAL_HCD_PMADeAlloc(hhcd, ch_num);
- return HAL_OK;
- }
- /**
- * @brief Halt a host channel.
- * @param hhcd HCD handle
- * @param ch_num Channel number.
- * This parameter can be a value from 1 to 15
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_HC_Halt(HCD_HandleTypeDef *hhcd, uint8_t ch_num)
- {
- HAL_StatusTypeDef status = HAL_OK;
- __HAL_LOCK(hhcd);
- if (hhcd->hc[ch_num & 0xFU].ch_dir == CH_IN_DIR)
- {
- (void)USB_HC_IN_Halt(hhcd->Instance, (uint8_t) hhcd->hc[ch_num & 0xFU].phy_ch_num);
- }
- else
- {
- (void)USB_HC_OUT_Halt(hhcd->Instance, (uint8_t) hhcd->hc[ch_num & 0xFU].phy_ch_num);
- }
- __HAL_UNLOCK(hhcd);
- return status;
- }
- /**
- * @brief DeInitialize the host driver.
- * @param hhcd HCD handle
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_DeInit(HCD_HandleTypeDef *hhcd)
- {
- uint8_t idx;
- /* Check the HCD handle allocation */
- if (hhcd == NULL)
- {
- return HAL_ERROR;
- }
- /* Host Port State */
- hhcd->HostState = HCD_HCD_STATE_DISCONNECTED;
- /* Reset PMA Address */
- (void)HAL_HCD_PMAReset(hhcd);
- for (idx = 0U; idx < hhcd->Init.Host_channels; idx++)
- {
- hhcd->phy_chin_state[idx] = 0U;
- hhcd->phy_chout_state[idx] = 0U;
- }
- /* reset Ep0 Pma allocation state */
- hhcd->ep0_PmaAllocState = 0U;
- hhcd->State = HAL_HCD_STATE_BUSY;
- #if (USE_HAL_HCD_REGISTER_CALLBACKS == 1U)
- if (hhcd->MspDeInitCallback == NULL)
- {
- hhcd->MspDeInitCallback = HAL_HCD_MspDeInit; /* Legacy weak MspDeInit */
- }
- /* DeInit the low level hardware */
- hhcd->MspDeInitCallback(hhcd);
- #else
- /* DeInit the low level hardware: CLOCK, NVIC. */
- HAL_HCD_MspDeInit(hhcd);
- #endif /* USE_HAL_HCD_REGISTER_CALLBACKS */
- hhcd->State = HAL_HCD_STATE_RESET;
- return HAL_OK;
- }
- /**
- * @brief Initialize the HCD MSP.
- * @param hhcd HCD handle
- * @retval None
- */
- __weak void HAL_HCD_MspInit(HCD_HandleTypeDef *hhcd)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hhcd);
- /* NOTE : This function Should not be modified, when the callback is needed,
- the HAL_HCD_MspInit could be implemented in the user file
- */
- }
- /**
- * @brief DeInitialize the HCD MSP.
- * @param hhcd HCD handle
- * @retval None
- */
- __weak void HAL_HCD_MspDeInit(HCD_HandleTypeDef *hhcd)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hhcd);
- /* NOTE : This function Should not be modified, when the callback is needed,
- the HAL_HCD_MspDeInit could be implemented in the user file
- */
- }
- __weak void HAL_HCD_SuspendCallback(HCD_HandleTypeDef *hhcd)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hhcd);
- /* NOTE : This function Should not be modified, when the callback is needed,
- the HAL_HCD_SuspendCallback could be implemented in the user file
- */
- }
- __weak void HAL_HCD_ResumeCallback(HCD_HandleTypeDef *hhcd)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hhcd);
- /* NOTE : This function Should not be modified, when the callback is needed,
- the HAL_HCD_ResumeCallback could be implemented in the user file
- */
- }
- /**
- * @}
- */
- /** @defgroup HCD_Exported_Functions_Group2 Input and Output operation functions
- * @brief HCD IO operation functions
- *
- @verbatim
- ===============================================================================
- ##### IO operation functions #####
- ===============================================================================
- [..] This subsection provides a set of functions allowing to manage the USB Host Data
- Transfer
- @endverbatim
- * @{
- */
- /**
- * @brief Submit a new URB for processing.
- * @param hhcd HCD handle
- * @param ch_num Channel number.
- * This parameter can be a value from 1 to 15
- * @param direction Channel number.
- * This parameter can be one of these values:
- * 0 : Output / 1 : Input
- * @param ep_type Endpoint Type.
- * This parameter can be one of these values:
- * USBH_EP_CONTROL : Control type/
- * USBH_EP_ISO : Isochronous type/
- * USBH_EP_BULK : Bulk type/
- * USBH_EP_INTERRUPT : Interrupt type/
- * @param token Endpoint Type.
- * This parameter can be one of these values:
- * 0: HC_PID_SETUP / 1: HC_PID_DATA1
- * @param pbuff pointer to URB data
- * @param length Length of URB data
- * @param do_ping activate do ping protocol (for high speed only).
- * This parameter can be one of these values:
- * 0 : do ping inactive / 1 : do ping active
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_HC_SubmitRequest(HCD_HandleTypeDef *hhcd, uint8_t ch_num,
- uint8_t direction, uint8_t ep_type,
- uint8_t token, uint8_t *pbuff,
- uint16_t length, uint8_t do_ping)
- {
- UNUSED(do_ping);
- if (token == 0U)
- {
- hhcd->hc[ch_num & 0xFU].data_pid = HC_PID_SETUP;
- }
- else
- {
- hhcd->hc[ch_num & 0xFU].data_pid = HC_PID_DATA1;
- }
- /* Manage Data Toggle */
- switch (ep_type)
- {
- case EP_TYPE_CTRL:
- if ((token == 1U) && (direction == 0U)) /* send data */
- {
- if (length == 0U)
- {
- /* For Status OUT stage, Length==0, Status Out PID = 1 */
- hhcd->hc[ch_num & 0xFU].toggle_out = 1U;
- }
- /* Set the Data Toggle bit as per the Flag */
- if (hhcd->hc[ch_num & 0xFU].toggle_out == 0U)
- {
- /* Put the PID 0 */
- hhcd->hc[ch_num & 0xFU].data_pid = HC_PID_DATA0;
- }
- else
- {
- /* Put the PID 1 */
- hhcd->hc[ch_num & 0xFU].data_pid = HC_PID_DATA1;
- }
- }
- break;
- case EP_TYPE_BULK:
- if (direction == 0U)
- {
- /* Set the Data Toggle bit as per the Flag */
- if (hhcd->hc[ch_num & 0xFU].toggle_out == 0U)
- {
- /* Put the PID 0 */
- hhcd->hc[ch_num & 0xFU].data_pid = HC_PID_DATA0;
- }
- else
- {
- /* Put the PID 1 */
- hhcd->hc[ch_num & 0xFU].data_pid = HC_PID_DATA1;
- }
- }
- else
- {
- if (hhcd->hc[ch_num & 0xFU].toggle_in == 0U)
- {
- hhcd->hc[ch_num & 0xFU].data_pid = HC_PID_DATA0;
- }
- else
- {
- hhcd->hc[ch_num & 0xFU].data_pid = HC_PID_DATA1;
- }
- }
- break;
- case EP_TYPE_INTR:
- if (direction == 0U)
- {
- /* Set the Data Toggle bit as per the Flag */
- if (hhcd->hc[ch_num & 0xFU].toggle_out == 0U)
- {
- /* Put the PID 0 */
- hhcd->hc[ch_num & 0xFU].data_pid = HC_PID_DATA0;
- }
- else
- {
- /* Put the PID 1 */
- hhcd->hc[ch_num & 0xFU].data_pid = HC_PID_DATA1;
- }
- }
- else
- {
- if (hhcd->hc[ch_num & 0xFU].toggle_in == 0U)
- {
- hhcd->hc[ch_num & 0xFU].data_pid = HC_PID_DATA0;
- }
- else
- {
- hhcd->hc[ch_num & 0xFU].data_pid = HC_PID_DATA1;
- }
- }
- break;
- case EP_TYPE_ISOC:
- hhcd->hc[ch_num & 0xFU].data_pid = HC_PID_DATA0;
- break;
- default:
- break;
- }
- hhcd->hc[ch_num & 0xFU].xfer_buff = pbuff;
- hhcd->hc[ch_num & 0xFU].xfer_len = length;
- hhcd->hc[ch_num & 0xFU].xfer_len_db = length;
- hhcd->hc[ch_num & 0xFU].urb_state = URB_IDLE;
- hhcd->hc[ch_num & 0xFU].xfer_count = 0U;
- hhcd->hc[ch_num & 0xFU].state = HC_IDLE;
- return USB_HC_StartXfer(hhcd->Instance, &hhcd->hc[ch_num & 0xFU]);
- }
- /**
- * @brief Handle HCD interrupt request.
- * @param hhcd HCD handle
- * @retval None
- */
- void HAL_HCD_IRQHandler(HCD_HandleTypeDef *hhcd)
- {
- uint8_t phy_chnum;
- uint8_t chnum;
- uint32_t epch_reg;
- uint32_t wIstr = USB_ReadInterrupts(hhcd->Instance);
- /* check if this is an USB pending IT */
- if ((SYSCFG->IT_LINE_SR[8] & (0x1U << 2)) == 0U)
- {
- return;
- }
- /* Port Change Detected (Connection/Disconnection) */
- if ((wIstr & USB_ISTR_DCON) == USB_ISTR_DCON)
- {
- /* Clear Flag */
- __HAL_HCD_CLEAR_FLAG(hhcd, USB_ISTR_DCON);
- /* Call Port IRQHandler */
- HCD_Port_IRQHandler(hhcd);
- return;
- }
- /* Correct Transaction Detected -------*/
- if ((wIstr & USB_ISTR_CTR) == USB_ISTR_CTR)
- {
- /* Handle Host channel Interrupt */
- for (phy_chnum = 0U; phy_chnum < hhcd->Init.Host_channels; phy_chnum++)
- {
- if ((HCD_GET_CHANNEL(hhcd->Instance, phy_chnum) & USB_CH_VTRX) != 0U)
- {
- /* Get Logical channel to check if the channel is already opened */
- chnum = HAL_HCD_GetLogical_Channel(hhcd, phy_chnum, 1U);
- if (chnum != HCD_LOGICAL_CH_NOT_OPENED)
- {
- /* Call Channel_IN_IRQ() */
- HCD_HC_IN_IRQHandler(hhcd, chnum);
- }
- else
- {
- /*Channel was not closed correctly still have interrupt */
- epch_reg = HCD_GET_CHANNEL(hhcd->Instance, phy_chnum);
- epch_reg = (epch_reg & (USB_CHEP_REG_MASK & (~USB_CH_ERRRX) & (~USB_CH_VTRX))) |
- (USB_CH_VTTX | USB_CH_ERRTX);
- HCD_SET_CHANNEL(hhcd->Instance, phy_chnum, epch_reg);
- }
- }
- if ((HCD_GET_CHANNEL(hhcd->Instance, phy_chnum) & USB_CH_VTTX) != 0U)
- {
- /* Get Logical channel to check if the channel is already opened */
- chnum = HAL_HCD_GetLogical_Channel(hhcd, phy_chnum, 0U);
- if (chnum != HCD_LOGICAL_CH_NOT_OPENED)
- {
- /*Call Channel_OUT_IRQ()*/
- HCD_HC_OUT_IRQHandler(hhcd, chnum);
- }
- else
- {
- /* Clear Error & unwanted VTTX or Channel was not closed correctly */
- epch_reg = HCD_GET_CHANNEL(hhcd->Instance, phy_chnum);
- epch_reg = (epch_reg & (USB_CHEP_REG_MASK & (~USB_CH_ERRTX) & (~USB_CH_VTTX))) |
- (USB_CH_VTRX | USB_CH_ERRRX);
- HCD_SET_CHANNEL(hhcd->Instance, phy_chnum, epch_reg);
- }
- }
- }
- return;
- }
- /* Wakeup Flag Detected */
- if ((wIstr & USB_ISTR_WKUP) == USB_ISTR_WKUP)
- {
- if (hhcd->HostState == HCD_HCD_STATE_SUSPEND)
- {
- /* Set The L2Resume bit */
- hhcd->Instance->CNTR |= USB_CNTR_L2RES;
- /* Clear the wake-up flag */
- __HAL_HCD_CLEAR_FLAG(hhcd, USB_ISTR_WKUP);
- /* Update the USB Software state machine */
- HAL_HCD_ResumeCallback(hhcd);
- hhcd->HostState = HCD_HCD_STATE_RESUME;
- }
- else
- {
- /* Clear the wake-up flag */
- __HAL_HCD_CLEAR_FLAG(hhcd, USB_ISTR_WKUP);
- }
- return;
- }
- /* Global Error Flag Detected */
- if ((wIstr & USB_ISTR_ERR) == USB_ISTR_ERR)
- {
- __HAL_HCD_CLEAR_FLAG(hhcd, USB_ISTR_ERR);
- return;
- }
- /* PMA Overrun detected */
- if ((wIstr & USB_ISTR_PMAOVR) == USB_ISTR_PMAOVR)
- {
- __HAL_HCD_CLEAR_FLAG(hhcd, USB_ISTR_PMAOVR);
- return;
- }
- /* Suspend Detected */
- if ((wIstr & USB_ISTR_SUSP) == USB_ISTR_SUSP)
- {
- /* Set HAL State to Suspend */
- hhcd->HostState = HCD_HCD_STATE_SUSPEND;
- /* Force low-power mode in the macrocell */
- hhcd->Instance->CNTR |= USB_CNTR_SUSPEN;
- /* clear of the ISTR bit must be done after setting of CNTR_FSUSP */
- __HAL_HCD_CLEAR_FLAG(hhcd, USB_ISTR_SUSP);
- /* Call suspend Callback */
- HAL_HCD_SuspendCallback(hhcd);
- return;
- }
- /* Start Of Frame Detected */
- if ((wIstr & USB_ISTR_SOF) == USB_ISTR_SOF)
- {
- #if (USE_HAL_HCD_REGISTER_CALLBACKS == 1U)
- hhcd->SOFCallback(hhcd);
- #else
- HAL_HCD_SOF_Callback(hhcd);
- #endif /* USE_HAL_HCD_REGISTER_CALLBACKS */
- __HAL_HCD_CLEAR_FLAG(hhcd, USB_ISTR_SOF);
- /* when first SOF is detected after USB_RESET is asserted */
- if (hhcd->HostState == HCD_HCD_STATE_RESETED)
- {
- /* HAL State */
- hhcd->HostState = HCD_HCD_STATE_RUN;
- #if (USE_HAL_HCD_REGISTER_CALLBACKS == 1U)
- hhcd->PortEnabledCallback(hhcd);
- #else
- HAL_HCD_PortEnabled_Callback(hhcd);
- #endif /* USE_HAL_HCD_REGISTER_CALLBACKS */
- }
- return;
- }
- }
- /**
- * @brief SOF callback.
- * @param hhcd HCD handle
- * @retval None
- */
- __weak void HAL_HCD_SOF_Callback(HCD_HandleTypeDef *hhcd)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hhcd);
- /* NOTE : This function Should not be modified, when the callback is needed,
- the HAL_HCD_SOF_Callback could be implemented in the user file
- */
- }
- /**
- * @brief Connection Event callback.
- * @param hhcd HCD handle
- * @retval None
- */
- __weak void HAL_HCD_Connect_Callback(HCD_HandleTypeDef *hhcd)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hhcd);
- /* NOTE : This function Should not be modified, when the callback is needed,
- the HAL_HCD_Connect_Callback could be implemented in the user file
- */
- }
- /**
- * @brief Disconnection Event callback.
- * @param hhcd HCD handle
- * @retval None
- */
- __weak void HAL_HCD_Disconnect_Callback(HCD_HandleTypeDef *hhcd)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hhcd);
- /* NOTE : This function Should not be modified, when the callback is needed,
- the HAL_HCD_Disconnect_Callback could be implemented in the user file
- */
- }
- /**
- * @brief Port Enabled Event callback.
- * @param hhcd HCD handle
- * @retval None
- */
- __weak void HAL_HCD_PortEnabled_Callback(HCD_HandleTypeDef *hhcd)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hhcd);
- /* NOTE : This function should not be modified, when the callback is needed,
- the HAL_HCD_Disconnect_Callback could be implemented in the user file
- */
- }
- /**
- * @brief Port Disabled Event callback.
- * @param hhcd HCD handle
- * @retval None
- */
- __weak void HAL_HCD_PortDisabled_Callback(HCD_HandleTypeDef *hhcd)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hhcd);
- /* NOTE : This function should not be modified, when the callback is needed,
- the HAL_HCD_Disconnect_Callback could be implemented in the user file
- */
- }
- /**
- * @brief Notify URB state change callback.
- * @param hhcd HCD handle
- * @param chnum Channel number.
- * This parameter can be a value from 1 to 15
- * @param urb_state
- * This parameter can be one of these values:
- * URB_IDLE/
- * URB_DONE/
- * URB_NOTREADY/
- * URB_NYET/
- * URB_ERROR/
- * URB_STALL/
- * @retval None
- */
- __weak void HAL_HCD_HC_NotifyURBChange_Callback(HCD_HandleTypeDef *hhcd,
- uint8_t chnum, HCD_URBStateTypeDef urb_state)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hhcd);
- UNUSED(chnum);
- UNUSED(urb_state);
- /* NOTE : This function Should not be modified, when the callback is needed,
- the HAL_HCD_HC_NotifyURBChange_Callback could be implemented in the user file
- */
- }
- #if (USE_HAL_HCD_REGISTER_CALLBACKS == 1U)
- /**
- * @brief Register a User USB HCD Callback
- * To be used instead of the weak predefined callback
- * @param hhcd USB HCD handle
- * @param CallbackID ID of the callback to be registered
- * This parameter can be one of the following values:
- * @arg @ref HAL_HCD_SOF_CB_ID USB HCD SOF callback ID
- * @arg @ref HAL_HCD_CONNECT_CB_ID USB HCD Connect callback ID
- * @arg @ref HAL_HCD_DISCONNECT_CB_ID HCD Disconnect callback ID
- * @arg @ref HAL_HCD_PORT_ENABLED_CB_ID USB HCD Port Enable callback ID
- * @arg @ref HAL_HCD_PORT_DISABLED_CB_ID USB HCD Port Disable callback ID
- * @arg @ref HAL_HCD_MSPINIT_CB_ID MspDeInit callback ID
- * @arg @ref HAL_HCD_MSPDEINIT_CB_ID MspDeInit callback ID
- * @param pCallback pointer to the Callback function
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_RegisterCallback(HCD_HandleTypeDef *hhcd,
- HAL_HCD_CallbackIDTypeDef CallbackID,
- pHCD_CallbackTypeDef pCallback)
- {
- HAL_StatusTypeDef status = HAL_OK;
- if (pCallback == NULL)
- {
- /* Update the error code */
- hhcd->ErrorCode |= HAL_HCD_ERROR_INVALID_CALLBACK;
- return HAL_ERROR;
- }
- /* Process locked */
- __HAL_LOCK(hhcd);
- if (hhcd->State == HAL_HCD_STATE_READY)
- {
- switch (CallbackID)
- {
- case HAL_HCD_SOF_CB_ID :
- hhcd->SOFCallback = pCallback;
- break;
- case HAL_HCD_CONNECT_CB_ID :
- hhcd->ConnectCallback = pCallback;
- break;
- case HAL_HCD_DISCONNECT_CB_ID :
- hhcd->DisconnectCallback = pCallback;
- break;
- case HAL_HCD_PORT_ENABLED_CB_ID :
- hhcd->PortEnabledCallback = pCallback;
- break;
- case HAL_HCD_PORT_DISABLED_CB_ID :
- hhcd->PortDisabledCallback = pCallback;
- break;
- case HAL_HCD_MSPINIT_CB_ID :
- hhcd->MspInitCallback = pCallback;
- break;
- case HAL_HCD_MSPDEINIT_CB_ID :
- hhcd->MspDeInitCallback = pCallback;
- break;
- default :
- /* Update the error code */
- hhcd->ErrorCode |= HAL_HCD_ERROR_INVALID_CALLBACK;
- /* Return error status */
- status = HAL_ERROR;
- break;
- }
- }
- else if (hhcd->State == HAL_HCD_STATE_RESET)
- {
- switch (CallbackID)
- {
- case HAL_HCD_MSPINIT_CB_ID :
- hhcd->MspInitCallback = pCallback;
- break;
- case HAL_HCD_MSPDEINIT_CB_ID :
- hhcd->MspDeInitCallback = pCallback;
- break;
- default :
- /* Update the error code */
- hhcd->ErrorCode |= HAL_HCD_ERROR_INVALID_CALLBACK;
- /* Return error status */
- status = HAL_ERROR;
- break;
- }
- }
- else
- {
- /* Update the error code */
- hhcd->ErrorCode |= HAL_HCD_ERROR_INVALID_CALLBACK;
- /* Return error status */
- status = HAL_ERROR;
- }
- /* Release Lock */
- __HAL_UNLOCK(hhcd);
- return status;
- }
- /**
- * @brief Unregister an USB HCD Callback
- * USB HCD callback is redirected to the weak predefined callback
- * @param hhcd USB HCD handle
- * @param CallbackID ID of the callback to be unregistered
- * This parameter can be one of the following values:
- * @arg @ref HAL_HCD_SOF_CB_ID USB HCD SOF callback ID
- * @arg @ref HAL_HCD_CONNECT_CB_ID USB HCD Connect callback ID
- * @arg @ref HAL_HCD_DISCONNECT_CB_ID DRD HCD Disconnect callback ID
- * @arg @ref HAL_HCD_PORT_ENABLED_CB_ID USB HCD Port Enabled callback ID
- * @arg @ref HAL_HCD_PORT_DISABLED_CB_ID USB HCD Port Disabled callback ID
- * @arg @ref HAL_HCD_MSPINIT_CB_ID MspDeInit callback ID
- * @arg @ref HAL_HCD_MSPDEINIT_CB_ID MspDeInit callback ID
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_UnRegisterCallback(HCD_HandleTypeDef *hhcd,
- HAL_HCD_CallbackIDTypeDef CallbackID)
- {
- HAL_StatusTypeDef status = HAL_OK;
- /* Process locked */
- __HAL_LOCK(hhcd);
- /* Setup Legacy weak Callbacks */
- if (hhcd->State == HAL_HCD_STATE_READY)
- {
- switch (CallbackID)
- {
- case HAL_HCD_SOF_CB_ID :
- hhcd->SOFCallback = HAL_HCD_SOF_Callback;
- break;
- case HAL_HCD_CONNECT_CB_ID :
- hhcd->ConnectCallback = HAL_HCD_Connect_Callback;
- break;
- case HAL_HCD_DISCONNECT_CB_ID :
- hhcd->DisconnectCallback = HAL_HCD_Disconnect_Callback;
- break;
- case HAL_HCD_PORT_ENABLED_CB_ID :
- hhcd->PortEnabledCallback = HAL_HCD_PortEnabled_Callback;
- break;
- case HAL_HCD_PORT_DISABLED_CB_ID :
- hhcd->PortDisabledCallback = HAL_HCD_PortDisabled_Callback;
- break;
- case HAL_HCD_MSPINIT_CB_ID :
- hhcd->MspInitCallback = HAL_HCD_MspInit;
- break;
- case HAL_HCD_MSPDEINIT_CB_ID :
- hhcd->MspDeInitCallback = HAL_HCD_MspDeInit;
- break;
- default :
- /* Update the error code */
- hhcd->ErrorCode |= HAL_HCD_ERROR_INVALID_CALLBACK;
- /* Return error status */
- status = HAL_ERROR;
- break;
- }
- }
- else if (hhcd->State == HAL_HCD_STATE_RESET)
- {
- switch (CallbackID)
- {
- case HAL_HCD_MSPINIT_CB_ID :
- hhcd->MspInitCallback = HAL_HCD_MspInit;
- break;
- case HAL_HCD_MSPDEINIT_CB_ID :
- hhcd->MspDeInitCallback = HAL_HCD_MspDeInit;
- break;
- default :
- /* Update the error code */
- hhcd->ErrorCode |= HAL_HCD_ERROR_INVALID_CALLBACK;
- /* Return error status */
- status = HAL_ERROR;
- break;
- }
- }
- else
- {
- /* Update the error code */
- hhcd->ErrorCode |= HAL_HCD_ERROR_INVALID_CALLBACK;
- /* Return error status */
- status = HAL_ERROR;
- }
- /* Release Lock */
- __HAL_UNLOCK(hhcd);
- return status;
- }
- /**
- * @brief Register USB HCD Host Channel Notify URB Change Callback
- * To be used instead of the weak HAL_HCD_HC_NotifyURBChange_Callback() predefined callback
- * @param hhcd HCD handle
- * @param pCallback pointer to the USB HCD Host Channel Notify URB Change Callback function
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_RegisterHC_NotifyURBChangeCallback(HCD_HandleTypeDef *hhcd,
- pHCD_HC_NotifyURBChangeCallbackTypeDef pCallback)
- {
- HAL_StatusTypeDef status = HAL_OK;
- if (pCallback == NULL)
- {
- /* Update the error code */
- hhcd->ErrorCode |= HAL_HCD_ERROR_INVALID_CALLBACK;
- return HAL_ERROR;
- }
- /* Process locked */
- __HAL_LOCK(hhcd);
- if (hhcd->State == HAL_HCD_STATE_READY)
- {
- hhcd->HC_NotifyURBChangeCallback = pCallback;
- }
- else
- {
- /* Update the error code */
- hhcd->ErrorCode |= HAL_HCD_ERROR_INVALID_CALLBACK;
- /* Return error status */
- status = HAL_ERROR;
- }
- /* Release Lock */
- __HAL_UNLOCK(hhcd);
- return status;
- }
- /**
- * @brief Unregister the USB HCD Host Channel Notify URB Change Callback
- * USB HCD Host Channel Notify URB Change Callback is redirected
- * to the weak HAL_HCD_HC_NotifyURBChange_Callback() predefined callback
- * @param hhcd HCD handle
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_UnRegisterHC_NotifyURBChangeCallback(HCD_HandleTypeDef *hhcd)
- {
- HAL_StatusTypeDef status = HAL_OK;
- /* Process locked */
- __HAL_LOCK(hhcd);
- if (hhcd->State == HAL_HCD_STATE_READY)
- {
- hhcd->HC_NotifyURBChangeCallback = HAL_HCD_HC_NotifyURBChange_Callback; /* Legacy weak DataOutStageCallback */
- }
- else
- {
- /* Update the error code */
- hhcd->ErrorCode |= HAL_HCD_ERROR_INVALID_CALLBACK;
- /* Return error status */
- status = HAL_ERROR;
- }
- /* Release Lock */
- __HAL_UNLOCK(hhcd);
- return status;
- }
- #endif /* USE_HAL_HCD_REGISTER_CALLBACKS */
- /**
- * @}
- */
- /** @defgroup HCD_Exported_Functions_Group3 Peripheral Control functions
- * @brief Management functions
- *
- @verbatim
- ===============================================================================
- ##### Peripheral Control functions #####
- ===============================================================================
- [..]
- This subsection provides a set of functions allowing to control the HCD data
- transfers.
- @endverbatim
- * @{
- */
- /**
- * @brief Start the host driver.
- * @param hhcd HCD handle
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_Start(HCD_HandleTypeDef *hhcd)
- {
- __HAL_LOCK(hhcd);
- /*Set the PullDown on the PHY */
- hhcd->Instance->BCDR |= USB_BCDR_DPPD;
- /* Clear Reset */
- hhcd->Instance->CNTR &= ~USB_CNTR_USBRST;
- /*Remove PowerDown */
- hhcd->Instance->CNTR &= ~USB_CNTR_PDWN;
- __HAL_UNLOCK(hhcd);
- return HAL_OK;
- }
- /**
- * @brief Stop the host driver.
- * @param hhcd HCD handle
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_Stop(HCD_HandleTypeDef *hhcd)
- {
- __HAL_LOCK(hhcd);
- /*Stop the Host IP: setting powerdown */
- (void)USB_StopHost(hhcd->Instance);
- /* clear all allocated virtual channel */
- HAL_HCD_ClearPhyChannel(hhcd);
- /* Reset the PMA current pointer */
- (void)HAL_HCD_PMAReset(hhcd);
- /* reset Ep0 Pma allocation state */
- hhcd->ep0_PmaAllocState = 0U;
- __HAL_UNLOCK(hhcd);
- return HAL_OK;
- }
- /**
- * @brief Put the Device in suspend mode
- * @param hhcd HCD handle
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_Suspend(HCD_HandleTypeDef *hhcd)
- {
- __IO uint32_t count = 0U;
- /* Set Suspend Mode */
- hhcd->Instance->CNTR |= USB_CNTR_SUSPEN;
- /* wait for Suspend Ready */
- while ((hhcd->Instance->CNTR & USB_CNTR_SUSPRDY) == 0U)
- {
- if (++count > HAL_USB_TIMEOUT)
- {
- return HAL_TIMEOUT;
- }
- }
- return HAL_OK;
- }
- /**
- * @brief Resume host port
- * @param hhcd HCD handle
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_Resume(HCD_HandleTypeDef *hhcd)
- {
- /* Set Resume bit */
- hhcd->Instance->CNTR |= USB_CNTR_L2RES;
- return HAL_OK;
- }
- /**
- * @brief Reset the host port.
- * @param hhcd HCD handle
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_ResetPort(HCD_HandleTypeDef *hhcd)
- {
- __HAL_LOCK(hhcd);
- /* Reset the USB Port by inserting an SE0 on the bus */
- (void)USB_ResetPort(hhcd->Instance);
- if (hhcd->HostState == HCD_HCD_STATE_CONNECTED)
- {
- hhcd->HostState = HCD_HCD_STATE_RESETED;
- }
- __HAL_UNLOCK(hhcd);
- return HAL_OK;
- }
- /**
- * @brief Resme the host port.
- * @param hhcd HCD handle
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_ResumePort(HCD_HandleTypeDef *hhcd)
- {
- /* Set Resume bit */
- hhcd->Instance->CNTR |= USB_CNTR_L2RES;
- HAL_Delay(30U);
- /* Clear Resume bit */
- hhcd->Instance->CNTR &= ~USB_CNTR_L2RES;
- return HAL_OK;
- }
- /**
- * @}
- */
- /** @defgroup HCD_Exported_Functions_Group4 Peripheral State functions
- * @brief Peripheral State functions
- *
- @verbatim
- ===============================================================================
- ##### Peripheral State functions #####
- ===============================================================================
- [..]
- This subsection permits to get in run-time the status of the peripheral
- and the data flow.
- @endverbatim
- * @{
- */
- /**
- * @brief Return the HCD handle state.
- * @param hhcd HCD handle
- * @retval HAL state
- */
- HCD_StateTypeDef HAL_HCD_GetState(HCD_HandleTypeDef const *hhcd)
- {
- return hhcd->State;
- }
- /**
- * @brief Return URB state for a channel.
- * @param hhcd HCD handle
- * @param chnum Channel number.
- * This parameter can be a value from 1 to 15
- * @retval URB state.
- * This parameter can be one of these values:
- * URB_IDLE/
- * URB_DONE/
- * URB_NOTREADY/
- * URB_NYET/
- * URB_ERROR/
- * URB_STALL
- */
- HCD_URBStateTypeDef HAL_HCD_HC_GetURBState(HCD_HandleTypeDef const *hhcd, uint8_t chnum)
- {
- return hhcd->hc[chnum].urb_state;
- }
- /**
- * @brief Return the last host transfer size.
- * @param hhcd HCD handle
- * @param chnum Channel number.
- * This parameter can be a value from 1 to 15
- * @retval last transfer size in byte
- */
- uint32_t HAL_HCD_HC_GetXferCount(HCD_HandleTypeDef const *hhcd, uint8_t chnum)
- {
- return hhcd->hc[chnum].xfer_count;
- }
- /**
- * @brief Return the Host Channel state.
- * @param hhcd HCD handle
- * @param chnum Channel number.
- * This parameter can be a value from 1 to 15
- * @retval Host channel state
- * This parameter can be one of these values:
- * HC_IDLE/
- * HC_XFRC/
- * HC_HALTED/
- * HC_NYET/
- * HC_NAK/
- * HC_STALL/
- * HC_XACTERR/
- * HC_BBLERR/
- * HC_DATATGLERR
- */
- HCD_HCStateTypeDef HAL_HCD_HC_GetState(HCD_HandleTypeDef const *hhcd, uint8_t chnum)
- {
- return hhcd->hc[chnum].state;
- }
- /**
- * @brief Return the current Host frame number.
- * @param hhcd HCD handle
- * @retval Current Host frame number
- */
- uint32_t HAL_HCD_GetCurrentFrame(HCD_HandleTypeDef *hhcd)
- {
- return (USB_GetCurrentFrame(hhcd->Instance));
- }
- /**
- * @brief Return the Host enumeration speed.
- * @param hhcd HCD handle
- * @retval speed : Device speed after Host enumeration
- * This parameter can be one of these values:
- * @arg HCD_DEVICE_SPEED_FULL: Full speed mode
- * @arg HCD_DEVICE_SPEED_LOW: Low speed mode
- */
- uint32_t HAL_HCD_GetCurrentSpeed(HCD_HandleTypeDef *hhcd)
- {
- return (USB_GetHostSpeed(hhcd->Instance));
- }
- /**
- * @brief Set host channel Hub Information.
- * @param hhcd HCD handle
- * @param ch_num Channel number.
- * This parameter can be a value from 1 to 8
- * @param addr Hub address
- * @param PortNbr Hub port number
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_HC_SetHubInfo(HCD_HandleTypeDef *hhcd, uint8_t ch_num,
- uint8_t addr, uint8_t PortNbr)
- {
- hhcd->hc[ch_num].hub_addr = addr;
- hhcd->hc[ch_num].hub_port_nbr = PortNbr;
- return HAL_OK;
- }
- /**
- * @brief Clear host channel hub information.
- * @param hhcd HCD handle
- * @param ch_num Channel number.
- * This parameter can be a value from 1 to 8
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_HC_ClearHubInfo(HCD_HandleTypeDef *hhcd, uint8_t ch_num)
- {
- hhcd->hc[ch_num].hub_addr = 0U;
- hhcd->hc[ch_num].hub_port_nbr = 0U;
- return HAL_OK;
- }
- #if (USE_USB_DOUBLE_BUFFER == 1U)
- /**
- * @brief Handle Host Channel OUT Double Buffer Bulk requests.
- * @param hhcd HCD handle
- * @param ch_num Channel number This parameter can be a value from 1 to 15
- * @param phy_chnum Physical Channel number [0..7]
- * @param regvalue contain Snapshot of the EPCHn register when ISR is detected
- * @retval none
- */
- static void HCD_HC_OUT_BulkDb(HCD_HandleTypeDef *hhcd, uint8_t ch_num,
- uint8_t phy_chnum, uint32_t regvalue)
- {
- uint16_t data_xfr;
- uint16_t len;
- /* Send Buffer0 */
- if ((regvalue & USB_CH_DTOG_TX) != 0U)
- {
- data_xfr = (uint16_t)(((USB_DRD_PMA_BUFF + phy_chnum)->TXBD & 0x03FF0000U) >> 16U);
- if (hhcd->hc[ch_num & 0xFU].xfer_len >= data_xfr)
- {
- hhcd->hc[ch_num & 0xFU].xfer_len -= data_xfr;
- }
- else
- {
- hhcd->hc[ch_num & 0xFU].xfer_len = 0U;
- }
- /* Transfer no yet finished only one packet of mps is transferred and ACKed from device */
- if (hhcd->hc[ch_num & 0xFU].xfer_len != 0U)
- {
- /* manage multiple Xfer */
- hhcd->hc[ch_num & 0xFU].xfer_count += data_xfr;
- /* check if we need to free user buffer */
- if ((regvalue & USB_CH_DTOG_RX) != 0U)
- {
- /* Toggle SwBuff */
- HCD_CLEAR_TX_DTOG(hhcd->Instance, phy_chnum);
- HCD_CLEAR_RX_DTOG(hhcd->Instance, phy_chnum);
- HCD_TX_DTOG(hhcd->Instance, phy_chnum);
- }
- /* hhcd->hc[ch_num&0xFU].xfer_len_db==0 ==> when all data are written in the PMA to yet transferred */
- if (hhcd->hc[ch_num & 0xFU].xfer_len_db > 0U) /* Still data to fill in the buffer */
- {
- hhcd->hc[ch_num & 0xFU].xfer_buff += data_xfr;
- /* calculate len of new buffer to fill */
- if (hhcd->hc[ch_num & 0xFU].xfer_len_db > hhcd->hc[ch_num & 0xFU].max_packet)
- {
- len = (uint16_t)hhcd->hc[ch_num & 0xFU].max_packet;
- hhcd->hc[ch_num & 0xFU].xfer_len_db -= len;
- }
- else
- {
- len = (uint16_t)hhcd->hc[ch_num & 0xFU].xfer_len_db;
- hhcd->hc[ch_num & 0xFU].xfer_len_db = 0U; /* end of fill buffer */
- }
- /* Write remaining data to Buffer0 */
- HCD_SET_CH_DBUF0_CNT(hhcd->Instance, phy_chnum, 1U, (uint16_t)len);
- USB_WritePMA(hhcd->Instance, hhcd->hc[ch_num & 0xFU].xfer_buff,
- hhcd->hc[ch_num & 0xFU].pmaaddr0, (uint16_t)len);
- }
- /* start a new transfer */
- HCD_SET_CH_TX_STATUS(hhcd->Instance, phy_chnum, USB_CH_TX_VALID);
- }
- else
- {
- /* Transfer complete state */
- hhcd->hc[ch_num & 0xFU].xfer_count += data_xfr;
- hhcd->hc[ch_num & 0xFU].state = HC_XFRC;
- hhcd->hc[ch_num & 0xFU].urb_state = URB_DONE;
- hhcd->hc[ch_num & 0xFU].toggle_out ^= 1U;
- /* Close the Channel */
- HCD_SET_CH_TX_STATUS(hhcd->Instance, phy_chnum, USB_CH_TX_DIS);
- }
- }
- else
- {
- /* Send Buffer1 */
- data_xfr = (uint16_t)(((USB_DRD_PMA_BUFF + phy_chnum)->RXBD & 0x03FF0000U) >> 16U);
- if (hhcd->hc[ch_num & 0xFU].xfer_len >= data_xfr) /* updated */
- {
- hhcd->hc[ch_num & 0xFU].xfer_len -= data_xfr;
- }
- /* Transfer no yet finished only one packet of mps is transferred and ACKed from device */
- if (hhcd->hc[ch_num & 0xFU].xfer_len != 0U)
- {
- /* manage multiple Xfer */
- hhcd->hc[ch_num & 0xFU].xfer_count += data_xfr;
- /* check if we need to free user buffer */
- if ((regvalue & USB_CH_DTOG_RX) == 0U)
- {
- /* Toggle SwBuff */
- HCD_CLEAR_TX_DTOG(hhcd->Instance, phy_chnum);
- HCD_CLEAR_RX_DTOG(hhcd->Instance, phy_chnum);
- HCD_RX_DTOG(hhcd->Instance, phy_chnum);
- }
- /* hhcd->hc[ch_num&0xFU].xfer_len_db==0 ==> when all data are written in the PMA to yet transferred */
- if (hhcd->hc[ch_num & 0xFU].xfer_len_db > 0U) /* Still data to fill in the buffer */
- {
- hhcd->hc[ch_num & 0xFU].xfer_buff += data_xfr;
- /* calculate len of new buffer to fill */
- if (hhcd->hc[ch_num & 0xFU].xfer_len_db > hhcd->hc[ch_num & 0xFU].max_packet)
- {
- len = hhcd->hc[ch_num & 0xFU].max_packet;
- hhcd->hc[ch_num & 0xFU].xfer_len_db -= len;
- }
- else
- {
- len = (uint16_t)hhcd->hc[ch_num & 0xFU].xfer_len_db;
- hhcd->hc[ch_num & 0xFU].xfer_len_db = 0U; /* end of fill buffer */
- }
- /* Write remaining data to Buffer0 */
- HCD_SET_CH_DBUF1_CNT(hhcd->Instance, phy_chnum, 1U, (uint16_t)len);
- USB_WritePMA(hhcd->Instance, hhcd->hc[ch_num & 0xFU].xfer_buff,
- hhcd->hc[ch_num & 0xFU].pmaaddr1, (uint16_t)len);
- }
- /* start a new transfer */
- HCD_SET_CH_TX_STATUS(hhcd->Instance, phy_chnum, USB_CH_TX_VALID);
- }
- else
- {
- /* Transfer complete state */
- hhcd->hc[ch_num & 0xFU].xfer_count += data_xfr;
- hhcd->hc[ch_num & 0xFU].state = HC_XFRC;
- hhcd->hc[ch_num & 0xFU].urb_state = URB_DONE;
- hhcd->hc[ch_num & 0xFU].toggle_out ^= 1U;
- /* Close the channel */
- HCD_SET_CH_TX_STATUS(hhcd->Instance, phy_chnum, USB_CH_TX_DIS);
- }
- }
- }
- /**
- * @brief Handle Host Channel IN Double Buffer Bulk requests.
- * @param hhcd HCD handle
- * @param ch_num Channel number: This parameter can be a value from 1 to 15
- * @param phy_chnum Physical Channel number [0..7]
- * @param regvalue contain Snapshot of the EPCHn register when ISR is detected
- * @retval none
- */
- static void HCD_HC_IN_BulkDb(HCD_HandleTypeDef *hhcd,
- uint8_t ch_num, uint8_t phy_chnum, uint32_t regvalue)
- {
- uint16_t received_bytes;
- /* Read from Buffer 0 */
- if ((regvalue & USB_CH_DTOG_RX) != 0U)
- {
- received_bytes = (uint16_t)HCD_GET_CH_DBUF0_CNT(hhcd->Instance, phy_chnum);
- if (hhcd->hc[ch_num & 0xFU].xfer_len <= received_bytes)
- {
- hhcd->hc[ch_num & 0xFU].xfer_len = 0U;
- }
- else
- {
- hhcd->hc[ch_num & 0xFU].xfer_len -= received_bytes;
- }
- /* Check if we Need to free the other buffer for the IP */
- if ((hhcd->hc[ch_num & 0xFU].xfer_len != 0U) && ((regvalue & USB_CH_DTOG_TX) != 0U))
- {
- /* Toggle SwBuff to Allow the IP to submit a new IN */
- HCD_FREE_USER_BUFFER(hhcd->Instance, phy_chnum, 0U);
- }
- /* Read the byte from PMA to user Buffer(System Memory) */
- USB_ReadPMA(hhcd->Instance, hhcd->hc[ch_num & 0xFU].xfer_buff,
- hhcd->hc[ch_num & 0xFU].pmaaddr0, (uint16_t)received_bytes);
- }
- else
- {
- /* Read from Buffer 1 */
- received_bytes = (uint16_t) HCD_GET_CH_DBUF1_CNT(hhcd->Instance, phy_chnum);
- if (hhcd->hc[ch_num & 0xFU].xfer_len <= received_bytes)
- {
- hhcd->hc[ch_num & 0xFU].xfer_len = 0U;
- }
- else
- {
- hhcd->hc[ch_num & 0xFU].xfer_len -= received_bytes;
- }
- /* Check if we Need to free the other buffer for the IP */
- if ((hhcd->hc[ch_num & 0xFU].xfer_len != 0U) && ((regvalue & USB_CH_DTOG_TX) == 0U))
- {
- /* Toggle SwBuff */
- HCD_FREE_USER_BUFFER(hhcd->Instance, phy_chnum, 0U);
- }
- /* Read the byte from PMA to user Buffer(System Memory) */
- USB_ReadPMA(hhcd->Instance, hhcd->hc[ch_num & 0xFU].xfer_buff,
- hhcd->hc[ch_num & 0xFU].pmaaddr1, (uint16_t)received_bytes);
- }
- /* update the global number of all received bytes */
- hhcd->hc[ch_num & 0xFU].xfer_count += received_bytes;
- /* Transfer complete state */
- hhcd->hc[ch_num & 0xFU].state = HC_ACK;
- hhcd->hc[ch_num & 0xFU].ErrCnt = 0U;
- if ((hhcd->hc[ch_num & 0xFU].xfer_len == 0U) ||
- ((received_bytes < hhcd->hc[ch_num & 0xFU].max_packet)))
- {
- hhcd->hc[ch_num & 0xFU].urb_state = URB_DONE;
- hhcd->hc[ch_num & 0xFU].state = HC_XFRC;
- /* disable channel */
- HCD_SET_CH_RX_STATUS(hhcd->Instance, phy_chnum, USB_CH_RX_DIS);
- }
- else
- {
- hhcd->hc[ch_num & 0xFU].xfer_buff += received_bytes;
- /* Reactivate the Channel Submit an other URB since the Transfer is not yet completed */
- HCD_SET_CH_RX_STATUS(hhcd->Instance, phy_chnum, USB_CH_RX_STRX);
- }
- }
- #endif /* (USE_USB_DOUBLE_BUFFER == 1U) */
- /**
- * @brief Handle Host Channel IN Isochronous Transaction
- * @param hhcd HCD handle
- * @param ch_num Channel number: This parameter can be a value from 1 to 15
- * @param phy_chnum Physical Channel number [0..7]
- * @param regvalue contain Snapshot of the EPCHn register when ISR is detected
- * @retval none
- */
- static void inline HCD_HC_IN_ISO(HCD_HandleTypeDef *hhcd, uint8_t ch_num,
- uint8_t phy_chnum, uint32_t regvalue)
- {
- /* Check if Double buffer isochronous */
- if ((regvalue & USB_CH_KIND) != 0U)
- {
- /* Get Data IN Packet */
- hhcd->hc[ch_num & 0xFU].xfer_count = HCD_GET_CH_RX_CNT(hhcd->Instance, phy_chnum);
- if (hhcd->hc[ch_num & 0xFU].xfer_count != 0U)
- {
- USB_ReadPMA(hhcd->Instance, hhcd->hc[ch_num & 0xFU].xfer_buff,
- hhcd->hc[ch_num & 0xFU].pmaadress,
- (uint16_t)hhcd->hc[ch_num & 0xFU].xfer_count);
- hhcd->hc[ch_num & 0xFU].urb_state = URB_DONE;
- }
- }
- #if (USE_USB_DOUBLE_BUFFER == 1U)
- else /* double buffer isochronous */
- {
- /* Read from Buffer0 */
- if ((regvalue & USB_CH_DTOG_RX) != 0U)
- {
- /* Get number of Received byte in buffer0 */
- hhcd->hc[ch_num & 0xFU].xfer_count = HCD_GET_CH_DBUF0_CNT(hhcd->Instance, phy_chnum);
- if (hhcd->hc[ch_num & 0xFU].xfer_count != 0U)
- {
- /* Read from Buffer0 */
- USB_ReadPMA(hhcd->Instance, hhcd->hc[ch_num & 0xFU].xfer_buff,
- hhcd->hc[ch_num & 0xFU].pmaaddr0,
- (uint16_t)hhcd->hc[ch_num & 0xFU].xfer_count);
- hhcd->hc[ch_num & 0xFU].urb_state = URB_DONE;
- }
- }
- else
- {
- /* Get number of Received byte in buffer1 */
- hhcd->hc[ch_num & 0xFU].xfer_count = HCD_GET_CH_DBUF1_CNT(hhcd->Instance, phy_chnum);
- if (hhcd->hc[ch_num & 0xFU].xfer_count != 0U)
- {
- /* Read from Buffer1 */
- USB_ReadPMA(hhcd->Instance, hhcd->hc[ch_num & 0xFU].xfer_buff,
- hhcd->hc[ch_num & 0xFU].pmaaddr1,
- (uint16_t)hhcd->hc[ch_num & 0xFU].xfer_count);
- hhcd->hc[ch_num & 0xFU].urb_state = URB_DONE;
- }
- }
- }
- #endif /* (USE_USB_DOUBLE_BUFFER == 1U) */
- /* Transfer complete state */
- hhcd->hc[ch_num & 0xFU].state = HC_XFRC;
- /* Clear VTRX */
- HCD_CLEAR_RX_CH_CTR(hhcd->Instance, phy_chnum);
- }
- /**
- * @brief Handle Host Channel IN interrupt requests.
- * @param hhcd HCD handle
- * @param ch_num Channel number
- * This parameter can be a value from 1 to 15
- * @retval none
- */
- static void HCD_HC_IN_IRQHandler(HCD_HandleTypeDef *hhcd, uint8_t ch_num)
- {
- uint16_t received_bytes;
- uint8_t phy_chnum = (uint8_t)__HAL_HCD_GET_CHNUM(hhcd);
- /*Take a Flag snapshot from the CHEP register, due to STRX bits are used for both control and status */
- uint32_t ch_reg = HCD_GET_CHANNEL(hhcd->Instance, phy_chnum);
- /* Manage Correct Transaction */
- if ((ch_reg & USB_CH_ERRRX) == 0U)
- {
- /* Isochronous Channel */
- if ((ch_reg & USB_CH_UTYPE) == USB_EP_ISOCHRONOUS)
- {
- HCD_HC_IN_ISO(hhcd, ch_num, phy_chnum, ch_reg);
- }
- else
- {
- /* manage ACK response single buffer */
- if (((ch_reg) & USB_CH_RX_STRX) == USB_CH_RX_ACK_SBUF)
- {
- /* Get Control Data OUT Packet */
- received_bytes = (uint16_t)HCD_GET_CH_RX_CNT(hhcd->Instance, phy_chnum);
- /* Read the byte from PMA to user Buffer(System Memory) */
- USB_ReadPMA(hhcd->Instance, hhcd->hc[ch_num & 0xFU].xfer_buff,
- hhcd->hc[ch_num & 0xFU].pmaadress, (uint16_t)received_bytes);
- /* update the global number of all received bytes */
- hhcd->hc[ch_num & 0xFU].xfer_count += received_bytes;
- /* Transfer complete state */
- hhcd->hc[ch_num & 0xFU].state = HC_ACK;
- hhcd->hc[ch_num & 0xFU].ErrCnt = 0U;
- if (hhcd->hc[ch_num & 0xFU].xfer_len <= received_bytes)
- {
- hhcd->hc[ch_num & 0xFU].xfer_len = 0U;
- }
- else
- {
- hhcd->hc[ch_num & 0xFU].xfer_len -= received_bytes;
- }
- if ((hhcd->hc[ch_num & 0xFU].xfer_len == 0U) ||
- ((received_bytes < hhcd->hc[ch_num & 0xFU].max_packet)))
- {
- hhcd->hc[ch_num & 0xFU].urb_state = URB_DONE;
- hhcd->hc[ch_num & 0xFU].state = HC_XFRC;
- }
- else
- {
- hhcd->hc[ch_num & 0xFU].xfer_buff += received_bytes;
- /* Reactivate the Channel to Submit another URB since the Transfer is not yet completed */
- HCD_SET_CH_RX_STATUS(hhcd->Instance, phy_chnum, USB_CH_RX_STRX);
- }
- if ((hhcd->hc[ch_num & 0xFU].ep_type == EP_TYPE_BULK) ||
- (hhcd->hc[ch_num & 0xFU].ep_type == EP_TYPE_INTR))
- {
- hhcd->hc[ch_num & 0xFU].toggle_out ^= 1U;
- }
- }
- /* manage NACK Response */
- else if (((ch_reg & USB_CH_RX_STRX) == USB_CH_RX_NAK)
- && (hhcd->hc[ch_num & 0xFU].urb_state != URB_DONE))
- {
- hhcd->hc[ch_num & 0xFU].urb_state = URB_NOTREADY;
- hhcd->hc[ch_num & 0xFU].ErrCnt = 0U;
- hhcd->hc[ch_num & 0xFU].state = HC_NAK;
- if (hhcd->hc[ch_num & 0xFU].ep_type == EP_TYPE_INTR)
- {
- /* Close the channel */
- HCD_SET_CH_RX_STATUS(hhcd->Instance, phy_chnum, USB_CH_RX_DIS);
- }
- }
- /* manage STALL Response */
- else if ((ch_reg & USB_CH_RX_STRX) == USB_CH_RX_STALL)
- {
- (void)HAL_HCD_HC_Halt(hhcd, ch_num);
- hhcd->hc[ch_num & 0xFU].state = HC_STALL;
- hhcd->hc[ch_num & 0xFU].urb_state = URB_STALL;
- /* Close the channel */
- HCD_SET_CH_RX_STATUS(hhcd->Instance, phy_chnum, USB_CH_RX_DIS);
- }
- #if (USE_USB_DOUBLE_BUFFER == 1U)
- /* Double Buffer Management in case of Bulk Transaction */
- else if (((ch_reg & USB_CH_RX_STRX) == USB_CH_RX_ACK_DBUF)
- && ((ch_reg & USB_CH_KIND) != 0U))
- {
- /* Bulk IN Double Buffer ISR */
- HCD_HC_IN_BulkDb(hhcd, ch_num, phy_chnum, ch_reg);
- }
- #endif /* (USE_USB_DOUBLE_BUFFER == 1U) */
- else
- {
- /*....*/
- /* not defined state: STRX=11 in single buffer no iso is not defined */
- }
- #if (USE_HAL_HCD_REGISTER_CALLBACKS == 1U)
- hhcd->HC_NotifyURBChangeCallback(hhcd, ch_num, hhcd->hc[ch_num & 0xFU].urb_state);
- #else
- HAL_HCD_HC_NotifyURBChange_Callback(hhcd, ch_num, hhcd->hc[ch_num & 0xFU].urb_state);
- #endif /* USE_HAL_HCD_REGISTER_CALLBACKS */
- /*Clear VTRX */
- HCD_CLEAR_RX_CH_CTR(hhcd->Instance, phy_chnum);
- }
- }
- else /* Error detected during last transaction */
- {
- /* Set URB Error State */
- hhcd->hc[ch_num & 0xFU].urb_state = URB_NOTREADY;
- hhcd->hc[ch_num & 0xFU].ErrCnt++;
- hhcd->hc[ch_num & 0xFU].state = HC_XACTERR;
- /* Clear VTTRX & ERR_RX */
- HCD_CLEAR_RX_CH_ERR(hhcd->Instance, phy_chnum);
- /* Check Error number */
- if (hhcd->hc[ch_num & 0xFU].ErrCnt > 3U)
- {
- hhcd->hc[ch_num & 0xFU].urb_state = URB_ERROR;
- HCD_SET_CH_RX_STATUS(hhcd->Instance, phy_chnum, USB_CH_RX_DIS);
- /* Clear pending err_tx */
- HCD_CLEAR_RX_CH_ERR(hhcd->Instance, phy_chnum);
- }
- #if (USE_HAL_HCD_REGISTER_CALLBACKS == 1U)
- hhcd->HC_NotifyURBChangeCallback(hhcd, ch_num, hhcd->hc[ch_num & 0xFU].urb_state);
- #else
- HAL_HCD_HC_NotifyURBChange_Callback(hhcd, ch_num, hhcd->hc[ch_num & 0xFU].urb_state);
- #endif /* USE_HAL_HCD_REGISTER_CALLBACKS */
- }
- }
- /**
- * @brief Handle Host Channel OUT interrupt requests.
- * @param hhcd HCD handle
- * @param chnum Channel number
- * This parameter can be a value from 1 to 15
- * @retval none
- */
- static void HCD_HC_OUT_IRQHandler(HCD_HandleTypeDef *hhcd, uint8_t chnum)
- {
- uint16_t data_xfr;
- __IO uint32_t WregCh;
- /* Get Physical Channel number */
- uint32_t phy_chnum = (uint8_t)__HAL_HCD_GET_CHNUM(hhcd);
- /* Take a Flag snapshot from the CHEP register, due to STRX bits are used for both control &status */
- uint32_t ch_reg = *(__IO uint32_t *)(&(hhcd->Instance->CHEP0R) + phy_chnum);
- /*------ Manage Correct Transaction ------*/
- if ((ch_reg & USB_CH_ERRTX) == 0U)
- {
- /* Handle Isochronous channel */
- if ((ch_reg & USB_CH_UTYPE) == USB_EP_ISOCHRONOUS)
- {
- /* correct transaction */
- if ((hhcd->Instance->ISTR & USB_ISTR_ERR) == 0U)
- {
- /* Double buffer isochronous out */
- if ((ch_reg & USB_CH_KIND) != 0U)
- {
- HCD_SET_CH_TX_CNT(hhcd->Instance, phy_chnum, 0U);
- }
- #if (USE_USB_DOUBLE_BUFFER == 1U)
- else /* double buffer isochronous out */
- {
- /* Odd Transaction */
- if ((ch_reg & USB_CH_DTOG_TX) != 0U)
- {
- HCD_SET_CH_TX_CNT(hhcd->Instance, phy_chnum, 0U);
- }
- /* Even Transaction */
- else
- {
- HCD_SET_CH_RX_CNT(hhcd->Instance, phy_chnum, 0U);
- }
- USB_DRD_SET_CHEP_TX_STATUS(hhcd->Instance, phy_chnum, USB_CH_TX_DIS);
- }
- #endif /* (USE_USB_DOUBLE_BUFFER == 1U) */
- /* Transfer complete state */
- hhcd->hc[chnum & 0xFU].state = HC_XFRC;
- hhcd->hc[chnum & 0xFU].urb_state = URB_DONE;
- }
- /*Clear Correct Transfer */
- HCD_CLEAR_TX_CH_CTR(hhcd->Instance, phy_chnum);
- /*TX COMPLETE*/
- #if (USE_HAL_HCD_REGISTER_CALLBACKS == 1U)
- hhcd->HC_NotifyURBChangeCallback(hhcd, (uint8_t)chnum, hhcd->hc[chnum & 0xFU].urb_state);
- #else
- HAL_HCD_HC_NotifyURBChange_Callback(hhcd, (uint8_t)chnum, hhcd->hc[chnum & 0xFU].urb_state);
- #endif /* USE_HAL_HCD_REGISTER_CALLBACKS */
- }
- else /* Manage all Non Isochronous Transaction */
- {
- /* Check ACK response */
- if ((ch_reg & USB_CH_TX_STTX) == USB_CH_TX_ACK_SBUF)
- {
- data_xfr = (uint16_t)(((USB_DRD_PMA_BUFF + phy_chnum)->TXBD & 0x03FF0000U) >> 16U);
- if (hhcd->hc[chnum & 0xFU].xfer_len >= data_xfr)
- {
- hhcd->hc[chnum & 0xFU].xfer_len -= data_xfr;
- }
- else
- {
- hhcd->hc[chnum & 0xFU].xfer_len = 0U;
- }
- /* Transfer no yet finished only one packet of mps is transferred and ACKed from device */
- if (hhcd->hc[chnum & 0xFU].xfer_len != 0U)
- {
- /* manage multiple Xfer */
- hhcd->hc[chnum & 0xFU].xfer_buff += data_xfr;
- hhcd->hc[chnum & 0xFU].xfer_count += data_xfr;
- /* start a new transfer */
- (void) USB_HC_StartXfer(hhcd->Instance, &hhcd->hc[chnum & 0xFU]);
- }
- else
- {
- /* Transfer complete */
- hhcd->hc[chnum & 0xFU].xfer_count += data_xfr;
- hhcd->hc[chnum & 0xFU].state = HC_XFRC;
- hhcd->hc[chnum & 0xFU].urb_state = URB_DONE;
- if ((hhcd->hc[chnum & 0xFU].ep_type == EP_TYPE_BULK) ||
- (hhcd->hc[chnum & 0xFU].ep_type == EP_TYPE_INTR))
- {
- hhcd->hc[chnum & 0xFU].toggle_out ^= 1U;
- }
- }
- }
- /* Check NACK Response */
- else if (((ch_reg & USB_CHEP_NAK) == USB_CHEP_NAK) ||
- ((ch_reg & USB_CH_TX_STTX) == USB_CH_TX_NAK))
- {
- /* Update Channel status */
- hhcd->hc[chnum & 0xFU].state = HC_NAK;
- hhcd->hc[chnum & 0xFU].urb_state = URB_NOTREADY;
- hhcd->hc[chnum & 0xFU].ErrCnt = 0U;
- /* Get Channel register value */
- WregCh = *(__IO uint32_t *)(&(hhcd->Instance->CHEP0R) + phy_chnum);
- /*clear NAK status*/
- WregCh &= ~USB_CHEP_NAK & USB_CHEP_REG_MASK;
- /* Update channel register Value */
- HCD_SET_CHANNEL(hhcd->Instance, phy_chnum, WregCh);
- if (hhcd->hc[chnum & 0xFU].doublebuffer == 0U)
- {
- #if (USE_HAL_HCD_REGISTER_CALLBACKS == 1U)
- hhcd->HC_NotifyURBChangeCallback(hhcd, (uint8_t)chnum, hhcd->hc[chnum & 0xFU].urb_state);
- #else
- HAL_HCD_HC_NotifyURBChange_Callback(hhcd, (uint8_t)chnum, hhcd->hc[chnum & 0xFU].urb_state);
- #endif /* USE_HAL_HCD_REGISTER_CALLBACKS */
- }
- }
- /* Check STALL Response */
- else if ((ch_reg & USB_CH_TX_STTX) == USB_CH_TX_STALL)
- {
- (void) HAL_HCD_HC_Halt(hhcd, (uint8_t)chnum);
- hhcd->hc[chnum & 0xFU].state = HC_STALL;
- hhcd->hc[chnum & 0xFU].urb_state = URB_STALL;
- }
- #if (USE_USB_DOUBLE_BUFFER == 1U)
- /* Check double buffer ACK in case of bulk transaction */
- else if ((ch_reg & USB_CH_TX_STTX) == USB_CH_TX_ACK_DBUF)
- {
- /* Double buffer management Bulk Out */
- (void) HCD_HC_OUT_BulkDb(hhcd, chnum, (uint8_t)phy_chnum, ch_reg);
- }
- #endif /* (USE_USB_DOUBLE_BUFFER == 1U) */
- else
- {
- /*...*/
- }
- if ((ch_reg & USB_CH_TX_STTX) != USB_CH_TX_NAK)
- {
- #if (USE_HAL_HCD_REGISTER_CALLBACKS == 1U)
- hhcd->HC_NotifyURBChangeCallback(hhcd, (uint8_t)chnum, hhcd->hc[chnum & 0xFU].urb_state);
- #else
- HAL_HCD_HC_NotifyURBChange_Callback(hhcd, (uint8_t)chnum, hhcd->hc[chnum & 0xFU].urb_state);
- #endif /* USE_HAL_HCD_REGISTER_CALLBACKS */
- }
- HCD_CLEAR_TX_CH_CTR(hhcd->Instance, phy_chnum);
- } /* end no isochronous */
- }
- /*------ Manage Transaction Error------*/
- else
- {
- hhcd->hc[chnum & 0xFU].ErrCnt++;
- if (hhcd->hc[chnum & 0xFU].ErrCnt > 3U)
- {
- HCD_SET_CH_TX_STATUS(hhcd->Instance, phy_chnum, USB_CH_TX_DIS);
- hhcd->hc[chnum & 0xFU].urb_state = URB_ERROR;
- }
- else
- {
- hhcd->hc[chnum & 0xFU].urb_state = URB_NOTREADY;
- }
- hhcd->hc[chnum & 0xFU].state = HC_XACTERR;
- /*Clear ERR_TX*/
- HCD_CLEAR_TX_CH_ERR(hhcd->Instance, phy_chnum);
- #if (USE_HAL_HCD_REGISTER_CALLBACKS == 1U)
- hhcd->HC_NotifyURBChangeCallback(hhcd, (uint8_t)chnum, hhcd->hc[chnum & 0xFU].urb_state);
- #else
- HAL_HCD_HC_NotifyURBChange_Callback(hhcd, (uint8_t)chnum, hhcd->hc[chnum & 0xFU].urb_state);
- #endif /* USE_HAL_HCD_REGISTER_CALLBACKS */
- }
- }
- /**
- * @brief Handle Host Port interrupt requests.
- * @param hhcd HCD handle
- * @retval None
- */
- static void HCD_Port_IRQHandler(HCD_HandleTypeDef *hhcd)
- {
- uint32_t FnrReg = hhcd->Instance->FNR;
- uint32_t IstrReg = hhcd->Instance->ISTR;
- /* SE0 detected USB Disconnected state */
- if ((FnrReg & (USB_FNR_RXDP | USB_FNR_RXDM)) == 0U)
- {
- /* Host Port State */
- hhcd->HostState = HCD_HCD_STATE_DISCONNECTED;
- /* clear all allocated virtual channel */
- HAL_HCD_ClearPhyChannel(hhcd);
- /* Reset the PMA current pointer */
- (void)HAL_HCD_PMAReset(hhcd);
- /* reset Ep0 Pma allocation state */
- hhcd->ep0_PmaAllocState = 0U;
- /* Disconnection Callback */
- #if (USE_HAL_HCD_REGISTER_CALLBACKS == 1U)
- hhcd->DisconnectCallback(hhcd);
- #else
- HAL_HCD_Disconnect_Callback(hhcd);
- #endif /* USE_HAL_HCD_REGISTER_CALLBACKS */
- return;
- }
- if ((hhcd->HostState == HCD_HCD_STATE_DISCONNECTED) != 0U)
- {
- /* J-state or K-state detected & LastState=Disconnected */
- if (((FnrReg & USB_FNR_RXDP) != 0U) || ((IstrReg & USB_ISTR_LS_DCONN) != 0U))
- {
- hhcd->HostState = HCD_HCD_STATE_CONNECTED;
- #if (USE_HAL_HCD_REGISTER_CALLBACKS == 1U)
- hhcd->ConnectCallback(hhcd);
- #else
- HAL_HCD_Connect_Callback(hhcd);
- #endif /* USE_HAL_HCD_REGISTER_CALLBACKS */
- }
- }
- else
- {
- /* J-state or K-state detected & lastState=Connected: a Missed disconnection is detected */
- if (((FnrReg & USB_FNR_RXDP) != 0U) || ((IstrReg & USB_ISTR_LS_DCONN) != 0U))
- {
- /* Host Port State */
- hhcd->HostState = HCD_HCD_STATE_DISCONNECTED;
- /* clear all allocated virtual channel */
- HAL_HCD_ClearPhyChannel(hhcd);
- /* Reset the PMA current pointer */
- (void)HAL_HCD_PMAReset(hhcd);
- /* reset Ep0 PMA allocation state */
- hhcd->ep0_PmaAllocState = 0U;
- /* Disconnection Callback */
- #if (USE_HAL_HCD_REGISTER_CALLBACKS == 1U)
- hhcd->DisconnectCallback(hhcd);
- #else
- HAL_HCD_Disconnect_Callback(hhcd);
- #endif /* USE_HAL_HCD_REGISTER_CALLBACKS */
- }
- }
- }
- /**
- * @brief Check if the ch_num are already reserved to a physical channel
- * @param hhcd HCD handle
- * @param ch_num Channel number
- * This parameter can be a value from 1 to 15
- * @retval HAL status
- */
- static uint8_t HAL_HCD_Check_usedChannel(HCD_HandleTypeDef const *hhcd, uint8_t ch_num)
- {
- uint8_t idx;
- /* Check if the logical channel are already opened */
- for (idx = 0U; idx < hhcd->Init.Host_channels; idx++)
- {
- if ((((hhcd->phy_chin_state[idx] & 0xF0U) >> 4U) == ((uint16_t)ch_num + 1U)) &&
- (hhcd->phy_chin_state[idx] != 0U))
- {
- return (1U | (idx << 4U));
- }
- if ((((hhcd->phy_chout_state[idx] & 0xF0U) >> 4U) == ((uint16_t)ch_num + 1U)) &&
- (hhcd->phy_chout_state[idx] != 0U))
- {
- return (1U | (idx << 4U));
- }
- }
- return 0U;
- }
- /**
- * @brief Get a Logical Channel number from physical Channel
- * @param hhcd HCD handle
- * @param phy_chnum
- * This parameter can be a value from 1 to 15
- * @param dir Channel direction
- * -0 OUT_Channel
- * -1 IN_Channel
- * @retval HAL status
- */
- static uint8_t HAL_HCD_GetLogical_Channel(HCD_HandleTypeDef const *hhcd,
- uint8_t phy_chnum, uint8_t dir)
- {
- /* Out Channel Direction */
- if (dir == 0U)
- {
- if (((hhcd->phy_chout_state[phy_chnum & 0x7U] & 0x00F0U) >> 4U) != 0U)
- {
- return ((uint8_t)((hhcd->phy_chout_state[phy_chnum & 0x7U] & 0x00F0U) >> 4U) - 1U);
- }
- else
- {
- /* Channel not registered Error */
- return HCD_LOGICAL_CH_NOT_OPENED;
- }
- }
- /* IN Channel Direction */
- else
- {
- if (((hhcd->phy_chin_state[phy_chnum & 0x7U] & 0x00F0U) >> 4U) != 0U)
- {
- return ((uint8_t)((hhcd->phy_chin_state[phy_chnum & 0x7U] & 0x00F0U) >> 4U) - 1U);
- }
- else
- {
- /* Channel not registered Error */
- return HCD_LOGICAL_CH_NOT_OPENED;
- }
- }
- }
- /**
- * @brief Get a free physical Channel number according to the direction
- * @param hhcd HCD handle
- * @param ch_num Channel number
- * This parameter can be a value from 1 to 15
- * @param epnum Endpoint number
- * This parameter can be a value from 1 to 15
- * @param ep_type Endpoint Type
- * This parameter can be one of these values:
- * EP_TYPE_CTRL Control type,
- * EP_TYPE_ISOC Isochronous type,
- * EP_TYPE_BULK Bulk type,
- * EP_TYPE_INTR Interrupt type
- * @retval if physical channel is available return Phy_channel number
- else return HCD_FREE_CH_NOT_FOUND
- */
- static uint8_t HAL_HCD_Get_FreePhyChannel(HCD_HandleTypeDef *hhcd, uint8_t ch_num,
- uint8_t epnum, uint8_t ep_type)
- {
- uint8_t idx;
- if ((epnum & 0x7FU) == 0U)
- {
- idx = 0U;
- if (ch_num == 0U)
- {
- if (hhcd->phy_chin_state[idx] == 0U)
- {
- /* chin_state to store the ep_type to be used for the same channel in OUT direction
- * adding + 1 to ep_type avoid starting with a 0 value. ep_type take by default (0/1/2/3) */
- hhcd->phy_chin_state[idx] = (((uint16_t)ch_num + 1U) << 4U) |
- ((uint16_t)ep_type + 1U) |
- (((uint16_t)epnum & 0x0FU) << 8U);
- }
- if (hhcd->phy_chout_state[idx] == 0U)
- {
- /* chout_state will store the ep_type to be used for the same channel in IN direction
- * adding + 1 to ep_type avoid starting with a 0 value. ep_type take by default (0/1/2/3) */
- hhcd->phy_chout_state[idx] = (((uint16_t)ch_num + 1U) << 4U) |
- ((uint16_t)ep_type + 1U) |
- (((uint16_t)epnum & 0x0FU) << 8U);
- }
- }
- else
- {
- if ((epnum & 0x80U) != 0U)
- {
- if (((hhcd->phy_chin_state[idx] & 0xF0U) >> 4U) != ((uint16_t)ch_num + 1U))
- {
- /* chin_state to store the ep_type to be used for the same channel in OUT direction
- * adding + 1 to ep_type avoid starting with a 0 value. ep_type take by default (0/1/2/3) */
- hhcd->phy_chin_state[idx] = (((uint16_t)ch_num + 1U) << 4U) |
- ((uint16_t)ep_type + 1U) |
- (((uint16_t)epnum & 0x0FU) << 8U);
- }
- }
- else
- {
- if (((hhcd->phy_chout_state[idx] & 0xF0U) >> 4U) != ((uint16_t)ch_num + 1U))
- {
- /* chout_state will store the ep_type to be used for the same channel in IN direction
- * adding + 1 to ep_type avoid starting with a 0 value. ep_type take by default (0/1/2/3) */
- hhcd->phy_chout_state[idx] = (((uint16_t)ch_num + 1U) << 4U) |
- ((uint16_t)ep_type + 1U) |
- (((uint16_t)epnum & 0x0FU) << 8U);
- }
- }
- }
- return idx;
- }
- if ((epnum & 0x80U) != 0U)
- {
- /* Find a new available physical in channel */
- for (idx = 1U; idx < hhcd->Init.Host_channels; idx++)
- {
- /* Check if the same epnum is allocated then allocate the same physical channel OUT for IN Logical Channel */
- if ((hhcd->phy_chin_state[idx] == 0U) &&
- ((((hhcd->phy_chout_state[idx] & 0x000FU) == ((uint16_t)ep_type + 1U)) &&
- (((hhcd->phy_chout_state[idx] & 0x0F00U) == ((uint16_t)epnum & 0x0FU)))) ||
- (hhcd->phy_chout_state[idx] == 0U)))
- {
- /* chin_state to store the ep_type to be used for the same channel in OUT direction
- * adding + 1 to ep_type avoid starting with a 0 value. ep_type take by default (0/1/2/3) */
- hhcd->phy_chin_state[idx] = (((uint16_t)ch_num + 1U) << 4U) |
- ((uint16_t)ep_type + 1U) |
- (((uint16_t)epnum & 0x0FU) << 8U);
- return idx;
- }
- }
- }
- else
- {
- /* Find a new available physical out channel */
- for (idx = 1U; idx < hhcd->Init.Host_channels; idx++)
- {
- /* Check if the same epnum is allocated then allocate the same physical channel IN for OUT Logical Channel */
- if ((hhcd->phy_chout_state[idx] == 0U) &&
- ((((hhcd->phy_chin_state[idx] & 0x0FU) == ((uint16_t)ep_type + 1U)) &&
- ((hhcd->phy_chin_state[idx] & 0x0F00U) == ((uint16_t)epnum & 0x0FU))) ||
- (hhcd->phy_chin_state[idx] == 0U)))
- {
- /* chout_state will store the ep_type to be used for the same channel in IN direction
- * adding + 1 to ep_type avoid starting with a 0 value. ep_type take by default (0/1/2/3) */
- hhcd->phy_chout_state[idx] = (((uint16_t)ch_num + 1U) << 4U) |
- ((uint16_t)ep_type + 1U) |
- (((uint16_t)epnum & 0x0FU) << 8U);
- return idx;
- }
- }
- }
- /* in case of Error */
- return HCD_FREE_CH_NOT_FOUND;
- }
- /**
- * @brief Free All Channel allocation
- * @param hhcd HCD handle
- * @retval HAL status
- */
- static void HAL_HCD_ClearPhyChannel(HCD_HandleTypeDef *hhcd)
- {
- uint8_t idx;
- for (idx = 0U; idx < hhcd->Init.Host_channels; idx++)
- {
- /*Reset channel allocation value */
- hhcd->phy_chout_state[idx] = 0U;
- hhcd->phy_chin_state[idx] = 0U;
- }
- }
- /*---------------------- PMA Allocation Section --------------------- */
- /*
- __col31________________col0__ Column-- >
- lin0 | entry31.|....... | entry0 | Line
- |---------|---------|--------| |
- line1| entry63.|....... | entry32| |
- |---------|---------|--------| \|/
- | entry127|....... | entry64|
- |---------|---------|--------|
- | entry256|...... |entry128|
- ----------------------------
- an allocation space of 64byte need 8 Free contiguous Entry in the Matrix
- - a Free Entry is a bit with 0 Value/ a busy entry is a bit with 1 value. */
- /**
- * @brief Fetch in the PMA_LockupTable free space of number of mps byte
- * @param hhcd Host instance
- * @param mps Channel Max Packet Size
- * @retval PMA_Address of the first free block containing mps byte
- 0xFFFF in case of no space available
- */
- static uint16_t HAL_HCD_GetFreePMA(HCD_HandleTypeDef *hhcd, uint16_t mps)
- {
- uint32_t Entry;
- uint32_t FreeBlocks = 0U;
- uint8_t FirstFreeBlock_col = 0U;
- uint8_t FirstFreeBlock_line = 0U;
- uint8_t ColIndex;
- uint16_t NbrReqBlocks;
- uint16_t mps_t = mps;
- /* since PMA buffer descriptor RXBD allocate address according to BLSIZE, BLSIZE=1==> mps>64
- allocation in PMA is done in 32Bytes each entry */
- if ((mps_t > 64U) && ((mps_t % 32U) != 0U))
- {
- /* Align the mps to 32byte block to match the allocation in PMA,
- check Definition of allocation buffer memory in usb user spec */
- mps_t = (uint16_t)(((mps_t / 32U) + 1U) * 32U);
- }
- /* calculate the number of block(8byte) to allocate */
- NbrReqBlocks = mps_t / 8U;
- /* check if we need remaining Block */
- if ((mps_t % 8U) != 0U)
- {
- NbrReqBlocks++;
- }
- /* Look For NbrReqBlocks * Empty Block */
- for (uint8_t i = 0U; ((i < PMA_BLOCKS) && (FreeBlocks != NbrReqBlocks)); i++)
- {
- Entry = hhcd->PMALookupTable[i];
- /* when parse is in progress, check the first col to look for a contiguous block */
- if ((FreeBlocks != 0U) && ((Entry & (uint32_t)1U) != 0U))
- {
- FreeBlocks = 0U;
- }
- uint8_t j = 0U;
- while ((j <= 31U) && (FreeBlocks != NbrReqBlocks))
- {
- /* check if block j is free */
- if ((Entry & ((uint32_t)1U << j)) == 0U)
- {
- if (FreeBlocks == 0U)
- {
- FirstFreeBlock_col = j;
- FirstFreeBlock_line = i;
- FreeBlocks++;
- }
- j++;
- /* Parse Column PMALockTable */
- while ((j <= 31U) && ((Entry & ((uint32_t)1U << j)) == 0U) && (FreeBlocks < NbrReqBlocks))
- {
- FreeBlocks++;
- j++;
- }
- /* Free contiguous Blocks not found */
- if (((FreeBlocks < NbrReqBlocks) && (j < 31U)) ||
- ((j == 31U) && ((Entry & ((uint32_t)1U << j)) != 0U)))
- {
- FreeBlocks = 0U;
- }
- }
- j++;
- } /* end for j */
- } /* end for i */
- /* Free block found */
- if (FreeBlocks >= NbrReqBlocks)
- {
- ColIndex = FirstFreeBlock_col;
- for (uint8_t i = FirstFreeBlock_line; ((i < PMA_BLOCKS) && (FreeBlocks > 0U)); i++)
- {
- for (uint8_t j = ColIndex; j <= 31U; j++)
- {
- hhcd->PMALookupTable[i] |= ((uint32_t)1U << j);
- if (--FreeBlocks == 0U)
- {
- break;
- }
- }
- ColIndex = 0U;
- }
- return (uint16_t)((FirstFreeBlock_line * (uint16_t)256U) + (FirstFreeBlock_col * (uint16_t)8U));
- }
- else
- {
- return 0xFFFFU;
- }
- }
- /**
- * @brief Allocate PMA buffer for Channel
- * This API will fetch a free space
- * @param hhcd Host instance
- * @param ch_num Channel number
- * @param ch_kind endpoint Kind
- * USB_SNG_BUF Single Buffer used
- * USB_DBL_BUF Double Buffer used
- * @param mps Channel Max Packet Size
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_PMAlloc(HCD_HandleTypeDef *hhcd, uint8_t ch_num,
- uint16_t ch_kind, uint16_t mps)
- {
- uint16_t pma_addr0;
- #if (USE_USB_DOUBLE_BUFFER == 1U)
- uint16_t pma_addr1; /* used for double buffer mode if enabled */
- #endif /* (USE_USB_DOUBLE_BUFFER == 1U) */
- /* Host Channel */
- HCD_HCTypeDef *hc = &(hhcd->hc[ch_num]);
- /* Get a FreePMA Address */
- pma_addr0 = HAL_HCD_GetFreePMA(hhcd, mps);
- /* if there is no free space to allocate */
- if (pma_addr0 == 0xFFFFU)
- {
- return HAL_ERROR;
- }
- else
- {
- /* Here we check if the endpoint is single or double Buffer */
- if (ch_kind == HCD_SNG_BUF)
- {
- /* Single Buffer */
- hc->doublebuffer = 0U;
- if (hc->ep_num == 0U)
- {
- hhcd->ep0_PmaAllocState = ch_num;
- hhcd->ep0_PmaAllocState |= (1U << 8);
- }
- /* Configure the PMA */
- if (hc->ch_dir == CH_IN_DIR)
- {
- hc->pmaaddr1 = pma_addr0;
- (USB_DRD_PMA_BUFF + hc->phy_ch_num)->RXBD = hc->pmaaddr1;
- if (hc->ep_num == 0U)
- {
- hhcd->ep0_PmaAllocState |= (CH_IN_DIR << 4);
- }
- }
- else
- {
- hc->pmaaddr0 = pma_addr0;
- (USB_DRD_PMA_BUFF + hc->phy_ch_num)->TXBD = hc->pmaaddr0;
- }
- /* Set the PmaAddress */
- hc->pmaadress = pma_addr0;
- }
- #if (USE_USB_DOUBLE_BUFFER == 1U)
- else /* USB_DBL_BUF */
- {
- /* Double Buffer Endpoint */
- hc->doublebuffer = 1U;
- /* Get a FreePMA Address for buffer 2 */
- pma_addr1 = HAL_HCD_GetFreePMA(hhcd, mps);
- if (pma_addr1 == 0xFFFFU)
- {
- /* Free the first buffer */
- (void)HAL_HCD_PMAFree(hhcd, pma_addr0, mps);
- return HAL_ERROR;
- }
- else
- {
- /* Configure the PMA */
- hc->pmaaddr0 = (uint16_t)(pma_addr0);
- hc->pmaaddr1 = (uint16_t)(pma_addr1);
- /* Set Buffer0 pma address */
- (USB_DRD_PMA_BUFF + hc->phy_ch_num)->TXBD = pma_addr0;
- /* Set Buffer1 pma address */
- (USB_DRD_PMA_BUFF + hc->phy_ch_num)->RXBD = pma_addr1;
- /* Used for Bulk DB MPS < 64bytes */
- if (hc->ch_dir == CH_IN_DIR)
- {
- hc->pmaadress = hc->pmaaddr1;
- }
- else
- {
- hc->pmaadress = hc->pmaaddr0;
- }
- }
- }
- #endif /* (USE_USB_DOUBLE_BUFFER == 1U) */
- }
- return HAL_OK;
- }
- /**
- * @brief PMA De-Allocation for Channel Free the reserved block in the PMA-LookupTable
- * @param hhcd Host instance
- * @param ch_num Channel number
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_PMADeAlloc(HCD_HandleTypeDef *hhcd, uint8_t ch_num)
- {
- HAL_StatusTypeDef status;
- #if (USE_USB_DOUBLE_BUFFER == 1U)
- uint8_t Err = 0U;
- #endif /* (USE_USB_DOUBLE_BUFFER == 1U) */
- /* Host Channel */
- HCD_HCTypeDef *hc = &(hhcd->hc[ch_num]);
- /* Single Buffer */
- if (hc->doublebuffer == 0U)
- {
- status = HAL_HCD_PMAFree(hhcd, hc->pmaadress, hc->max_packet);
- }
- else /* Double buffer */
- {
- #if (USE_USB_DOUBLE_BUFFER == 1U)
- status = HAL_HCD_PMAFree(hhcd, hc->pmaaddr0, hc->max_packet);
- if (status != HAL_OK)
- {
- Err++;
- }
- status = HAL_HCD_PMAFree(hhcd, hc->pmaaddr1, hc->max_packet);
- if (status != HAL_OK)
- {
- Err++;
- }
- if (Err != 0U)
- {
- return HAL_ERROR;
- }
- #else
- status = HAL_ERROR;
- #endif /* (USE_USB_DOUBLE_BUFFER == 1U) */
- }
- return status;
- }
- /**
- * @brief PMA Reset
- * @param hhcd Host instance
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_HCD_PMAReset(HCD_HandleTypeDef *hhcd)
- {
- /* Reset All PMA Entry */
- for (uint8_t i = 0U; i < PMA_BLOCKS; i++)
- {
- hhcd->PMALookupTable[i] = 0U;
- }
- /* Allocate a Space for buffer descriptor table depending on the Host channel number */
- for (uint8_t i = 0U; i < hhcd->Init.Host_channels; i++)
- {
- hhcd->PMALookupTable[0] |= ((uint32_t)1U << i);
- }
- return HAL_OK;
- }
- /**
- * @brief PMA Free
- * @param hhcd Host instance
- * @param pma_base PMA base offset stored in hhcd->hc.pmaaddr
- * @param mps Max Packet Size
- * @retval HAL status
- */
- static HAL_StatusTypeDef HAL_HCD_PMAFree(HCD_HandleTypeDef *hhcd, uint32_t pma_base, uint16_t mps)
- {
- uint32_t block_nbr;
- uint8_t ColIndex;
- uint8_t LineIndex;
- uint16_t mps_t = mps;
- /* since PMA buffer descriptor RXBD allocate address according to BLSIZE, BLSIZE=1==> mps>64
- allocation in PMA is done in 32Bytes each entry */
- if ((mps_t > 64U) && ((mps_t % 32U) != 0U))
- {
- /* Align the mps to 32byte block to match the allocation in PMA,
- check Definition of allocation buffer memory in usb user spec */
- mps_t = (uint16_t)(((mps_t / 32U) + 1U) * 32U);
- }
- /* Calculate the number of needed block to Free */
- if ((mps_t / 8U) != 0U)
- {
- block_nbr = ((uint32_t)mps_t / 8U);
- if ((mps_t % 8U) != 0U)
- {
- block_nbr++;
- }
- }
- else
- {
- block_nbr = 1U;
- }
- /* Decode Col/Line of PMA_Base position in the PMA_LookupTable */
- if (pma_base > 256U)
- {
- LineIndex = (uint8_t)(pma_base / 256U);
- ColIndex = (uint8_t)((pma_base - ((uint32_t)LineIndex * 256U)) / 8U);
- }
- else
- {
- LineIndex = 0U;
- ColIndex = (uint8_t)(pma_base / 8U);
- }
- /* Reset the corresponding bit in the lookupTable */
- for (uint8_t i = LineIndex; ((i < PMA_BLOCKS) && (block_nbr > 0U)); i++)
- {
- for (uint8_t j = ColIndex; j <= 31U; j++)
- {
- /* Check if the block is not already reserved or it was already closed */
- if ((hhcd->PMALookupTable[i] & ((uint32_t)1U << j)) == 0U)
- {
- return HAL_ERROR;
- }
- /* Free the reserved block by resetting the corresponding bit */
- hhcd->PMALookupTable[i] &= ~(1U << j);
- if (--block_nbr == 0U)
- {
- break;
- }
- }
- ColIndex = 0U;
- }
- return HAL_OK;
- }
- /**
- * @}
- */
- /**
- * @}
- */
- #endif /* defined (USB_DRD_FS) */
- #endif /* HAL_HCD_MODULE_ENABLED */
- /**
- * @}
- */
- /**
- * @}
- */
|