diff options
author | Madhukar Pappireddy <madhukar.pappireddy@arm.com> | 2020-08-12 13:18:19 -0500 |
---|---|---|
committer | Madhukar Pappireddy <madhukar.pappireddy@arm.com> | 2020-08-17 11:50:07 -0500 |
commit | fddfb3baf7c9e6e5e6d3462e71df6ba9d292f142 (patch) | |
tree | ca3c99a5719fd060d8dba94dc2d59765c603414d /docs | |
parent | 007be5ecd14542a5da8533c14293faa1c44c3a7e (diff) | |
download | platform_external_arm-trusted-firmware-fddfb3baf7c9e6e5e6d3462e71df6ba9d292f142.tar.gz platform_external_arm-trusted-firmware-fddfb3baf7c9e6e5e6d3462e71df6ba9d292f142.tar.bz2 platform_external_arm-trusted-firmware-fddfb3baf7c9e6e5e6d3462e71df6ba9d292f142.zip |
plat/arm: Use common build flag for using generic sp804 driver
SP804 TIMER is not platform specific, and current code base adds
multiple defines to use this driver. Like FVP_USE_SP804_TIMER and
FVP_VE_USE_SP804_TIMER.
This patch removes platform specific build flag and adds generic
flag `USE_SP804_TIMER` to be set to 1 by platform if needed.
Change-Id: I5ab792c189885fd1b98ddd187f3a38ebdd0baba2
Signed-off-by: Madhukar Pappireddy <madhukar.pappireddy@arm.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/getting_started/build-options.rst | 4 | ||||
-rw-r--r-- | docs/plat/arm/fvp/index.rst | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/getting_started/build-options.rst b/docs/getting_started/build-options.rst index 0acc8867b..ae328c779 100644 --- a/docs/getting_started/build-options.rst +++ b/docs/getting_started/build-options.rst @@ -725,6 +725,10 @@ Common build options path on the host machine which is used to build certificate generation and firmware encryption tool. +- ``USE_SP804_TIMER``: Use the SP804 timer instead of the Generic Timer for + functions that wait for an arbitrary time length (udelay and mdelay). The + default value is 0. + GICv3 driver options -------------------- diff --git a/docs/plat/arm/fvp/index.rst b/docs/plat/arm/fvp/index.rst index 745e31f9e..e3bf42ad9 100644 --- a/docs/plat/arm/fvp/index.rst +++ b/docs/plat/arm/fvp/index.rst @@ -123,10 +123,6 @@ Arm FVP Platform Specific Build Options - ``FVP_GICV2`` : The GICv2 only driver is selected - ``FVP_GICV3`` : The GICv3 only driver is selected (default option) -- ``FVP_USE_SP804_TIMER`` : Use the SP804 timer instead of the Generic Timer - for functions that wait for an arbitrary time length (udelay and mdelay). - The default value is 0. - - ``FVP_HW_CONFIG_DTS`` : Specify the path to the DTS file to be compiled to DTB and packaged in FIP as the HW_CONFIG. See :ref:`Firmware Design` for details on HW_CONFIG. By default, this is initialized to a sensible DTS |