mirror of https://github.com/ARMmbed/mbed-os.git
Use cmsis gcc types instead of own
This caused a conflict. As CMSIS update introduced low level init, lets use the types from CMSIS. We could potentionally use __cmsis_start but as I saw for some targets, the init routine is slightly different. So rather keep what we have in targets, and just use types already defined in CMSIS.pull/12949/head
parent
e7e3cc0301
commit
606ccbceff
|
|
@ -91,10 +91,6 @@ extern uint32_t Load$$LR$$LR_IROM1$$Base[];
|
|||
extern unsigned __etext;
|
||||
extern unsigned __data_start__;
|
||||
extern unsigned __data_end__;
|
||||
extern unsigned __copy_table_start__;
|
||||
extern unsigned __copy_table_end__;
|
||||
extern unsigned __zero_table_start__;
|
||||
extern unsigned __zero_table_end__;
|
||||
extern unsigned __bss_start__;
|
||||
extern unsigned __bss_end__;
|
||||
extern unsigned __StackTop;
|
||||
|
|
|
|||
|
|
@ -102,10 +102,6 @@ extern uint32_t Load$$LR$$LR_IROM1$$Base[];
|
|||
extern uint32_t __etext;
|
||||
extern uint32_t __data_start__;
|
||||
extern uint32_t __data_end__;
|
||||
extern uint32_t __copy_table_start__;
|
||||
extern uint32_t __copy_table_end__;
|
||||
extern uint32_t __zero_table_start__;
|
||||
extern uint32_t __zero_table_end__;
|
||||
extern uint32_t __bss_start__;
|
||||
extern uint32_t __bss_end__;
|
||||
extern uint32_t __StackTop;
|
||||
|
|
|
|||
|
|
@ -464,52 +464,39 @@ void Reset_Handler_1(void)
|
|||
__iar_program_start();
|
||||
|
||||
#elif defined(__GNUC__)
|
||||
/* Move (multiple) .data section(s) from ROM to RAM */
|
||||
{
|
||||
/* Struct of copy table entry which must match linker script */
|
||||
typedef struct copy_table_entry_ {
|
||||
uint32_t src; // Address to copy from
|
||||
uint32_t dst; // Address to copy to
|
||||
uint32_t size; // Copy size in bytes
|
||||
} copy_table_entry;
|
||||
/* Move (multiple) .data section(s) from ROM to RAM */
|
||||
{
|
||||
copy_table_entry *copy_table_ind = (copy_table_entry *) &__copy_table_start__;
|
||||
copy_table_entry *copy_table_end = (copy_table_entry *) &__copy_table_end__;
|
||||
|
||||
copy_table_entry *copy_table_ind = (copy_table_entry *) &__copy_table_start__;
|
||||
copy_table_entry *copy_table_end = (copy_table_entry *) &__copy_table_end__;
|
||||
|
||||
for (; copy_table_ind != copy_table_end; copy_table_ind ++) {
|
||||
uint32_t *src_ind = (uint32_t *) copy_table_ind->src;
|
||||
uint32_t *src_end = (uint32_t *) (copy_table_ind->src + copy_table_ind->size);
|
||||
uint32_t *dst_ind = (uint32_t *) copy_table_ind->dst;
|
||||
if (src_ind != dst_ind) {
|
||||
for (; src_ind < src_end;) {
|
||||
*dst_ind ++ = *src_ind ++;
|
||||
for (; copy_table_ind != copy_table_end; copy_table_ind ++) {
|
||||
uint32_t *src_ind = (uint32_t *) copy_table_ind->src;
|
||||
uint32_t *src_end = (uint32_t *) (copy_table_ind->src + copy_table_ind->size);
|
||||
uint32_t *dst_ind = (uint32_t *) copy_table_ind->dst;
|
||||
if (src_ind != dst_ind) {
|
||||
for (; src_ind < src_end;) {
|
||||
*dst_ind ++ = *src_ind ++;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Initialize (multiple) .bss sections to zero */
|
||||
{
|
||||
/* Struct of zero table entry which must match linker script */
|
||||
typedef struct zero_table_entry_ {
|
||||
uint32_t start; // Address to start zero'ing
|
||||
uint32_t size; // Zero size in bytes
|
||||
} zero_table_entry;
|
||||
/* Initialize (multiple) .bss sections to zero */
|
||||
{
|
||||
zero_table_entry *zero_table_ind = (zero_table_entry *) &__zero_table_start__;
|
||||
zero_table_entry *zero_table_end = (zero_table_entry *) &__zero_table_end__;
|
||||
|
||||
zero_table_entry *zero_table_ind = (zero_table_entry *) &__zero_table_start__;
|
||||
zero_table_entry *zero_table_end = (zero_table_entry *) &__zero_table_end__;
|
||||
for (; zero_table_ind != zero_table_end; zero_table_ind ++) {
|
||||
uint32_t *dst_ind = (uint32_t *) zero_table_ind->start;
|
||||
uint32_t *dst_end = (uint32_t *) (zero_table_ind->start + zero_table_ind->size);
|
||||
|
||||
for (; zero_table_ind != zero_table_end; zero_table_ind ++) {
|
||||
uint32_t *dst_ind = (uint32_t *) zero_table_ind->start;
|
||||
uint32_t *dst_end = (uint32_t *) (zero_table_ind->start + zero_table_ind->size);
|
||||
|
||||
for (; dst_ind < dst_end; ) {
|
||||
*dst_ind ++ = 0;
|
||||
for (; dst_ind < dst_end; ) {
|
||||
*dst_ind ++ = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
_start();
|
||||
_start();
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
|||
|
|
@ -61,10 +61,6 @@ extern void __main(void);
|
|||
void __iar_program_start(void);
|
||||
#elif defined(__GNUC__)
|
||||
extern uint32_t __StackTop;
|
||||
extern uint32_t __copy_table_start__;
|
||||
extern uint32_t __copy_table_end__;
|
||||
extern uint32_t __zero_table_start__;
|
||||
extern uint32_t __zero_table_end__;
|
||||
|
||||
#if defined(TOOLCHAIN_GCC_ARM)
|
||||
extern void _start(void);
|
||||
|
|
@ -284,20 +280,13 @@ void Reset_Handler(void)
|
|||
#elif defined(__GNUC__)
|
||||
/* Move (multiple) .data section(s) from ROM to RAM */
|
||||
{
|
||||
/* Struct of copy table entry which must match linker script */
|
||||
typedef struct copy_table_entry_ {
|
||||
uint32_t src; // Address to copy from
|
||||
uint32_t dst; // Address to copy to
|
||||
uint32_t size; // Copy size in bytes
|
||||
} copy_table_entry;
|
||||
|
||||
copy_table_entry *copy_table_ind = (copy_table_entry *) &__copy_table_start__;
|
||||
copy_table_entry *copy_table_end = (copy_table_entry *) &__copy_table_end__;
|
||||
|
||||
for (; copy_table_ind != copy_table_end; copy_table_ind ++) {
|
||||
uint32_t *src_ind = (uint32_t *) copy_table_ind->src;
|
||||
uint32_t *src_end = (uint32_t *) (copy_table_ind->src + copy_table_ind->size);
|
||||
uint32_t *dst_ind = (uint32_t *) copy_table_ind->dst;
|
||||
uint32_t *src_end = (uint32_t *) (copy_table_ind->src + copy_table_ind->wlen);
|
||||
uint32_t *dst_ind = (uint32_t *) copy_table_ind->dest;
|
||||
if (src_ind != dst_ind) {
|
||||
for (; src_ind < src_end;) {
|
||||
*dst_ind ++ = *src_ind ++;
|
||||
|
|
@ -308,18 +297,12 @@ void Reset_Handler(void)
|
|||
|
||||
/* Initialize (multiple) .bss sections to zero */
|
||||
{
|
||||
/* Struct of zero table entry which must match linker script */
|
||||
typedef struct zero_table_entry_ {
|
||||
uint32_t start; // Address to start zero'ing
|
||||
uint32_t size; // Zero size in bytes
|
||||
} zero_table_entry;
|
||||
|
||||
zero_table_entry *zero_table_ind = (zero_table_entry *) &__zero_table_start__;
|
||||
zero_table_entry *zero_table_end = (zero_table_entry *) &__zero_table_end__;
|
||||
|
||||
for (; zero_table_ind != zero_table_end; zero_table_ind ++) {
|
||||
uint32_t *dst_ind = (uint32_t *) zero_table_ind->start;
|
||||
uint32_t *dst_end = (uint32_t *) (zero_table_ind->start + zero_table_ind->size);
|
||||
uint32_t *dst_end = (uint32_t *) (zero_table_ind->start + zero_table_ind->wlen);
|
||||
|
||||
for (; dst_ind < dst_end; ) {
|
||||
*dst_ind ++ = 0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue