Functions | |
__STATIC_INLINE void | OSCXHfPowerModeSet (uint32_t ui32Mode) |
Set Power Mode for High Frequency XTAL Oscillator. More... | |
void | OSCClockSourceSet (uint32_t ui32SrcClk, uint32_t ui32Osc) |
Configure the oscillator input to the a source clock. More... | |
uint32_t | OSCClockSourceGet (uint32_t ui32SrcClk) |
Get the source clock settings. More... | |
__STATIC_INLINE bool | OSCHfSourceReady (void) |
Check if the HF clock source is ready to be switched. More... | |
__STATIC_INLINE void | OSCHfSourceSwitch (void) |
Switch the high frequency clock. More... | |
void | OSCInterfaceEnable (void) |
Enable CM3 access to the OSC_DIG module. More... | |
__STATIC_INLINE void | OSCInterfaceDisable (void) |
Disable CM3 access to the OSC_DIG module. More... | |
uint32_t | OSCHF_GetStartupTime (uint32_t timeUntilWakeupInMs) |
Returns maximum startup time (in microseconds) of XOSC_HF. More... | |
void | OSCHF_TurnOnXosc (void) |
Turns on XOSC_HF (but without switching to XOSC_HF). More... | |
bool | OSCHF_AttemptToSwitchToXosc (void) |
Switch to XOSC_HF if XOSC_HF is ready. More... | |
void | OSCHF_SwitchToRcOscTurnOffXosc (void) |
Switch to RCOSC_HF and turn off XOSC_HF. More... | |
uint32_t OSCClockSourceGet | ( | uint32_t | ui32SrcClk | ) |
Get the source clock settings.
Use this function to get the oscillator source for one of the system source clocks.
ui32SrcClk | is the source clock to check. |
Definition at line 155 of file osc.c.
Referenced by OSCHF_AttemptToSwitchToXosc(), OSCHF_SwitchToRcOscTurnOffXosc(), SysCtrlPowerdown(), SysCtrlPowerEverything(), and SysCtrlShutdown().
void OSCClockSourceSet | ( | uint32_t | ui32SrcClk, |
uint32_t | ui32Osc | ||
) |
Configure the oscillator input to the a source clock.
Use this function to set the oscillator source for one or more of the system source clocks.
When selecting the high frequency clock source, this function will not do the actual switch. Enabling the high frequency XTAL can take as much as 500us (TBD), so the actual switch is split into a seperate function, leaving CM3 free to perform other tasks as the XTAL starts up.
TBD: How long does it take to start the XTAL?
ui32SrcClk | is the source clocks to configure. |
ui32Osc | is the oscillator that drives the source clock. |
Definition at line 85 of file osc.c.
Referenced by OSCHF_SwitchToRcOscTurnOffXosc(), OSCHF_TurnOnXosc(), SysCtrlPowerdown(), SysCtrlPowerEverything(), SysCtrlShutdown(), and SysCtrlStandby().
bool OSCHF_AttemptToSwitchToXosc | ( | void | ) |
Switch to XOSC_HF if XOSC_HF is ready.
This is a non-blocking function checking if the XOSC_HF is ready and performs the switching if ready. The function is somewhat blocking in the case where switching is performed.
true
: Switching to XOSC_HF has occurred.false
: Switching has not occurred. uint32_t OSCHF_GetStartupTime | ( | uint32_t | timeUntilWakeupInMs | ) |
Returns maximum startup time (in microseconds) of XOSC_HF.
The startup time depends on several factors. This function calculates the maximum startup time based on statistical information.
timeUntilWakeupInMs | indicates how long time (milliseconds) to the startup will occur. |
void OSCHF_SwitchToRcOscTurnOffXosc | ( | void | ) |
void OSCHF_TurnOnXosc | ( | void | ) |
__STATIC_INLINE bool OSCHfSourceReady | ( | void | ) |
Check if the HF clock source is ready to be switched.
If a request to switch the HF clock source has been made, this function can be used to check if the clock source is ready to be swithced.
Once the HF clock source is ready the switch can be performed by calling the OSCHfSourceSwitch()
true
: HF clock source is ready.false
: HF clock source is not ready. Definition at line 235 of file osc.h.
Referenced by OSCHF_AttemptToSwitchToXosc().
__STATIC_INLINE void OSCHfSourceSwitch | ( | void | ) |
Switch the high frequency clock.
When switching the HF clock source the clock period might be prolonged leaving the clock 'stuck-at' high or low for a few cycles. To ensure that this does not coincide with a read access to the Flash potentially freezing the device, the HF clock source switch must be executed from ROM.
Definition at line 265 of file osc.h.
Referenced by OSCHF_AttemptToSwitchToXosc(), OSCHF_SwitchToRcOscTurnOffXosc(), SysCtrlPowerdown(), SysCtrlPowerEverything(), and SysCtrlShutdown().
__STATIC_INLINE void OSCInterfaceDisable | ( | void | ) |
Disable CM3 access to the OSC_DIG module.
Release the "force power on" of AUX and disable clock to AUX.
Definition at line 303 of file osc.h.
Referenced by SysCtrlPowerdown(), SysCtrlShutdown(), and SysCtrlStandby().
void OSCInterfaceEnable | ( | void | ) |
Enable CM3 access to the OSC_DIG module.
Force power on AUX and enable clocks to allow CM3 access on the OSC_DIG interface.
Definition at line 189 of file osc.c.
Referenced by SysCtrlPowerdown(), SysCtrlShutdown(), and SysCtrlStandby().
__STATIC_INLINE void OSCXHfPowerModeSet | ( | uint32_t | ui32Mode | ) |
Set Power Mode for High Frequency XTAL Oscillator.
ui32Mode | is the power mode for the HF XTAL. |
#define HIGH_POWER_XOSC 0 |
Definition at line 99 of file osc.h.
Referenced by OSCXHfPowerModeSet().
#define LOW_POWER_XOSC 1 |
Definition at line 98 of file osc.h.
Referenced by OSCXHfPowerModeSet().
#define OSC_RCOSC_HF 0x00000000 |
Definition at line 110 of file osc.h.
Referenced by OSCClockSourceSet(), OSCHF_SwitchToRcOscTurnOffXosc(), SysCtrlPowerdown(), and SysCtrlShutdown().
#define OSC_RCOSC_LF 0x00000002 |
Definition at line 112 of file osc.h.
Referenced by OSCClockSourceSet(), and SysCtrlShutdown().
#define OSC_SRC_CLK_HF 0x00000001 |
Definition at line 106 of file osc.h.
Referenced by OSCClockSourceGet(), OSCClockSourceSet(), OSCHF_AttemptToSwitchToXosc(), OSCHF_SwitchToRcOscTurnOffXosc(), OSCHF_TurnOnXosc(), SysCtrlPowerdown(), SysCtrlPowerEverything(), and SysCtrlShutdown().
#define OSC_SRC_CLK_LF 0x00000004 |
Definition at line 108 of file osc.h.
Referenced by OSCClockSourceGet(), OSCClockSourceSet(), SysCtrlPowerdown(), SysCtrlPowerEverything(), SysCtrlShutdown(), and SysCtrlStandby().
#define OSC_SRC_CLK_MF 0x00000002 |
Definition at line 107 of file osc.h.
Referenced by OSCClockSourceSet(), OSCHF_SwitchToRcOscTurnOffXosc(), OSCHF_TurnOnXosc(), SysCtrlPowerdown(), SysCtrlPowerEverything(), and SysCtrlShutdown().
#define OSC_XOSC_HF 0x00000001 |
Definition at line 111 of file osc.h.
Referenced by OSCClockSourceSet(), OSCHF_AttemptToSwitchToXosc(), OSCHF_TurnOnXosc(), and SysCtrlPowerEverything().
#define OSC_XOSC_LF 0x00000003 |
Definition at line 113 of file osc.h.
Referenced by OSCClockSourceSet(), SysCtrlPowerdown(), SysCtrlPowerEverything(), and SysCtrlStandby().