Home
last modified time | relevance | path

Searched refs:p_FmPort (Results 1 – 3 of 3) sorted by relevance

/f-stack/freebsd/contrib/ncsw/Peripherals/FM/Port/
H A Dfm_port_im.c102 p_FmPort->im.f_TxConf(p_FmPort->h_App, in TxConf()
107 p_FmPort->im.f_TxConf(p_FmPort->h_App, in TxConf()
198 p_FmPort->im.currBdId = GetNextBdId(p_FmPort, p_FmPort->im.currBdId); in FmPortImRx()
205 if (p_FmPort->im.f_RxStore(p_FmPort->h_App, in FmPortImRx()
373 if (!p_FmPort->polling || p_FmPort->exceptions) in FmPortImInit()
452 if (!p_FmPort->polling || p_FmPort->exceptions) in FmPortImFree()
480 p_FmPort->im.currBdId = GetNextBdId(p_FmPort, p_FmPort->im.currBdId); in FmPortImFree()
612 if (!p_FmPort->exceptions && p_FmPort->polling) in FM_PORT_SetIMExceptions()
651 nextBdId = GetNextBdId(p_FmPort, p_FmPort->im.currBdId); in FM_PORT_ImTx()
658 p_FmPort->im.f_TxConf (p_FmPort->h_App, in FM_PORT_ImTx()
[all …]
H A Dfm_port.c2246 FM_GetRevision(p_FmPort->h_Fm, &p_FmPort->fmRevInfo); in FM_PORT_Config()
2617 p_FmPort->port.im_en = p_FmPort->imEn; in FM_PORT_Init()
2796 if (FmVSPFreeForPort(p_FmPort->h_Fm, p_FmPort->portType, p_FmPort->portId) in FM_PORT_Free()
3850 p_FmPort->portType, p_FmPort->portId); in FM_PORT_AnalyzePerformanceParams()
4522 p_FmPort->h_FmPcd = FmGetPcdHandle(p_FmPort->h_Fm); in FM_PORT_PcdPlcrAllocProfiles()
4525 if (!TRY_LOCK(p_FmPort->h_Spinlock, &p_FmPort->lock)) in FM_PORT_PcdPlcrAllocProfiles()
4551 if (!TRY_LOCK(p_FmPort->h_Spinlock, &p_FmPort->lock)) in FM_PORT_PcdPlcrFreeProfiles()
4596 if (!TRY_LOCK(p_FmPort->h_Spinlock, &p_FmPort->lock)) in FM_PORT_PcdKgModifyInitialScheme()
4685 if (!TRY_LOCK(p_FmPort->h_Spinlock, &p_FmPort->lock)) in FM_PORT_PcdPlcrModifyInitialProfile()
4827 if (!TRY_LOCK(p_FmPort->h_Spinlock, &p_FmPort->lock)) in FM_PORT_AttachPCD()
[all …]
H A Dfm_port.h752 #define BD_GET(id) &p_FmPort->im.p_BdRing[id]
950 void FmPortConfigIM (t_FmPort *p_FmPort, t_FmPortParams *p_FmPortParams);
951 t_Error FmPortImCheckInitParameters(t_FmPort *p_FmPort);
953 t_Error FmPortImInit(t_FmPort *p_FmPort);
954 void FmPortImFree(t_FmPort *p_FmPort);
956 t_Error FmPortImEnable (t_FmPort *p_FmPort);
957 t_Error FmPortImDisable (t_FmPort *p_FmPort);
958 t_Error FmPortImRx (t_FmPort *p_FmPort);
988 static __inline__ uint16_t GetNextBdId(t_FmPort *p_FmPort, uint16_t id) in GetNextBdId() argument
990 if (id < p_FmPort->im.bdRingSize-1) in GetNextBdId()