Soby Mathew | c64adbc | 2020-03-11 12:33:44 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2020, Arm Limited. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #ifndef __TFM_VERSION_H__ |
| 9 | #define __TFM_VERSION_H__ |
| 10 | |
| 11 | /* |
| 12 | * Defines for TFM version. |
| 13 | */ |
| 14 | #define VERSION_MAJOR 1 |
Mate Toth-Pal | 955235a | 2020-06-15 13:48:34 +0200 | [diff] [blame] | 15 | #define VERSION_MINOR 1 |
Minos Galanakis | 0768982 | 2020-03-10 15:37:20 +0000 | [diff] [blame] | 16 | #define VERSION_STRING "" |
Soby Mathew | c64adbc | 2020-03-11 12:33:44 +0000 | [diff] [blame] | 17 | |
Shawn Shan | 45578e9 | 2020-10-19 17:50:02 +0800 | [diff] [blame] | 18 | #define VERSTR(x) #x |
| 19 | #define VERCON(major, minor) VERSTR(major)"."VERSTR(minor) |
| 20 | |
| 21 | #define VERSION_FULLSTR VERCON(VERSION_MAJOR, VERSION_MINOR)""VERSION_STRING |
| 22 | |
| 23 | |
| 24 | |
Soby Mathew | c64adbc | 2020-03-11 12:33:44 +0000 | [diff] [blame] | 25 | #endif /* __TFM_VERSION_H__ */ |