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: - 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 = ; - oid = TRUSTED_FW_NVCOUNTER_OID; - }; - non_trusted_nv_counter: non_trusted_nv_counter { - reg = ; - oid = NON_TRUSTED_FW_NVCOUNTER_OID; + trusted-nv-counter: trusted_nv_counter { + id = ; + reg = ; + oid = TRUSTED_FW_NVCOUNTER_OID; + }; - }; + non_trusted_nv_counter: non_trusted_nv_counter { + id = ; + reg = ; + oid = NON_TRUSTED_FW_NVCOUNTER_OID; }; };