blob: b84a5689afb79d56631750740c28ef0dd434d6ca [file] [log] [blame]
Prasanth P8be7ee02018-06-15 08:21:44 +05301/** @file
Vinay Kumar Kotegowder932eed02019-08-22 00:42:47 +05302 * Copyright (c) 2018-2019, Arm Limited or its affiliates. All rights reserved.
Prasanth P8be7ee02018-06-15 08:21:44 +05303 * 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 Kotegowder932eed02019-08-22 00:42:47 +053025#define TBSA_ACS_MINOR_VER 9
Prasanth P8be7ee02018-06-15 08:21:44 +053026
Vinay Kumar Kotegowder1146fe02018-12-07 13:38:56 +053027uint32_t __tbsa_text_start__;
28uint32_t __tbsa_text_end__;
Prasanth P8be7ee02018-06-15 08:21:44 +053029uint32_t __tbsa_bss_start__;
30uint32_t __tbsa_bss_end__;
Vinay Kumar Kotegowderc5442542018-07-11 13:06:19 +053031uint32_t __tbsa_data_src_start__;
32uint32_t __tbsa_data_start__;
33uint32_t __tbsa_data_end__;
Vinay Kumar Kotegowder1146fe02018-12-07 13:38:56 +053034uint32_t __tbsa_nsc_entry_points_start__;
35uint32_t __tbsa_nsc_entry_points_end__;
36uint32_t __tbsa_ns_data_start__;
37uint32_t __tbsa_ns_data_end__;
38uint32_t __tbsa_ns_text_start__;
39uint32_t __tbsa_ns_text_end__;
40uint32_t __tbsa_test_s_start__;
41uint32_t __tbsa_test_s_end__;
42uint32_t __tbsa_test_ns_start__;
43uint32_t __tbsa_test_ns_end__;
Prasanth P8be7ee02018-06-15 08:21:44 +053044
45#endif /* _TBSA_H_ */