Skip to content

Commit

Permalink
Update firmware version to v2.4
Browse files Browse the repository at this point in the history
Update firmware version to v2.4 and update the readme
file accordingly.

Change-Id: Id619c1e0efa513a96c6c5ab6038ee1b76c0ad70d
Signed-off-by: Ronald Cron <[email protected]>
  • Loading branch information
ronald-cron-arm committed Oct 9, 2018
1 parent c23826f commit 391ca55
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# Version
#
export VERSION_MAJOR := 2
export VERSION_MINOR := 3
export VERSION_MINOR := 4
export VERSION_PATCH := 0

#
Expand Down
4 changes: 2 additions & 2 deletions framework/test/test_version.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
static void test_version(void)
{
assert(BUILD_VERSION_MAJOR == 2);
assert(BUILD_VERSION_MINOR == 3);
assert(BUILD_VERSION_MINOR == 4);
assert(BUILD_VERSION_PATCH == 0);
}

static void test_version_string(void)
{
const char *result_string = "v2.3.0";
const char *result_string = "v2.4.0";

assert(strcmp(BUILD_VERSION_STRING, result_string) == 0);
}
Expand Down
24 changes: 22 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Readme
======
SCP-firmware - version 2.4
==========================

Copyright (c) 2011-2018, Arm Limited. All rights reserved.

Expand Down Expand Up @@ -36,6 +36,26 @@ SCP-firmware provides a software reference implementation for the System Control
Processor (SCP) and Manageability Control Processor (MCP) components found in
several Arm Compute Sub-Systems.

Functionality
-------------

- Initialization of the system to enable application core boot
- Power domain management
- System power management
- Dynamic voltage and frequency scaling (DVFS)
- Sensor management
- System Control and Management Interface (SCMI, platform-side)
- Support for the GNU Arm Embedded and Arm Compiler 6 toolchains
- Support for platforms with several control processors

Platforms
---------

Various builds of the release have been tested on the following ARM Fixed
Virtual Platforms (FVPs):

- System Guidance for Mobile platform SGM-775 (Version 11.1 Build 30)

License
-------

Expand Down

0 comments on commit 391ca55

Please sign in to comment.