diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/about/maintainers.rst | 9 | ||||
-rw-r--r-- | docs/components/cot-binding.rst | 24 |
2 files changed, 18 insertions, 15 deletions
diff --git a/docs/about/maintainers.rst b/docs/about/maintainers.rst index a62870452..ab2d3f9f8 100644 --- a/docs/about/maintainers.rst +++ b/docs/about/maintainers.rst @@ -64,8 +64,8 @@ Build Definitions for CMake Build System ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ :M: Javier Almansa Sobrino <Javier.AlmansaSobrino@arm.com> :G: `javieralso-arm`_ -:M: Jack Bond-Preston <Jack.Bond-Preston@arm.com> -:G: `jackbondpreston-arm`_ +:M: Chris Kay <chris.kay@arm.com> +:G: `CJkay`_ :F: / Software Delegated Exception Interface (SDEI) @@ -523,8 +523,7 @@ Texas Instruments platform port UniPhier platform port ^^^^^^^^^^^^^^^^^^^^^^ -:M: Masahiro Yamada <yamada.masahiro@socionext.com> -:G: `masahir0y`_ +:M: Orphan :F: docs/plat/socionext-uniphier.rst :F: plat/socionext/uniphier/ @@ -648,6 +647,6 @@ Build system .. _madhukar-Arm: https://github.com/madhukar-Arm .. _john-powell-arm: https://github.com/john-powell-arm .. _raghuncstate: https://github.com/raghuncstate -.. _jackbondpreston-arm: https://github.com/jackbondpreston-arm +.. _CJKay: https://github.com/cjkay .. _Project Maintenance Process: https://developer.trustedfirmware.org/w/collaboration/project-maintenance-process/ diff --git a/docs/components/cot-binding.rst b/docs/components/cot-binding.rst index 46915db23..4f8c8b725 100644 --- a/docs/components/cot-binding.rst +++ b/docs/components/cot-binding.rst @@ -279,6 +279,10 @@ non-volatile counter node binding definition Description: Contains various non-volatile counters present in the platform. PROPERTIES + - id + Usage: Required for every nv-counter with unique id. + + Value type: <u32> - reg Usage: @@ -301,21 +305,21 @@ Below is non-volatile counters example for ARM platform .. code:: c - non-volatile-counters { + non_volatile_counters: non_volatile_counters { compatible = "arm, non-volatile-counter"; #address-cells = <1>; #size-cells = <0>; - counters { - trusted-nv-counter: trusted_nv_counter { - reg = <TFW_NVCTR_BASE>; - oid = TRUSTED_FW_NVCOUNTER_OID; - }; - non_trusted_nv_counter: non_trusted_nv_counter { - reg = <NTFW_CTR_BASE>; - oid = NON_TRUSTED_FW_NVCOUNTER_OID; + trusted-nv-counter: trusted_nv_counter { + id = <TRUSTED_NV_CTR_ID>; + reg = <TFW_NVCTR_BASE>; + oid = TRUSTED_FW_NVCOUNTER_OID; + }; - }; + non_trusted_nv_counter: non_trusted_nv_counter { + id = <NON_TRUSTED_NV_CTR_ID>; + reg = <NTFW_CTR_BASE>; + oid = NON_TRUSTED_FW_NVCOUNTER_OID; }; }; |