| #
bba792b1 |
| 24-Jan-2025 |
Lauren Wehrmeister <lauren.wehrmeister@arm.com> |
Merge changes Ided750de,Id3cc887c into integration
* changes: docs(gxl): add build instructions for booting BL31 from U-Boot SPL feat(gxl): add support for booting from U-Boot SPL/with standard
Merge changes Ided750de,Id3cc887c into integration
* changes: docs(gxl): add build instructions for booting BL31 from U-Boot SPL feat(gxl): add support for booting from U-Boot SPL/with standard params
show more ...
|
| #
8dca65d9 |
| 08-Jan-2025 |
Ferass El Hafidi <funderscore@postmarketos.org> |
feat(gxl): add support for booting from U-Boot SPL/with standard params
The arguments struct needs to be changed to remove a non-standard entry (`scp_image_info[]`) and also makes use of a built-in
feat(gxl): add support for booting from U-Boot SPL/with standard params
The arguments struct needs to be changed to remove a non-standard entry (`scp_image_info[]`) and also makes use of a built-in arguments parser. Since the `scp_image_info[]` entry is removed in U-Boot SPL-compatible builds, SCP_BL2 image info is hardcoded.
Change-Id: Id3cc887c61c3b940c8a21d9da7f2b6845da51af8 Signed-off-by: Ferass El Hafidi <funderscore@postmarketos.org>
show more ...
|
| #
cd8eb18d |
| 17-Jun-2024 |
Manish Pandey <manish.pandey2@arm.com> |
Merge changes from topic "ck/tf-a/verbosity-cleanup" into integration
* changes: build: unify verbosity handling build: add facilities for interpreting boolean values build: add string casing
Merge changes from topic "ck/tf-a/verbosity-cleanup" into integration
* changes: build: unify verbosity handling build: add facilities for interpreting boolean values build: add string casing facilities to utilities
show more ...
|
| #
7c4e1eea |
| 02-May-2024 |
Chris Kay <chris.kay@arm.com> |
build: unify verbosity handling
This change introduces a few helper variables for dealing with verbose and silent build modes: `silent`, `verbose`, `q` and `s`.
The `silent` and `verbose` variables
build: unify verbosity handling
This change introduces a few helper variables for dealing with verbose and silent build modes: `silent`, `verbose`, `q` and `s`.
The `silent` and `verbose` variables are boolean values determining whether the build system has been configured to run silently or verbosely respectively (i.e. with `--silent` or `V=1`).
These two modes cannot be used together - if `silent` is truthy then `verbose` is always falsy. As such:
make --silent V=1
... results in a silent build.
In addition to these boolean variables, we also introduce two new variables - `s` and `q` - for use in rule recipes to conditionally suppress the output of commands.
When building silently, `s` expands to a value which disables the command that follows, and `q` expands to a value which supppresses echoing of the command:
$(s)echo 'This command is neither echoed nor executed' $(q)echo 'This command is executed but not echoed'
When building verbosely, `s` expands to a value which disables the command that follows, and `q` expands to nothing:
$(s)echo 'This command is neither echoed nor executed' $(q)echo 'This command is executed and echoed'
In all other cases, both `s` and `q` expand to a value which suppresses echoing of the command that follows:
$(s)echo 'This command is executed but not echoed' $(q)echo 'This command is executed but not echoed'
The `s` variable is predominantly useful for `echo` commands, where you always want to suppress echoing of the command itself, whilst `q` is more useful for all other commands.
Change-Id: I8d8ff6ed714d3cb401946c52955887ed7dca602b Signed-off-by: Chris Kay <chris.kay@arm.com>
show more ...
|
| #
ef685219 |
| 20-Feb-2024 |
Mark Dykes <mark.dykes@arm.com> |
Merge "build: use toolchain identifiers in conditions" into integration
|
| #
60dd8069 |
| 20-Feb-2024 |
Mark Dykes <mark.dykes@arm.com> |
Merge "build: use new toolchain variables for tools" into integration
|
| #
8620bd0b |
| 04-Dec-2023 |
Chris Kay <chris.kay@arm.com> |
build: use toolchain identifiers in conditions
The toolchain refactor change introduces the `${toolchain}-${tool}-id` variables, which provide identifiers for all of the toolchain tools used by the
build: use toolchain identifiers in conditions
The toolchain refactor change introduces the `${toolchain}-${tool}-id` variables, which provide identifiers for all of the toolchain tools used by the build system. This change replaces the various conditions that are in use to identify these tools based on the path with a standard set of comparisons against these new identifier variables.
Change-Id: Ib60e592359fa6e415c19a012e68d660f87436ca7 Signed-off-by: Chris Kay <chris.kay@arm.com>
show more ...
|
| #
ffb77421 |
| 04-Dec-2023 |
Chris Kay <chris.kay@arm.com> |
build: use new toolchain variables for tools
This change migrates the values of `CC`, `CPP`, `AS` and other toolchain variables to the new `$(toolchain)-$(tool)` variables, which were introduced by
build: use new toolchain variables for tools
This change migrates the values of `CC`, `CPP`, `AS` and other toolchain variables to the new `$(toolchain)-$(tool)` variables, which were introduced by the toolchain refactor patch. These variables should be equivalent to the values that they're replacing.
Change-Id: I644fe4ce82ef1894bed129ddb4b6ab94fb04985d Signed-off-by: Chris Kay <chris.kay@arm.com>
show more ...
|
| #
f7fa5289 |
| 27-Sep-2019 |
Soby Mathew <soby.mathew@arm.com> |
Merge changes from topic "amlogic-g12a" into integration
* changes: amlogic: g12a: Add support for the S905X2 (G12A) platform amlogic: makefile: Use PLAT variable when possible amlogic: sha_dm
Merge changes from topic "amlogic-g12a" into integration
* changes: amlogic: g12a: Add support for the S905X2 (G12A) platform amlogic: makefile: Use PLAT variable when possible amlogic: sha_dma: Move register mappings to platform header
show more ...
|
| #
edcadeb7 |
| 18-Sep-2019 |
Carlo Caione <ccaione@baylibre.com> |
amlogic: makefile: Use PLAT variable when possible
To address the file names.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: Ib79b8dfa032a1db012c5031d47de61e1a16b5f9a
|
| #
1ac928ce |
| 13-Sep-2019 |
Soby Mathew <soby.mathew@arm.com> |
Merge "amlogic: console: Move console driver to common directory" into integration
|
| #
a759d345 |
| 05-Sep-2019 |
Carlo Caione <ccaione@baylibre.com> |
amlogic: console: Move console driver to common directory
The code managing the console is the same for all the platforms currently supported. Since it is unlikely to change in the future move the c
amlogic: console: Move console driver to common directory
The code managing the console is the same for all the platforms currently supported. Since it is unlikely to change in the future move the code to an external file in the common directory.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: I6df555ea82d483b4f08a4a1e2cb0a7488fbaa015
show more ...
|
| #
9af73b36 |
| 12-Sep-2019 |
Soby Mathew <soby.mathew@arm.com> |
Merge changes from topic "amlogic-refactoring" into integration
* changes: amlogic: Fix includes order amlogic: Fix header guards amlogic: Fix prefixes in the SoC specific files amlogic: Fix
Merge changes from topic "amlogic-refactoring" into integration
* changes: amlogic: Fix includes order amlogic: Fix header guards amlogic: Fix prefixes in the SoC specific files amlogic: Fix prefixes in the PM code amlogic: Fix prefixes in the SCPI related code amlogic: Fix prefixes in the MHU code amlogic: Fix prefixes in the SIP/SVC code amlogic: Fix prefixes in the thermal driver amlogic: Fix prefixes in the private header file amlogic: Fix prefixes in the efuse driver amlogic: Fix prefixes in the platform macros file amlogic: Fix prefixes in the helpers file amlogic: Rework Makefiles amlogic: Move the SIP SVC code to common directory amlogic: Move topology file to common directory amlogic: Move thermal code to common directory amlogic: Move MHU code to common directory amlogic: Move efuse code to common directory amlogic: Move platform macros assembly file to common directory amlogic: Introduce unified private header file amlogic: Move SCPI code to common directory amlogic: Move the SHA256 DMA driver to common directory amlogic: Move assembly helpers to common directory amlogic: Introduce directory parameters in the makefiles meson: Rename platform directory to amlogic
show more ...
|
| #
fab69512 |
| 24-Aug-2019 |
Carlo Caione <ccaione@baylibre.com> |
amlogic: Rework Makefiles
Now that every piece is in place, the makefiles can be refactored and slightly beautified removing useless and redundant parts.
Signed-off-by: Carlo Caione <ccaione@baylib
amlogic: Rework Makefiles
Now that every piece is in place, the makefiles can be refactored and slightly beautified removing useless and redundant parts.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: If74e1909df52d475cf4b0dfed819d07d3a4c85b9
show more ...
|
| #
35aee24e |
| 24-Aug-2019 |
Carlo Caione <ccaione@baylibre.com> |
amlogic: Move the SIP SVC code to common directory
The code is the same between GXBB and GXL. Move it to the common source directory.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: I
amlogic: Move the SIP SVC code to common directory
The code is the same between GXBB and GXL. Move it to the common source directory.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: I875689a6fd029971aa755fc2725217e90ed06b6c
show more ...
|
| #
261e7fd7 |
| 24-Aug-2019 |
Carlo Caione <ccaione@baylibre.com> |
amlogic: Move topology file to common directory
As done already for multiple files, move the topology file to the common directory.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: Iac
amlogic: Move topology file to common directory
As done already for multiple files, move the topology file to the common directory.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: Iaca357a089593ad58c35c05c929239132249dcda
show more ...
|
| #
cd94cc40 |
| 24-Aug-2019 |
Carlo Caione <ccaione@baylibre.com> |
amlogic: Move thermal code to common directory
As for most of the Amlogic code, this is common between the Amlogic SoCs. Move the code to the common directory.
Signed-off-by: Carlo Caione <ccaione@
amlogic: Move thermal code to common directory
As for most of the Amlogic code, this is common between the Amlogic SoCs. Move the code to the common directory.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: Id3f0073ff1f0b9ddbe964f80303323ee4a2f27b0
show more ...
|
| #
6f3b0dc4 |
| 24-Aug-2019 |
Carlo Caione <ccaione@baylibre.com> |
amlogic: Move MHU code to common directory
The MHU code is shared between all the supported platforms. Move it to the common directory instead.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Ch
amlogic: Move MHU code to common directory
The MHU code is shared between all the supported platforms. Move it to the common directory instead.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: Iaf53122866eae85c13f772927d16836dcfa877a3
show more ...
|
| #
d498d249 |
| 24-Aug-2019 |
Carlo Caione <ccaione@baylibre.com> |
amlogic: Move efuse code to common directory
The efuse code is the same between GXL and GXBB. Move the code to common directory.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: Ie37f2
amlogic: Move efuse code to common directory
The efuse code is the same between GXL and GXBB. Move the code to common directory.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: Ie37f21d1907a36292724f1fb645a78041fe4a6b3
show more ...
|
| #
69b315aa |
| 24-Aug-2019 |
Carlo Caione <ccaione@baylibre.com> |
amlogic: Move SCPI code to common directory
The SCPI code is the same between GXBB and GXL. No need to have it replicated for each SoCs. Move it to the common directory.
Signed-off-by: Carlo Caione
amlogic: Move SCPI code to common directory
The SCPI code is the same between GXBB and GXL. No need to have it replicated for each SoCs. Move it to the common directory.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: I7e416caf1e9538b3ce7702c0363ee00a054e2451
show more ...
|
| #
01b2a7fc |
| 24-Aug-2019 |
Carlo Caione <ccaione@baylibre.com> |
amlogic: Move the SHA256 DMA driver to common directory
The SHA256 DMA driver can be used by multiple SoCs. Move it to the common directory.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Chang
amlogic: Move the SHA256 DMA driver to common directory
The SHA256 DMA driver can be used by multiple SoCs. Move it to the common directory.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: I96319eeeeeebd503ef0dcb07c0e4ff6a67afeaa5
show more ...
|
| #
40fac1ab |
| 23-Aug-2019 |
Carlo Caione <ccaione@baylibre.com> |
amlogic: Move assembly helpers to common directory
The assembly helpers are common to all the amlogic SoCs. Move the .S file to the common directory.
Signed-off-by: Carlo Caione <ccaione@baylibre.c
amlogic: Move assembly helpers to common directory
The assembly helpers are common to all the amlogic SoCs. Move the .S file to the common directory.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: I0d8616a7ae22dbcb14848cefd0149b6bb5814ea6
show more ...
|
| #
1b250198 |
| 23-Aug-2019 |
Carlo Caione <ccaione@baylibre.com> |
amlogic: Introduce directory parameters in the makefiles
Make the platform name a parameter for the source directories. Besides a cosmetic fix, this is going to be helpful when reusing the same Make
amlogic: Introduce directory parameters in the makefiles
Make the platform name a parameter for the source directories. Besides a cosmetic fix, this is going to be helpful when reusing the same Makefile for different SoCs.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: I307897a21800cca8ad68a5ab8972d27e9356ff2a
show more ...
|
| #
4a079c75 |
| 23-Aug-2019 |
Carlo Caione <ccaione@baylibre.com> |
meson: Rename platform directory to amlogic
Meson is the internal code name for the SoC family. The correct name for the platform should be Amlogic. Change the name of the platform directory.
Signe
meson: Rename platform directory to amlogic
Meson is the internal code name for the SoC family. The correct name for the platform should be Amlogic. Change the name of the platform directory.
Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: Icc140e1ea137f12117acbf64c7dcb1a8b66b345d
show more ...
|