From e7e76c71a499d0799c7d55f90d5b0d2e77070059 Mon Sep 17 00:00:00 2001 From: Jerzy Kasenberg Date: Thu, 22 Aug 2024 10:11:08 +0200 Subject: [PATCH] mcu/stm32h7: Fix core dump configuration When BSP switched to use autogenerated linker script definitions for _dtcmram_start and _itcmram_start were not present in generated script. Now STM32H7 MCU adds user_sections.ld.h that provides missing symbols. Signed-off-by: Jerzy Kasenberg --- .../stm32h7xx/link/include/user_sections.ld.h | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 hw/mcu/stm/stm32h7xx/link/include/user_sections.ld.h diff --git a/hw/mcu/stm/stm32h7xx/link/include/user_sections.ld.h b/hw/mcu/stm/stm32h7xx/link/include/user_sections.ld.h new file mode 100644 index 0000000000..b5a18a10e9 --- /dev/null +++ b/hw/mcu/stm/stm32h7xx/link/include/user_sections.ld.h @@ -0,0 +1,23 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + _dtcmram_start = ORIGIN(DTCM); + _dtcmram_limit = ORIGIN(DTCM) + LENGTH(DTCM); + _itcmram_start = ORIGIN(ITCM); + _itcmram_limit = ORIGIN(ITCM) + LENGTH(ITCM);