Prasanth P | 8be7ee0 | 2018-06-15 08:21:44 +0530 | [diff] [blame] | 1 | /** @file |
Vinay Kumar Kotegowder | 932eed0 | 2019-08-22 00:42:47 +0530 | [diff] [blame] | 2 | * Copyright (c) 2018-2019, Arm Limited or its affiliates. All rights reserved. |
Prasanth P | 8be7ee0 | 2018-06-15 08:21:44 +0530 | [diff] [blame] | 3 | * SPDX-License-Identifier : Apache-2.0 |
| 4 | * |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | **/ |
| 17 | |
| 18 | |
| 19 | #ifndef _TBSA_H_ |
| 20 | #define _TBSA_H_ |
| 21 | |
| 22 | #include "val_infra.h" |
| 23 | |
| 24 | #define TBSA_ACS_MAJOR_VER 0 |
Vinay Kumar Kotegowder | 932eed0 | 2019-08-22 00:42:47 +0530 | [diff] [blame] | 25 | #define TBSA_ACS_MINOR_VER 9 |
Prasanth P | 8be7ee0 | 2018-06-15 08:21:44 +0530 | [diff] [blame] | 26 | |
Vinay Kumar Kotegowder | 1146fe0 | 2018-12-07 13:38:56 +0530 | [diff] [blame] | 27 | uint32_t __tbsa_text_start__; |
| 28 | uint32_t __tbsa_text_end__; |
Prasanth P | 8be7ee0 | 2018-06-15 08:21:44 +0530 | [diff] [blame] | 29 | uint32_t __tbsa_bss_start__; |
| 30 | uint32_t __tbsa_bss_end__; |
Vinay Kumar Kotegowder | c544254 | 2018-07-11 13:06:19 +0530 | [diff] [blame] | 31 | uint32_t __tbsa_data_src_start__; |
| 32 | uint32_t __tbsa_data_start__; |
| 33 | uint32_t __tbsa_data_end__; |
Vinay Kumar Kotegowder | 1146fe0 | 2018-12-07 13:38:56 +0530 | [diff] [blame] | 34 | uint32_t __tbsa_nsc_entry_points_start__; |
| 35 | uint32_t __tbsa_nsc_entry_points_end__; |
| 36 | uint32_t __tbsa_ns_data_start__; |
| 37 | uint32_t __tbsa_ns_data_end__; |
| 38 | uint32_t __tbsa_ns_text_start__; |
| 39 | uint32_t __tbsa_ns_text_end__; |
| 40 | uint32_t __tbsa_test_s_start__; |
| 41 | uint32_t __tbsa_test_s_end__; |
| 42 | uint32_t __tbsa_test_ns_start__; |
| 43 | uint32_t __tbsa_test_ns_end__; |
Prasanth P | 8be7ee0 | 2018-06-15 08:21:44 +0530 | [diff] [blame] | 44 | |
| 45 | #endif /* _TBSA_H_ */ |