plat/arm/sgi: add system-id node in HW_CONFIG dts
authorChandni Cherukuri <chandni.cherukuri@arm.com>
Fri, 17 Aug 2018 05:53:46 +0000 (11:23 +0530)
committerChandni Cherukuri <chandni.cherukuri@arm.com>
Thu, 18 Oct 2018 10:23:56 +0000 (15:53 +0530)
Dynamically populating the 'system-id' node in the HW_CONFIG dts makes
it difficult to enforce memory overlap checks. So add the system-id node
in the HW_CONFIG dts file as a place holder with 'platform-id' and
'config-id' set to zero.

The code at BL2 stage determines the values of 'platform-id' and
'config-id' at runtime and updates the corresponding fields in the
system-id node of HW_CONFIG dts.

Change-Id: I2ca9980b994ac418da8afa0c72716ede10aff68a
Signed-off-by: Chandni Cherukuri <chandni.cherukuri@arm.com>
plat/arm/board/sgi575/fdts/sgi575.dts
plat/arm/css/sgi/sgi_image_load.c

index be9920cbc8aaf30b782c96762a3616ff6e0d0b0c..1e1ea14b0ee7a705441aa9837e1f2f22c535f764 100644 (file)
@@ -8,4 +8,14 @@
 / {
        /* compatible string */
        compatible = "arm,sgi575";
+
+       /*
+        * Place holder for system-id node with default values. The
+        * value of platform-id and config-id will be set to the
+        * correct values during the BL2 stage of boot.
+        */
+       system-id {
+               platform-id = <0x0>;
+               config-id = <0x0>;
+       };
 };
index 09403f8846ee8136fc8d2a9edc099de6eff843fc..52dcf889e07607a79baf1227567c69cbf9ad2cc2 100644 (file)
@@ -4,6 +4,7 @@
  * SPDX-License-Identifier: BSD-3-Clause
  */
 
+#include <arch_helpers.h>
 #include <debug.h>
 #include <desc_image_load.h>
 #include <libfdt.h>
@@ -13,6 +14,7 @@
  * This function inserts Platform information via device tree nodes as,
  * system-id {
  *    platform-id = <0>;
+ *    config-id = <0>;
  * }
  ******************************************************************************/
 static int plat_sgi_append_config_node(void)
@@ -20,7 +22,7 @@ static int plat_sgi_append_config_node(void)
        bl_mem_params_node_t *mem_params;
        void *fdt;
        int nodeoffset, err;
-       unsigned int platid = 0;
+       unsigned int platid = 0, platcfg = 0;
        char *platform_name;
 
        mem_params = get_bl_mem_params_node(HW_CONFIG_ID);
@@ -45,31 +47,34 @@ static int plat_sgi_append_config_node(void)
        }
 
        if (strcmp(platform_name, "arm,sgi575") == 0) {
-               platid = mmio_read_32(SSC_VERSION);
+               platid = mmio_read_32(SSC_VERSION) & SSC_VERSION_PART_NUM_MASK;
+               platcfg = (mmio_read_32(SSC_VERSION) >> SSC_VERSION_CONFIG_SHIFT)
+                               & SSC_VERSION_CONFIG_MASK;
        } else {
                WARN("Invalid platform\n");
                return -1;
        }
 
-       /* Increase DTB blob by 512 byte */
-       err = fdt_open_into(fdt, fdt, mem_params->image_info.image_size + 512);
-       if (err < 0) {
-               ERROR("Failed to open HW_CONFIG DTB\n");
+       nodeoffset = fdt_subnode_offset(fdt, 0, "system-id");
+       if (nodeoffset < 0) {
+               ERROR("Failed to get system-id node offset\n");
                return -1;
        }
 
-       /* Create "/system-id" node */
-       nodeoffset = fdt_add_subnode(fdt, 0, "system-id");
-       if (nodeoffset < 0) {
-               ERROR("Failed to add node system-id\n");
+       err = fdt_setprop_u32(fdt, nodeoffset, "platform-id", platid);
+       if (err < 0) {
+               ERROR("Failed to set platform-id\n");
                return -1;
        }
 
-       err = fdt_setprop_u32(fdt, nodeoffset, "platform-id", platid);
+       err = fdt_setprop_u32(fdt, nodeoffset, "config-id", platcfg);
        if (err < 0) {
-               ERROR("Failed to add node platform-id\n");
+               ERROR("Failed to set config-id\n");
                return -1;
        }
+
+       flush_dcache_range((uintptr_t)fdt, mem_params->image_info.image_size);
+
        return 0;
 }