Synergy CORTEX M 启动流程
1、启动文件“startup_S7G2.c”
中断向量表地址指针:“0xe000ed08”
/* Vector table. */
BSP_DONT_REMOVE const exc_ptr_t __Vectors[BSP_CORTEX_VECTOR_TABLE_ENTRIES] BSP_PLACE_IN_SECTION(BSP_SECTION_VECTOR) =
{
(exc_ptr_t)(&g_main_stack[] + BSP_CFG_STACK_MAIN_BYTES), /* Initial Stack Pointer */
Reset_Handler, /* Reset Handler */
NMI_Handler, /* NMI Handler */
HardFault_Handler, /* Hard Fault Handler */
MemManage_Handler, /* MPU Fault Handler */
BusFault_Handler, /* Bus Fault Handler */
UsageFault_Handler, /* Usage Fault Handler */
, /* Reserved */
, /* Reserved */
, /* Reserved */
, /* Reserved */
SVC_Handler, /* SVCall Handler */
DebugMon_Handler, /* Debug Monitor Handler */
, /* Reserved */
PendSV_Handler, /* PendSV Handler */
SysTick_Handler, /* SysTick Handler */
};
2、“入口函数”在“链接脚本”中配置,S7G2.ld
/* Linker script to configure memory regions. */
MEMORY
{
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x0040000 /* 256K */
RAM (rwx) : ORIGIN = 0x1FFE0000, LENGTH = 0x00A0000 /* 640K */
DATA_FLASH (rx) : ORIGIN = 0x40100000, LENGTH = 0x0010000 /* 64K */
QSPI_FLASH (rx) : ORIGIN = 0x60000000, LENGTH = 0x0800000 /* 8M, Change in QSPI section below also */
SDRAM (rwx) : ORIGIN = 0x90000000, LENGTH = 0x2000000 /* 32M */
} ENTRY(Reset_Handler)
入口函数如下:
/***********************************************************************************************************************
* Function Name: Reset_Handler
* Description : MCU starts executing here out of reset. Main stack pointer is setup already.
* Arguments : none
* Return Value : none
***********************************************************************************************************************/
void Reset_Handler (void)
{
/* Initialize system using BSP. */
SystemInit(); /* Call user application. */
main(); while ()
{
/* Infinite Loop. */
}
}
HOOK设置 R_BSP_WarmStart(),用户可以有机会在“main()”执行前加入自己的操作。如:BOOT下判断是否有OTA升级。
void SystemInit (void)
{
#if ( defined ( __GNUC__ ) && defined (__VFP_FP__) && !defined (__SOFTFP__) ) || \
( defined ( __ICCARM__ ) && defined ( __ARMVFP__ ) && (__FPU_PRESENT == ) ) /* Enable the Cortex-M4 FPU only when -mfloat-abi=hard.
Code taken from Section 7.1, Cortex-M4 TRM (DDI0439C) */ /* Set bits 20-23 to enable CP10 and CP11 coprocessor */ /*LDRA_NOANALYSIS LDRA_INSPECTED below not working. */
/*LDRA_INSPECTED 96 S *//*LDRA_INSPECTED 93 S SCB is a CMSIS defined element over which we have no control.*/
SCB->CPACR = (uint32_t)((uint32_t)SCB->CPACR | (uint32_t)CP_MASK);
/*LDRA_ANALYSIS */
#endif /* Call Pre C runtime initialization hook. */
R_BSP_WarmStart(BSP_WARM_START_PRE_C); /* Initialize grouped interrupts. */
bsp_group_interrupt_open(); /* Initialize FMI. */
g_fmi_on_fmi.init(); /* Initialize register protection. */
bsp_register_protect_open(); /* Configure system clocks using CGC module. */
bsp_clock_init(); /* Temporary fix to initialize ioport reference counter to 0, needed before C runtime init. This will be removed
* in the next release in favor of a more complete solution. */
HW_IOPORT_Init_Reference_Counter(); /* Initialize pins. */
g_ioport_on_ioport.init(&g_bsp_pin_cfg); /* Initialize C runtime environment. */
/* Zero out BSS */
#if defined(__GNUC__)
bsp_section_zero((uint8_t *)&__bss_start__, ((uint32_t)&__bss_end__ - (uint32_t)&__bss_start__));
#elif defined(__ICCARM__)
bsp_section_zero((uint8_t *)__section_begin(".bss"), (uint32_t)__section_size(".bss"));
#endif /* Copy initialized RAM data from ROM to RAM. */
#if defined(__GNUC__)
bsp_section_copy((uint8_t *)&__etext,
(uint8_t *)&__data_start__,
((uint32_t)&__data_end__ - (uint32_t)&__data_start__));
#elif defined(__ICCARM__)
bsp_section_copy((uint8_t *)__section_begin(".data_init"),
(uint8_t *)__section_begin(".data"),
(uint32_t)__section_size(".data"));
/* Copy functions to be executed from RAM. */
#pragma section=".code_in_ram"
#pragma section=".code_in_ram_init"
bsp_section_copy((uint8_t *)__section_begin(".code_in_ram_init"),
(uint8_t *)__section_begin(".code_in_ram"),
(uint32_t)__section_size(".code_in_ram"));
/* Copy main thread TLS to RAM. */
#pragma section="__DLIB_PERTHREAD_init"
#pragma section="__DLIB_PERTHREAD"
bsp_section_copy((uint8_t *)__section_begin("__DLIB_PERTHREAD_init"),
(uint8_t *)__section_begin("__DLIB_PERTHREAD"),
(uint32_t)__section_size("__DLIB_PERTHREAD_init"));
#endif /* Initialize SystemCoreClock variable. */
SystemCoreClockUpdate(); /* Call Post C runtime initialization hook. */
R_BSP_WarmStart(BSP_WARM_START_POST_C); /* Initialize Static Constructors */
#if defined(__GNUC__)
/*LDRA_INSPECTED 219 S In the GCC compiler, __init_array_start and __init_array_end starts with underscore. */
/*LDRA_INSPECTED 219 S */
int32_t count = __init_array_end - __init_array_start;
for (int32_t i = ; i < count; i++)
{
__init_array_start [i]();
}
#elif defined(__ICCARM__)
void const * pibase = __section_begin("SHT$$PREINIT_ARRAY");
void const * ilimit = __section_end("SHT$$INIT_ARRAY");
__call_ctors(pibase, ilimit);
#endif /* Initialize the Hardware locks to 'Unlocked' */
bsp_init_hardware_locks(); /* Initialize ELC events that will be used to trigger NVIC interrupts. */
bsp_irq_cfg(); /* Initialize ELC. */
g_elc_on_elc.init(&g_elc_cfg); /* Call any BSP specific code. No arguments are needed so NULL is sent. */
bsp_init(NULL);
}
R_BSP_WarmStart()下实现的“BCH”升级
void R_BSP_WarmStart (bsp_warm_start_event_t event)
{
if (BSP_WARM_START_PRE_C == event)
{
/* C runtime environment has not been setup so you cannot use globals. System clocks and pins are not setup. */
} else if (BSP_WARM_START_POST_C == event)
{
/* if S5 is pressed */
if ( == ((R_IOPORT0->PCNTR2 >> ) & 0x1))
{
boot_status = ;
} /* if S4 is pressed */
else if ( == ((R_IOPORT0->PCNTR2 >> ) & 0x1))
{
boot_status = ;
} /* if S4 and S5 are not pressed */
else
{
/* Initialize the Hardware locks to 'Unlocked' */
bsp_init_hardware_locks(); ssp_err_t status; status = g_sf_bootloader_mcu.p_api->open(g_sf_bootloader_mcu.p_ctrl, g_sf_bootloader_mcu.p_cfg);
if (!status)
{
status = g_sf_bootloader_mcu.p_api->appStart(g_sf_bootloader_mcu.p_ctrl);
if (status)
{
/* Notify the bootloader that appStart failed */
boot_status = ; g_sf_bootloader_mcu.p_api->close(g_sf_bootloader_mcu.p_ctrl);
}
} else
{
/* Notify the bootloader that open failed */
boot_status = ;
}
}
} else
{
/* Do nothing */
}
}
当然也可以判断DATA FLASH数据作为是否升级的依据:
Synergy CORTEX M 启动流程的更多相关文章
- 转载-Qualcomm MSM8953启动流程:PBL-SBL1-(bootloader)LK-Android
文章转载链接: https://blog.csdn.net/RadianceBlau/article/details/73229005 对于嵌入式工程师了解芯片启动过程是十分有必要的,在分析.调试各种 ...
- MyCat源码分析系列之——配置信息和启动流程
更多MyCat源码分析,请戳MyCat源码分析系列 MyCat配置信息 除了一些默认的配置参数,大多数的MyCat配置信息是通过读取若干.xml/.properties文件获取的,主要包括: 1)se ...
- Android进阶系列之源码分析Activity的启动流程
美女镇楼,辟邪! 源码,是一个程序猿前进路上一个大的而又不得不去翻越障碍,我讨厌源码,看着一大堆.5000多行,要看完得啥时候去了啊.不过做安卓的总有这一天,自从踏上这条不归路,我就认命了.好吧,我慢 ...
- Spring Boot启动流程详解(一)
环境 本文基于Spring Boot版本1.3.3, 使用了spring-boot-starter-web. 配置完成后,编写了代码如下: @SpringBootApplication public ...
- linux启动流程及自定义gurb
linux 启动流程 POST BIOS(boot sequence) 所选择的启动设备次序的MBR中是否有引导程序, ----> MBR(bootloader) 提供内核列表 -------& ...
- linux启动流程
看了深入理解linux内核一书的最后对linux启动流程的介绍,下面就把我能理解的写一下吧: bios(硬件加电自检POST,寻找第一个启动设备) the boot loader(可以从硬盘启动也可以 ...
- webapp启动流程
webapp启动流程 看了这个教程,其实所有的webapp大致都是这个流程了.
- Tomcat源码分析之—具体启动流程分析
从Tomcat启动调用栈可知,Bootstrap类的main方法为整个Tomcat的入口,在init初始化Bootstrap类的时候为设置Catalina的工作路径也就是Catalina_HOME信息 ...
- 嵌入式Linux驱动学习之路(五)u-boot启动流程分析
这里说的u-boot启动流程,值得是从上电开机执行u-boot,到u-boot,到u-boot加载操作系统的过程.这一过程可以分为两个过程,各个阶段的功能如下. 第一阶段的功能: 硬件设备初始化. 加 ...
随机推荐
- JavaScript---事件监听
JavaScript的事件监听是通过addEventListener()来实现的 它算是事件绑定的第二种方式. 他的特别之处在于这种绑定事件的方法不会被同名事件覆盖. 看具体的demo <!DO ...
- python:使用itchat实现手机控制电脑
1.准备材料 首先电脑上需要安装了python,安装了opencv更好(非必需) 如果安装了opencv的话,在opencv的python目录下找到cv2.pyd,将该文件放到python的库搜索路径 ...
- 适配器模式(Adapter Pattern)/包装器
将一个类的接口转换成客户希望的另外一个接口.Adapter模式使得原本由于接口不兼容而不能一起工作的那些类可以在一起工作. 模式中的角色 目标接口(Target):客户所期待的接口.目标可以是具体的或 ...
- 四、dbms_alert(用于生成并传递数据库预警信息)
1.概述 作用:用于生成并传递数据库预警信息.使用包DBMS_ALERT,则必须以SYS登陆,为该用户授予执行权限.sql>conn sys/oracle as sysdbasql>gra ...
- hystrix -hystrix常用配置介绍
配置官网介绍地址:https://github.com/Netflix/Hystrix/wiki/Configuration hystrix.command.default.execution.iso ...
- LeetCode OJ:Partition List(分割链表)
Given a linked list and a value x, partition it such that all nodes less than x come before nodes gr ...
- fidder设置断点,修改请求参数等
设置断点(来自:http://jingyan.baidu.com/article/17bd8e52216c8d85ab2bb8e9.html): 可以看到当前有一个抓取的很多的包的链接的地址的信息,那 ...
- L159
Waves are the children of the struggle between ocean and atmosphere, the ongoing signatures of infin ...
- L147 Low Cost Study Has High Impact Results For Premature Babies
No one knows exactly why some babies are born prematurely(早产), but some of the smallest premature ba ...
- JFinal源码详解
JFinal的框架我24号的一篇博文写到过,它优秀的地方在精简代码上,那么有两处源码是我觉得是值得我们要好好解析一下,一处是初始化加载—servlet跳转,另一处是DB+ActiveRecord的映射 ...