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.

TM4C1294NCPDT: Unable to jump to Bootloader from TI RTOS application

Part Number: TM4C1294NCPDT
Other Parts Discussed in Thread: SYSBIOS

Hello,

I am currently trying to implement a serial bootloader plus user application on the TM4C1294NCPDT chip.

I have flashed the serial bootloader (boot_serial) example program provided by TI at address 0x0. Attached below is the memory map of serial bootloader program

The application is flashed from address 0x4000. Attached below is the memory map of application program

I have also set the reset vector address to 0x4000 using the below commands in the .cfg file:

var ti_sysbios_family_arm_m3_Hwi = xdc.useModule('ti.sysbios.family.arm.m3.Hwi');

ti_sysbios_family_arm_m3_Hwi.resetVectorAddress = 0x00004000;

The user application is a TI RTOS application which performs a bunch of tasks. I have setup a GPIO interrupt to act as a BOOT pin such that when it reads a falling edge, the application should jump to bootloader mode.

The design is such that, the GPIO interrupt executes BIOS_exit(1). Post which I have setup a System_atexit() to call the function JumpToBootLoader() which has the necessary code to send the MCU to bootloader mode. The snapshot below displays the implemented code of JumpToBootLoader() adapted from the boot_demo_emac_flash example program

The flow of execution is flawless until the execution of the highlighted code. I believe this is the final step in switching to Bootloader mode. However, it does not switch to Bootloader mode and I am unable to debug the application post the execution of this step due to the following error:

I have attached few related files used in the project. Kindly help me in identifying the problem.

6557.EK_TM4C1294XL.h

gc_system.c
Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
* ======== gc_system_v4.c ========
* Supports: Multiple valves, pumps and heaters
*/
#include <stdint.h>
#include <stdbool.h>
/* XDCtools Header files */
#include <xdc/std.h>
#include <xdc/runtime/System.h>
#include <xdc/runtime/Error.h>
#include <xdc/cfg/global.h>
#include <xdc/runtime/Types.h>
#include "inc/tm4c1294ncpdt.h"
#include "inc/hw_memmap.h"
#include "inc/hw_types.h"
#include "driverlib/systick.h"
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
gc_system_v5.cfg1524.Board.h
8244.EK_TM4C1294XL.c
Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
* Copyright (c) 2015, Texas Instruments Incorporated
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* * Neither the name of Texas Instruments Incorporated nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Any references to TI RTOS with bootloader examples is much appreciated as well.

Thank you.

Regards,

Arjun

  • Hello Arjun,

    What is the firmware for the boot loader? Is it a direct TivaWare Flash boot loader?

    Also have you considered using the ROM boot loader?

    Given the lack of resources on flash boot loading with TI-RTOS, I don't really have an initial idea here what is wrong so I want to start by really understanding what the boot loader itself is doing.

    Best Regards,

    Ralph

  • Yes I am using TivaWare Flash boot loader directly without any modifications. The idea was to have a flash bootloader and application setup such that I have the provision to reprogram the application using a serial FTDI cable when necessary.

    I have got it working now. I believe the issue was that I was already using UART for transmitting my data over to a GUI. I reconfigured the UART0 channel to the default setting as mentioned in the bootloader demo program and then the switch to bootloader was successful and I was able to reprogram the MCU serially.

    I have not considered using the ROM boot loader yet. I will look into it in the future. On a side note, will the API ROM_UpdateUART() call from the application be sufficient to invoke the ROM bootloader and reprogram the MCU using LM Flash programmer?

  • Hi Arjun,

    Ah that makes sense as to what the issue was then with the UART.

    On a side note, will the API ROM_UpdateUART() call from the application be sufficient to invoke the ROM bootloader and reprogram the MCU using LM Flash programmer?

    Disabling the NVIC interrupts and that call should be all you need to do, and the UART transmitting data issue won't happen because the ROM boot loader will be re-configuring the UART regardless of it is setup or not since its largely used for boot loading to a fresh device.

    The ROM boot loader uses UART0 only, so if you don't need any special handling in the boot loader and are going to use UART0, it's probably the better option for you. Usually the Flash serial boot loader is used when users want to use other UART ports.

    Best Regards,

    Ralph Jacobi