fconf_properties.rst 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. DTB binding for FCONF properties
  2. ================================
  3. This document describes the device tree format of |FCONF| properties. These
  4. properties are not related to a specific platform and can be queried from
  5. common code.
  6. Dynamic configuration
  7. ~~~~~~~~~~~~~~~~~~~~~
  8. The |FCONF| framework expects a *dtb-registry* node with the following field:
  9. - compatible [mandatory]
  10. - value type: <string>
  11. - Must be the string "fconf,dyn_cfg-dtb_registry".
  12. Then a list of subnodes representing a configuration |DTB|, which can be used
  13. by |FCONF|. Each subnode should be named according to the information it
  14. contains, and must be formed with the following fields:
  15. - load-address [mandatory]
  16. - value type: <u64>
  17. - Physical loading base address of the configuration.
  18. If secondary-load-address is also provided (see below), then this is the
  19. primary load address.
  20. - max-size [mandatory]
  21. - value type: <u32>
  22. - Maximum size of the configuration.
  23. - id [mandatory]
  24. - value type: <u32>
  25. - Image ID of the configuration.
  26. - secondary-load-address [optional]
  27. - value type: <u64>
  28. - A platform uses this physical address to copy the configuration to
  29. another location during the boot-flow.
  30. --------------
  31. *Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.*