Some checks failed
Basic Checks / license-check (push) Has been cancelled
Basic Checks / include-check (push) Has been cancelled
Basic Checks / style-check (push) Has been cancelled
Basic Checks / docs-check (push) Has been cancelled
Basic Checks / python-tests (push) Has been cancelled
Basic Checks / pin-validation (push) Has been cancelled
Basic Checks / cmake-checks (push) Has been cancelled
Basic Checks / frozen-tools-check (push) Has been cancelled
Publish or Update docker image for head of branch / prepare-tags (push) Has been cancelled
Release or update docker image for a released mbed-os version / prepare-tags (push) Has been cancelled
Publish or Update docker image for head of branch / build-container (push) Has been cancelled
Publish or Update docker image for head of branch / test-container (linux/amd64) (push) Has been cancelled
Publish or Update docker image for head of branch / test-container (linux/arm64) (push) Has been cancelled
Publish or Update docker image for head of branch / deploy-container (push) Has been cancelled
Release or update docker image for a released mbed-os version / build-container (push) Has been cancelled
Release or update docker image for a released mbed-os version / test-container (linux/amd64) (push) Has been cancelled
Release or update docker image for a released mbed-os version / test-container (linux/arm64) (push) Has been cancelled
Release or update docker image for a released mbed-os version / deploy-container (push) Has been cancelled
Prune temporary docker images / prune-images (push) Has been cancelled
113 lines
3.7 KiB
C
113 lines
3.7 KiB
C
/*
|
|
* Copyright (c) 2020, Nuvoton Technology Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed 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.
|
|
*/
|
|
|
|
/* See partition_M2354_mem.h for documentation */
|
|
|
|
/* Update MBED_ROM_START and friends on redoing TF-M import (for IAR)
|
|
*
|
|
* IAR doesn't support CPP, so we cannot resolve MBED_ROM_START and friends by
|
|
* TF-M exported region_defs.h.
|
|
*
|
|
* Without target.mbed_rom_start and friends (replaced with TF-M exported region_defs.h),
|
|
* MBED_ROM_START and friends passed along are incorrect. Because IAR doesn't allow symbol
|
|
* redefinition, we change to MBED_ROM_START_ORIDE and friends instead for a temporary
|
|
* solution.
|
|
*/
|
|
|
|
/* Resolve non-secure ROM start */
|
|
define symbol MBED_ROM_START_ORIDE = 0x10070400;
|
|
|
|
/* Resolve non-secure ROM size */
|
|
define symbol MBED_ROM_SIZE_ORIDE = 0x8F400;
|
|
|
|
/* Resolve non-secure RAM start */
|
|
define symbol MBED_RAM_START_ORIDE = 0x30018000;
|
|
|
|
/* Resolve non-secure RAM size */
|
|
define symbol MBED_RAM_SIZE_ORIDE = 0x28000;
|
|
|
|
/* Mbed build tool passes just APPLICATION_xxx macros to C/C++ files and just
|
|
* MBED_APP_xxx macros to linker files even though they mean the same thing.
|
|
* Because this file is to include by both C/C++ files and linker files, we add
|
|
* these macros according to the others for consistency when they are missing
|
|
* in compile or link stage. */
|
|
|
|
if (!isdefinedsymbol(APPLICATION_ADDR)) {
|
|
if (isdefinedsymbol(MBED_APP_START)) {
|
|
define symbol APPLICATION_ADDR = MBED_APP_START;
|
|
} else {
|
|
define symbol APPLICATION_ADDR = MBED_ROM_START_ORIDE;
|
|
}
|
|
}
|
|
|
|
if (!isdefinedsymbol(APPLICATION_SIZE)) {
|
|
if (isdefinedsymbol(MBED_APP_SIZE)) {
|
|
define symbol APPLICATION_SIZE = MBED_APP_SIZE;
|
|
} else {
|
|
define symbol APPLICATION_SIZE = MBED_ROM_SIZE_ORIDE;
|
|
}
|
|
}
|
|
|
|
if (!isdefinedsymbol(APPLICATION_RAM_ADDR)) {
|
|
if (isdefinedsymbol(MBED_RAM_APP_START)) {
|
|
define symbol APPLICATION_RAM_ADDR = MBED_RAM_APP_START;
|
|
} else {
|
|
define symbol APPLICATION_RAM_ADDR = MBED_RAM_START_ORIDE;
|
|
}
|
|
}
|
|
|
|
if (!isdefinedsymbol(APPLICATION_RAM_SIZE)) {
|
|
if (isdefinedsymbol(MBED_RAM_APP_SIZE)) {
|
|
define symbol APPLICATION_RAM_SIZE = MBED_RAM_APP_SIZE;
|
|
} else {
|
|
define symbol APPLICATION_RAM_SIZE = MBED_RAM_SIZE_ORIDE;
|
|
}
|
|
}
|
|
|
|
if (!isdefinedsymbol(MBED_APP_START)) {
|
|
define symbol MBED_APP_START = APPLICATION_ADDR;
|
|
}
|
|
|
|
if (!isdefinedsymbol(MBED_APP_SIZE)) {
|
|
define symbol MBED_APP_SIZE = APPLICATION_SIZE;
|
|
}
|
|
|
|
if (!isdefinedsymbol(MBED_RAM_APP_START)) {
|
|
define symbol MBED_RAM_APP_START = APPLICATION_RAM_ADDR;
|
|
}
|
|
|
|
if (!isdefinedsymbol(MBED_RAM_APP_SIZE)) {
|
|
define symbol MBED_RAM_APP_SIZE = APPLICATION_RAM_SIZE;
|
|
}
|
|
|
|
if (APPLICATION_ADDR != MBED_APP_START) {
|
|
error "APPLICATION_ADDR and MBED_APP_START are not the same!!!";
|
|
}
|
|
|
|
if (APPLICATION_SIZE != MBED_APP_SIZE) {
|
|
error "APPLICATION_SIZE and MBED_APP_SIZE are not the same!!!";
|
|
}
|
|
|
|
if (APPLICATION_RAM_ADDR != MBED_RAM_APP_START) {
|
|
error "APPLICATION_RAM_ADDR and MBED_RAM_APP_START are not the same!!!";
|
|
}
|
|
|
|
if (APPLICATION_RAM_SIZE != MBED_RAM_APP_SIZE) {
|
|
error "APPLICATION_RAM_SIZE and MBED_RAM_APP_SIZE are not the same!!!";
|
|
}
|