Skip to content
Snippets Groups Projects
Commit 07b17059 authored by Kévin Roussel's avatar Kévin Roussel
Browse files

Ensure interrupts are enabled before going in low-power mode

parent 91fd567c
No related branches found
No related tags found
No related merge requests found
...@@ -33,10 +33,10 @@ ...@@ -33,10 +33,10 @@
/* Initialise the MSP430 power-saving mechanisms. */ /* Initialise the MSP430 power-saving mechanisms. */
void lpm_init(void) void lpm_init(void)
{ {
// nothing to initialize on MSP430s: everything is done by fiddling /* nothing to initialize on MSP430s: everything is done by fiddling
// with 4 bits of the status register (SR). with 4 bits of the status register (SR). */
// just ensure MCU is fully up and running at start /* just ensure MCU is fully up and running at start */
lpm_awake(); lpm_awake();
} }
...@@ -45,33 +45,44 @@ enum lpm_mode lpm_set(enum lpm_mode target) ...@@ -45,33 +45,44 @@ enum lpm_mode lpm_set(enum lpm_mode target)
{ {
enum lpm_mode last_mode = lpm_get(); enum lpm_mode last_mode = lpm_get();
/* ensure that interrupts are enabled before going to sleep,
or we're bound to hang our MCU! */
if (target != LPM_ON) {
if ((__read_status_register() & GIE) == 0) {
printf("WARNING: entering low-power mode with interrupts disabled!\n");
printf(" Forcing GIE bit to 1!\n\n");
__bis_status_register(GIE);
}
}
switch (target) switch (target)
{ {
case LPM_ON: case LPM_ON:
// fully running MCU /* fully running MCU */
__bic_status_register(CPUOFF | OSCOFF | SCG0 | SCG1); __bic_status_register(CPUOFF | OSCOFF | SCG0 | SCG1);
break; break;
case LPM_IDLE: case LPM_IDLE:
// lightest mode => LPM0 mode of MSP430 /* lightest mode => LPM0 mode of MSP430 */
__bic_status_register(OSCOFF | SCG0 | SCG1); __bic_status_register(OSCOFF | SCG0 | SCG1);
// only stops CPU block /* only stops CPU block */
__bis_status_register(CPUOFF); __bis_status_register(CPUOFF);
break; break;
case LPM_SLEEP: case LPM_SLEEP:
// mid-level mode => LPM1 mode of MSP430 /* mid-level mode => LPM1 mode of MSP430 */
__bic_status_register(OSCOFF | SCG1); __bic_status_register(OSCOFF | SCG1);
// stops CPU and master clock blocks /* stops CPU and master clock blocks */
__bis_status_register(CPUOFF | SCG0); __bis_status_register(CPUOFF | SCG0);
break; break;
case LPM_POWERDOWN: case LPM_POWERDOWN:
// deep-level mode => LPM3 mode of MSP430 /* deep-level mode => LPM3 mode of MSP430 */
__bic_status_register(OSCOFF); __bic_status_register(OSCOFF);
// stops all blocks except auxiliary clock (timers) /* stops all blocks except auxiliary clock (timers) */
__bis_status_register(CPUOFF | SCG0 | SCG1); __bis_status_register(CPUOFF | SCG0 | SCG1);
break; break;
case LPM_OFF: case LPM_OFF:
// MCU totally down (LPM4), only RESET or NMI can resume execution /* MCU totally down (LPM4), only RESET or NMI can resume execution */
__bis_status_register(CPUOFF | OSCOFF | SCG0 | SCG1); // all blocks off __bis_status_register(CPUOFF | OSCOFF | SCG0 | SCG1);
/* all blocks off */
break; break;
default: default:
printf("ERROR: trying to set an invalid low-power mode!\n"); printf("ERROR: trying to set an invalid low-power mode!\n");
...@@ -90,20 +101,20 @@ enum lpm_mode lpm_get(void) ...@@ -90,20 +101,20 @@ enum lpm_mode lpm_get(void)
unsigned int current_sr = __read_status_register(); unsigned int current_sr = __read_status_register();
switch (current_sr & LPM_MASK_SR) { switch (current_sr & LPM_MASK_SR) {
case CPUOFF + OSCOFF + SCG0 + SCG1: // MSP430's LPM4 case CPUOFF + OSCOFF + SCG0 + SCG1: /* MSP430's LPM4 */
current_mode = LPM_OFF; current_mode = LPM_OFF;
break; break;
case CPUOFF + SCG0 + SCG1: // MSP430's LPM3 case CPUOFF + SCG0 + SCG1: /* MSP430's LPM3 */
case CPUOFF + SCG1: // MSP430's LPM2 case CPUOFF + SCG1: /* MSP430's LPM2 */
current_mode = LPM_POWERDOWN; current_mode = LPM_POWERDOWN;
break; break;
case CPUOFF + SCG0: // MSP430's LPM1 case CPUOFF + SCG0: /* MSP430's LPM1 */
current_mode = LPM_SLEEP; current_mode = LPM_SLEEP;
break; break;
case CPUOFF: // MSP430's LPM1 case CPUOFF: /* MSP430's LPM1 */
current_mode = LPM_IDLE; current_mode = LPM_IDLE;
break; break;
case 0: // MSP430 active case 0: /* MSP430 active */
current_mode = LPM_ON; current_mode = LPM_ON;
break; break;
} }
...@@ -114,7 +125,7 @@ enum lpm_mode lpm_get(void) ...@@ -114,7 +125,7 @@ enum lpm_mode lpm_get(void)
/* resume the MSP430 MCU */ /* resume the MSP430 MCU */
inline void lpm_awake(void) inline void lpm_awake(void)
{ {
// disable all power savings mechanisms /* disable all power savings mechanisms */
__bic_status_register(CPUOFF | OSCOFF | SCG0 | SCG1); __bic_status_register(CPUOFF | OSCOFF | SCG0 | SCG1);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment