Repostiory containing DAPLink source code with Reset Pin workaround for HANI_IOT board.
Upstream: https://github.com/ARMmbed/DAPLink
source/family/arm/musca_b/region_defs.h@0:01f31e923fe2, 2020-04-07 (annotated)
- Committer:
- Pawel Zarembski
- Date:
- Tue Apr 07 12:55:42 2020 +0200
- Revision:
- 0:01f31e923fe2
hani: DAPLink with reset workaround
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Pawel Zarembski |
0:01f31e923fe2 | 1 | /** |
Pawel Zarembski |
0:01f31e923fe2 | 2 | * @file utils.h |
Pawel Zarembski |
0:01f31e923fe2 | 3 | * @brief Region defines for Musca B target |
Pawel Zarembski |
0:01f31e923fe2 | 4 | * |
Pawel Zarembski |
0:01f31e923fe2 | 5 | * DAPLink Interface Firmware |
Pawel Zarembski |
0:01f31e923fe2 | 6 | * Copyright (c) 2018-2019, ARM Limited, All Rights Reserved |
Pawel Zarembski |
0:01f31e923fe2 | 7 | * SPDX-License-Identifier: Apache-2.0 |
Pawel Zarembski |
0:01f31e923fe2 | 8 | * |
Pawel Zarembski |
0:01f31e923fe2 | 9 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
Pawel Zarembski |
0:01f31e923fe2 | 10 | * not use this file except in compliance with the License. |
Pawel Zarembski |
0:01f31e923fe2 | 11 | * You may obtain a copy of the License at |
Pawel Zarembski |
0:01f31e923fe2 | 12 | * |
Pawel Zarembski |
0:01f31e923fe2 | 13 | * http://www.apache.org/licenses/LICENSE-2.0 |
Pawel Zarembski |
0:01f31e923fe2 | 14 | * |
Pawel Zarembski |
0:01f31e923fe2 | 15 | * Unless required by applicable law or agreed to in writing, software |
Pawel Zarembski |
0:01f31e923fe2 | 16 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
Pawel Zarembski |
0:01f31e923fe2 | 17 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
Pawel Zarembski |
0:01f31e923fe2 | 18 | * See the License for the specific language governing permissions and |
Pawel Zarembski |
0:01f31e923fe2 | 19 | * limitations under the License. |
Pawel Zarembski |
0:01f31e923fe2 | 20 | */ |
Pawel Zarembski |
0:01f31e923fe2 | 21 | |
Pawel Zarembski |
0:01f31e923fe2 | 22 | |
Pawel Zarembski |
0:01f31e923fe2 | 23 | #define MUSCA_B_NS_FLASH_START 0x00000000 |
Pawel Zarembski |
0:01f31e923fe2 | 24 | #define MUSCA_B_S_FLASH_START 0x10000000 |
Pawel Zarembski |
0:01f31e923fe2 | 25 | #define MUSCA_B_FLASH_SIZE MB(8) |
Pawel Zarembski |
0:01f31e923fe2 | 26 | |
Pawel Zarembski |
0:01f31e923fe2 | 27 | #define MUSCA_B_NS_EFLASH0_START 0x0A000000 |
Pawel Zarembski |
0:01f31e923fe2 | 28 | #define MUSCA_B_S_EFLASH0_START 0x1A000000 |
Pawel Zarembski |
0:01f31e923fe2 | 29 | #define MUSCA_B_EFLASH0_SIZE MB(2) |
Pawel Zarembski |
0:01f31e923fe2 | 30 | |
Pawel Zarembski |
0:01f31e923fe2 | 31 | #define MUSCA_B_NS_EFLASH1_START 0x0A200000 |
Pawel Zarembski |
0:01f31e923fe2 | 32 | #define MUSCA_B_S_EFLASH1_START 0x1A200000 |
Pawel Zarembski |
0:01f31e923fe2 | 33 | #define MUSCA_B_EFLASH1_SIZE MUSCA_B_EFLASH0_SIZE |
Pawel Zarembski |
0:01f31e923fe2 | 34 | |
Pawel Zarembski |
0:01f31e923fe2 | 35 | #define MUSCA_B_NS_CODE_SRAM_START 0x0A400000 |
Pawel Zarembski |
0:01f31e923fe2 | 36 | #define MUSCA_B_S_CODE_SRAM_START 0x1A400000 |
Pawel Zarembski |
0:01f31e923fe2 | 37 | #define MUSCA_B_CODE_SRAM_SIZE KB(512) |
Pawel Zarembski |
0:01f31e923fe2 | 38 | |
Pawel Zarembski |
0:01f31e923fe2 | 39 | #define MUSCA_B_NS_RAM_START 0x20000000 |
Pawel Zarembski |
0:01f31e923fe2 | 40 | #define MUSCA_B_S_RAM_START 0x30000000 |
Pawel Zarembski |
0:01f31e923fe2 | 41 | #define MUSCA_B_RAM_SIZE KB(512) |