Re: [PATCH] bsp/arm: allocate .rtemsstack on REGION_STACK instead of on REGION_WORK

2022-05-23 Thread Sebastian Huber
On 19/05/2022 09:03, Sebastian Huber wrote: On 19/05/2022 08:59, Karel Gardas wrote: On 5/19/22 08:53, Sebastian Huber wrote: On 07/04/2022 21:15, Karel Gardas wrote: REGION_WORK may be backed by external RAM which may not be initialized in a time we need stack to work well. E.g. code loaded

Re: [PATCH] bsp/arm: allocate .rtemsstack on REGION_STACK instead of on REGION_WORK

2022-05-20 Thread Sebastian Huber
On 07/04/2022 21:15, Karel Gardas wrote: REGION_WORK may be backed by external RAM which may not be initialized in a time we need stack to work well. E.g. code loaded in flash, stack allocated on in-cpu SRAM and data (REGION_WORK) on external SDRAM. Sponsored-By: Precidata This change could

Re: [PATCH] bsp/arm: allocate .rtemsstack on REGION_STACK instead of on REGION_WORK

2022-05-20 Thread Sebastian Huber
On 19/05/2022 08:59, Karel Gardas wrote: On 5/19/22 08:53, Sebastian Huber wrote: On 07/04/2022 21:15, Karel Gardas wrote: REGION_WORK may be backed by external RAM which may not be initialized in a time we need stack to work well. E.g. code loaded in flash, stack allocated on in-cpu SRAM and

Re: [PATCH] bsp/arm: allocate .rtemsstack on REGION_STACK instead of on REGION_WORK

2022-05-16 Thread Karel Gardas
Hello, this one seems to slip through. Nobody reviewed it nor commented yet. I've been running with this patch here for about a month on various STM32h7 boards without a problem. Thanks! Karel On 4/7/22 21:15, Karel Gardas wrote: REGION_WORK may be backed by external RAM which may not be

[PATCH] bsp/arm: allocate .rtemsstack on REGION_STACK instead of on REGION_WORK

2022-04-07 Thread Karel Gardas
REGION_WORK may be backed by external RAM which may not be initialized in a time we need stack to work well. E.g. code loaded in flash, stack allocated on in-cpu SRAM and data (REGION_WORK) on external SDRAM. Sponsored-By: Precidata --- bsps/arm/shared/start/linkcmds.base | 2 +- 1 file