Fixed Lab 2, added 48 MHz clock init

This commit is contained in:
AntonJ 2025-02-17 18:01:21 +02:00
parent d15910c62e
commit d22cefce1a
5 changed files with 71 additions and 34 deletions

View File

@ -14,10 +14,6 @@ To build the lab code and
```../flash.sh``` ```../flash.sh```
to flash the code on to the board. to flash the code on to the board.
To establish UART connection, run
```../uart.sh```
from the lab folder (Not tested yet).
## Lab assistance ## Lab assistance
Anton Jaštšuk: ajasts@taltech.ee Anton Jaštšuk: ajasts@taltech.ee
Uljana Reinsalu: uljana.reinsalu@taltech.ee Uljana Reinsalu: uljana.reinsalu@taltech.ee

View File

@ -1,6 +1,6 @@
#include "bump.h" #include "bump.h"
#include "ti/devices/msp432p4xx/inc/msp432p401r.h" #include "inc/msp432p401r.h"
void BumpInit(void) { void BumpInit(void) {
// write this as part of Lab 2 // write this as part of Lab 2

View File

@ -1,21 +1,74 @@
#include "clock.h" #include "clock.h"
#include "ti/devices/msp432p4xx/inc/msp432p401r.h" #include "inc/msp432p401r.h"
#include "ti/devices/msp432p4xx/driverlib/driverlib.h"
// Configure the system clock to run at the fastest
// and most accurate settings.
uint32_t pre_wait = 0; // loops between BSP_Clock_InitFastest() called and PCM idle (expect 0)
uint32_t cpm_wait = 0; // loops between Power Active Mode Request and Current Power Mode matching requested mode (expect small)
uint32_t post_wait = 0; // loops between Current Power Mode matching requested mode and PCM module idle (expect about 0)
uint32_t iflags = 0; // non-zero if transition is invalid
uint32_t crystal_stable = 0; // loops before the crystal stabilizes (expect small)
void ClockInit48MHz(void) { void ClockInit48MHz(void) {
/* Halting WDT and disabling master interrupts */ // wait for the PCMCTL0 and Clock System to be write-able by waiting for Power Control Manager to be idle
MAP_WDT_A_holdTimer(); while (PCM->CTL1 & 0x00000100) {
MAP_Interrupt_disableMaster(); pre_wait++;
/* Set the core voltage level to VCORE1 */ if (pre_wait >= 100000) {
MAP_PCM_setCoreVoltageLevel(PCM_VCORE1); return; // time out error
/* Set 2 flash wait states for Flash bank 0 and 1*/ }
MAP_FlashCtl_setWaitState(FLASH_BANK0, 2); }
MAP_FlashCtl_setWaitState(FLASH_BANK1, 2); // request power active mode LDO VCORE1 to support the 48 MHz frequency
/* Initializes Clock System */ PCM->CTL0 = (PCM->CTL0 & ~0xFFFF000F) | // clear PCMKEY bit field and AMR bit field
MAP_CS_setDCOCenteredFrequency(CS_DCO_FREQUENCY_48); 0x695A0000 | // write the proper PCM key to unlock write access
MAP_CS_initClockSignal(CS_MCLK, CS_DCOCLK_SELECT, CS_CLOCK_DIVIDER_1); 0x00000001; // request power active mode LDO VCORE1
MAP_CS_initClockSignal(CS_HSMCLK, CS_DCOCLK_SELECT, CS_CLOCK_DIVIDER_1); // check if the transition is invalid (see Figure 7-3 on p344 of datasheet)
MAP_CS_initClockSignal(CS_SMCLK, CS_DCOCLK_SELECT, CS_CLOCK_DIVIDER_1); if (PCM->IFG & 0x00000004) {
MAP_CS_initClockSignal(CS_ACLK, CS_REFOCLK_SELECT, CS_CLOCK_DIVIDER_1); iflags = PCM->IFG; // bit 2 set on active mode transition invalid; bits 1-0 are for LPM-related errors; bit 6 is for DC-DC-related error
PCM->CLRIFG = 0x00000004; // clear the transition invalid flag
// to do: look at CPM bit field in PCMCTL0, figure out what mode you're in, and step through the chart to transition to the mode you want
// or be lazy and do nothing; this should work out of reset at least, but it WILL NOT work if Clock_Int32kHz() or Clock_InitLowPower() has been called
return;
}
// wait for the CPM (Current Power Mode) bit field to reflect a change to active mode LDO VCORE1
while ((PCM->CTL0 & 0x00003F00) != 0x00000100) {
cpm_wait++;
if (cpm_wait >= 500000) {
return; // time out error
}
}
// wait for the PCMCTL0 and Clock System to be write-able by waiting for Power Control Manager to be idle
while (PCM->CTL1 & 0x00000100) {
post_wait++;
if (post_wait >= 100000) {
return; // time out error
}
}
// initialize PJ.3 and PJ.2 and make them HFXT (PJ.3 built-in 48 MHz crystal out; PJ.2 built-in 48 MHz crystal in)
PJ->SEL0 |= 0x0C;
PJ->SEL1 &= ~0x0C; // configure built-in 48 MHz crystal for HFXT operation
CS->KEY = 0x695A; // unlock CS module for register access
CS->CTL2 = (CS->CTL2 & ~0x00700000) | // clear HFXTFREQ bit field
0x00600000 | // configure for 48 MHz external crystal
0x00010000 | // HFXT oscillator drive selection for crystals >4 MHz
0x01000000; // enable HFXT
CS->CTL2 &= ~0x02000000; // disable high-frequency crystal bypass
// wait for the HFXT clock to stabilize
while (CS->IFG & 0x00000002) {
CS->CLRIFG = 0x00000002; // clear the HFXT oscillator interrupt flag
crystal_stable++;
if (crystal_stable > 100000) {
return; // time out error
}
}
// configure for 2 wait states (minimum for 48 MHz operation) for flash Bank 0
FLCTL->BANK0_RDCTL = (FLCTL->BANK0_RDCTL & ~0x0000F000) | FLCTL_BANK0_RDCTL_WAIT_2;
// configure for 2 wait states (minimum for 48 MHz operation) for flash Bank 1
FLCTL->BANK1_RDCTL = (FLCTL->BANK1_RDCTL & ~0x0000F000) | FLCTL_BANK1_RDCTL_WAIT_2;
CS->CTL1 = 0x20000000 | // configure for SMCLK divider /4
0x00100000 | // configure for HSMCLK divider /2
0x00000200 | // configure for ACLK sourced from REFOCLK
0x00000050 | // configure for SMCLK and HSMCLK sourced from HFXTCLK
0x00000005; // configure for MCLK sourced from HFXTCLK
CS->KEY = 0; // lock CS module from unintended access
} }

View File

@ -12,8 +12,6 @@ OBJECTS = main.o system.o startup.o
NAME = lab NAME = lab
CFLAGS = -I.. -I../inc \ CFLAGS = -I.. -I../inc \
-I$(ROOT)/source \
-I$(ROOT)/source/third_party/CMSIS/Include \
-D__MSP432P401R__ \ -D__MSP432P401R__ \
-DDeviceFamily_MSP432P401x \ -DDeviceFamily_MSP432P401x \
-mcpu=cortex-m4 \ -mcpu=cortex-m4 \
@ -32,7 +30,6 @@ CFLAGS = -I.. -I../inc \
LFLAGS = -Wl,-T,../config.lds \ LFLAGS = -Wl,-T,../config.lds \
-Wl,-Map,$(NAME).map \ -Wl,-Map,$(NAME).map \
-L$(ROOT)/source \
-march=armv7e-m \ -march=armv7e-m \
-mthumb \ -mthumb \
-mfloat-abi=hard \ -mfloat-abi=hard \

View File

@ -11,9 +11,7 @@ OBJECTS = main.o bump.o delay.o clock.o system.o startup.o
NAME = lab NAME = lab
CFLAGS = -I.. -I../common \ CFLAGS = -I.. -I../inc -I../common \
-I$(ROOT)/source \
-I$(ROOT)/source/third_party/CMSIS/Include \
-D__MSP432P401R__ \ -D__MSP432P401R__ \
-DDeviceFamily_MSP432P401x \ -DDeviceFamily_MSP432P401x \
-mcpu=cortex-m4 \ -mcpu=cortex-m4 \
@ -32,13 +30,6 @@ CFLAGS = -I.. -I../common \
LFLAGS = -Wl,-T,../config.lds \ LFLAGS = -Wl,-T,../config.lds \
-Wl,-Map,$(NAME).map \ -Wl,-Map,$(NAME).map \
-L$(ROOT)/source \
-l:ti/display/lib/display.am4fg \
-l:ti/grlib/lib/gcc/m4f/grlib.a \
-l:third_party/spiffs/lib/gcc/m4f/spiffs.a \
-l:ti/drivers/lib/drivers_msp432p401x.am4fg \
-l:third_party/fatfs/lib/gcc/m4f/fatfs.a \
-l:ti/devices/msp432p4xx/driverlib/gcc/msp432p4xx_driverlib.a \
-march=armv7e-m \ -march=armv7e-m \
-mthumb \ -mthumb \
-mfloat-abi=hard \ -mfloat-abi=hard \