This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
I'm working on using the bootloader from controlSuite v151 for the TMS320F28069 (C:\ti\controlSUITE\device_support\f2806x\v151\MWare\boot_loader). Initially, it didn't build because a few statements were missing. To get it to build, I did the following:
The problem that I'm running into is that once DELAY_US(10) is called in the function ConfigureUSB(void), the processor resets back to main and then hangs in MemCopy. DELAY_US is a function from F2806x_usDelay.asm that needs to be moved from flash to RAM before it's called or else it'll cause the sort of error I'm seeing. Memcopy is being called before DELAY_US is, so the code should be getting moved from flash to RAM.
//*****************************************************************************
#pragma CODE_SECTION(main, "normal")
void main(void)
{
MemCopy((Uint16 *)&RamfuncsLoadStart, (Uint16 *)&RamfuncsLoadEnd, (Uint16 *)&RamfuncsRunStart);
//Application check and branch
AppCheck();
g_ulCommandFlags = 0;
#ifdef ENABLE_FAILSAFE
g_bFailsafe = false;
#endif
#ifdef BL_HW_INIT_FN_HOOK
BL_HW_INIT_FN_HOOK(void);
#endif
ConfigureUSB();
#ifdef BL_INIT_FN_HOOK
BL_INIT_FN_HOOK(void);
#endif
#ifdef ENABLE_WATCHDOG
WatchdogEnable();
#endif
UpdaterUSB();
while(1);
}
Thanks in advance!
Karen,
can you check if DELAY_US is part of the RAMFUNCS?
Best Regards
Santosh Athuru
Hi Santosh,
1. When I try stepping into the DELAY_US, CCS doesn't step into the function. Instead it freewheels and when I stop it, it's executing the Memcopy called at the beginning of main.
2. The watchdog is disabled (WDCR = 0x40) until the processor executes the line SysCtrlRegs.CLKCTL.bit.OSCCLKSRCSEL = 1; in ConfigureUSB. Then, WDCR reads 0x00. I added in a line to disable the watchdog (writing WDCR |= 0x40) right after than line. However, when I stepped through the code, after I executed that line to set WDCR = 0x40, WDCR wasn't 0x40 -- it was 0x80, which indicates that something is resetting the watchdog. The next line after that is the call to DELAY_US.
I wrote down what WDCR and WDKEY are doing in the comments for ConfigureUSB.
/*part of the code for main*/
void main(void)
{
MemCopy((Uint16 *)&RamfuncsLoadStart, (Uint16 *)&RamfuncsLoadEnd, (Uint16 *)&RamfuncsRunStart);
//Application check and branch
AppCheck();
g_ulCommandFlags = 0;
#ifdef ENABLE_FAILSAFE
g_bFailsafe = false;
#endif
#ifdef BL_HW_INIT_FN_HOOK
BL_HW_INIT_FN_HOOK(void);
#endif
ConfigureUSB();
....
/*part of the code for ConfigureUSB*/
void
ConfigureUSB(void)
{
//
// Enable the main oscillator.
//
EALLOW;
SysCtrlRegs.CLKCTL.bit.XCLKINOFF = 1;
SysCtrlRegs.CLKCTL.bit.XTALOSCOFF = 0;
SysCtrlRegs.CLKCTL.bit.OSCCLKSRC2SEL = 0; //after executing this, WDCR = 0x40, WDKEY = 0x40;
SysCtrlRegs.CLKCTL.bit.OSCCLKSRCSEL = 1; //after executing this, WDCR = 0x00, WDKEY = 0x0;
SysCtrlRegs.WDCR |= 0x40; //I added this -- after executing this line, WDCR = 0x80, WDKEY = 0x80.
//
// DELAY_US while the main oscillator starts up.
//
DELAY_US(10); //this is where the processor gets stuck
Thanks,
Karen
are you executing this on a 2806x launchpad?
with DELAY_US, you will have to do assembly single stepping and look at the dis-assembly window to see if valid code is being executed. Lets try to confirm this.
or can you call DELAY_US at the beginning of Configure USB function or immediately after the memcpy? this will also make sure that there is nothing wrong with DELAY_US.
The other problem could be with how the clocks are being set up. I'll ask the USB expert to have a look at the function once we rule out the DELAY_US.
Best Regards
Santosh Athuru
Karen,
thanks for the tests. This concludes that there is nothing wrong with the RAM copy (or memcopy) of the RAM funcs.
Looks like the problem is with one of the following code and HW jumper settings on board. The below code is asking the device to operate with external crystal Oscillator on board, but when the last line of code is executed you are most probably getting a missing clock and an NMI and device reset.
Can you check the launch pad schematics and see if you have the external crystal populated between X1 and X2, if not you might want to switch to using internal oscillator or XCLKINs temporarily but for USB using an external Oscillator is probably good idea.
EALLOW;
SysCtrlRegs.CLKCTL.bit.XCLKINOFF = 1;
SysCtrlRegs.CLKCTL.bit.XTALOSCOFF = 0;
SysCtrlRegs.CLKCTL.bit.OSCCLKSRC2SEL = 0;
SysCtrlRegs.CLKCTL.bit.OSCCLKSRCSEL = 1;
Hope this helps.
Best Regards
Santosh Athuru