Lines Matching refs:masterConfig

926 void I3C_MasterGetDefaultConfig(i3c_master_config_t *masterConfig)  in I3C_MasterGetDefaultConfig()  argument
928 (void)memset(masterConfig, 0, sizeof(*masterConfig)); in I3C_MasterGetDefaultConfig()
930 masterConfig->enableMaster = kI3C_MasterOn; in I3C_MasterGetDefaultConfig()
931 masterConfig->disableTimeout = false; in I3C_MasterGetDefaultConfig()
932 masterConfig->hKeep = kI3C_MasterHighKeeperNone; in I3C_MasterGetDefaultConfig()
933 masterConfig->enableOpenDrainStop = true; in I3C_MasterGetDefaultConfig()
934 masterConfig->enableOpenDrainHigh = true; in I3C_MasterGetDefaultConfig()
935 masterConfig->baudRate_Hz.i2cBaud = 400000U; in I3C_MasterGetDefaultConfig()
936 masterConfig->baudRate_Hz.i3cPushPullBaud = 12500000U; in I3C_MasterGetDefaultConfig()
937 masterConfig->baudRate_Hz.i3cOpenDrainBaud = 2500000U; in I3C_MasterGetDefaultConfig()
952 void I3C_MasterInit(I3C_Type *base, const i3c_master_config_t *masterConfig, uint32_t sourceClock_H… in I3C_MasterInit() argument
968 …base->MCONFIG = I3C_MCONFIG_MSTENA(masterConfig->enableMaster) | I3C_MCONFIG_DISTO(masterConfig->d… in I3C_MasterInit()
969 … I3C_MCONFIG_HKEEP(masterConfig->hKeep) | I3C_MCONFIG_ODSTOP(masterConfig->enableOpenDrainStop) | in I3C_MasterInit()
970 I3C_MCONFIG_ODHPP(masterConfig->enableOpenDrainHigh); in I3C_MasterInit()
973 …ONFIG_EXT = I3C_MCONFIG_EXT_I3C_CAS_DEL(masterConfig->startSclDelay) | I3C_MCONFIG_EXT_I3C_CASR_DE… in I3C_MasterInit()
978 I3C_MasterSetBaudRate(base, &masterConfig->baudRate_Hz, sourceClock_Hz); in I3C_MasterInit()
981 assert((masterConfig->slowClock_Hz >= 1000000U) || (masterConfig->slowClock_Hz == 0U)); in I3C_MasterInit()
987 if (masterConfig->slowClock_Hz != 0U) in I3C_MasterInit()
991 matchCount = (uint8_t)(masterConfig->slowClock_Hz / 1000000UL) - 1U; in I3C_MasterInit()
1598 uint32_t masterConfig = 0; in I3C_MasterProcessDAASpecifiedBaudrate() local
1625 masterConfig = base->MCONFIG; in I3C_MasterProcessDAASpecifiedBaudrate()
1708 base->MCONFIG = masterConfig; in I3C_MasterProcessDAASpecifiedBaudrate()