Chandni Cherukuri | 771d644 | 2018-05-10 12:03:50 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Chandni Cherukuri | 771d644 | 2018-05-10 12:03:50 +0530 | [diff] [blame] | 7 | #include <libfdt.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 8 | |
| 9 | #include <arch_helpers.h> |
| 10 | #include <common/debug.h> |
| 11 | #include <common/desc_image_load.h> |
| 12 | #include <plat/common/platform.h> |
| 13 | |
Chandni Cherukuri | 3aa09f7 | 2018-11-28 11:31:51 +0530 | [diff] [blame] | 14 | #include <sgi_variant.h> |
Chandni Cherukuri | 771d644 | 2018-05-10 12:03:50 +0530 | [diff] [blame] | 15 | |
| 16 | /******************************************************************************* |
| 17 | * This function inserts Platform information via device tree nodes as, |
| 18 | * system-id { |
| 19 | * platform-id = <0>; |
Chandni Cherukuri | 33fcfee | 2018-08-17 11:23:46 +0530 | [diff] [blame] | 20 | * config-id = <0>; |
Chandni Cherukuri | 771d644 | 2018-05-10 12:03:50 +0530 | [diff] [blame] | 21 | * } |
| 22 | ******************************************************************************/ |
| 23 | static int plat_sgi_append_config_node(void) |
| 24 | { |
| 25 | bl_mem_params_node_t *mem_params; |
| 26 | void *fdt; |
| 27 | int nodeoffset, err; |
Chandni Cherukuri | 33fcfee | 2018-08-17 11:23:46 +0530 | [diff] [blame] | 28 | unsigned int platid = 0, platcfg = 0; |
Chandni Cherukuri | 771d644 | 2018-05-10 12:03:50 +0530 | [diff] [blame] | 29 | |
Chandni Cherukuri | 29ea98d | 2018-11-28 11:26:19 +0530 | [diff] [blame] | 30 | mem_params = get_bl_mem_params_node(NT_FW_CONFIG_ID); |
Chandni Cherukuri | 771d644 | 2018-05-10 12:03:50 +0530 | [diff] [blame] | 31 | if (mem_params == NULL) { |
Chandni Cherukuri | 29ea98d | 2018-11-28 11:26:19 +0530 | [diff] [blame] | 32 | ERROR("NT_FW CONFIG base address is NULL"); |
Chandni Cherukuri | 771d644 | 2018-05-10 12:03:50 +0530 | [diff] [blame] | 33 | return -1; |
| 34 | } |
| 35 | |
| 36 | fdt = (void *)(mem_params->image_info.image_base); |
| 37 | |
| 38 | /* Check the validity of the fdt */ |
| 39 | if (fdt_check_header(fdt) != 0) { |
Chandni Cherukuri | 29ea98d | 2018-11-28 11:26:19 +0530 | [diff] [blame] | 40 | ERROR("Invalid NT_FW_CONFIG DTB passed\n"); |
Chandni Cherukuri | 771d644 | 2018-05-10 12:03:50 +0530 | [diff] [blame] | 41 | return -1; |
| 42 | } |
| 43 | |
Chandni Cherukuri | 33fcfee | 2018-08-17 11:23:46 +0530 | [diff] [blame] | 44 | nodeoffset = fdt_subnode_offset(fdt, 0, "system-id"); |
| 45 | if (nodeoffset < 0) { |
| 46 | ERROR("Failed to get system-id node offset\n"); |
Chandni Cherukuri | 771d644 | 2018-05-10 12:03:50 +0530 | [diff] [blame] | 47 | return -1; |
| 48 | } |
| 49 | |
Chandni Cherukuri | 3aa09f7 | 2018-11-28 11:31:51 +0530 | [diff] [blame] | 50 | platid = plat_arm_sgi_get_platform_id(); |
Chandni Cherukuri | 33fcfee | 2018-08-17 11:23:46 +0530 | [diff] [blame] | 51 | err = fdt_setprop_u32(fdt, nodeoffset, "platform-id", platid); |
| 52 | if (err < 0) { |
| 53 | ERROR("Failed to set platform-id\n"); |
Chandni Cherukuri | 771d644 | 2018-05-10 12:03:50 +0530 | [diff] [blame] | 54 | return -1; |
| 55 | } |
| 56 | |
Chandni Cherukuri | 3aa09f7 | 2018-11-28 11:31:51 +0530 | [diff] [blame] | 57 | platcfg = plat_arm_sgi_get_config_id(); |
Chandni Cherukuri | 33fcfee | 2018-08-17 11:23:46 +0530 | [diff] [blame] | 58 | err = fdt_setprop_u32(fdt, nodeoffset, "config-id", platcfg); |
Chandni Cherukuri | 771d644 | 2018-05-10 12:03:50 +0530 | [diff] [blame] | 59 | if (err < 0) { |
Chandni Cherukuri | 33fcfee | 2018-08-17 11:23:46 +0530 | [diff] [blame] | 60 | ERROR("Failed to set config-id\n"); |
Chandni Cherukuri | 771d644 | 2018-05-10 12:03:50 +0530 | [diff] [blame] | 61 | return -1; |
| 62 | } |
Chandni Cherukuri | 33fcfee | 2018-08-17 11:23:46 +0530 | [diff] [blame] | 63 | |
| 64 | flush_dcache_range((uintptr_t)fdt, mem_params->image_info.image_size); |
| 65 | |
Chandni Cherukuri | 771d644 | 2018-05-10 12:03:50 +0530 | [diff] [blame] | 66 | return 0; |
| 67 | } |
| 68 | |
| 69 | /******************************************************************************* |
| 70 | * This function returns the list of executable images. |
| 71 | ******************************************************************************/ |
| 72 | bl_params_t *plat_get_next_bl_params(void) |
| 73 | { |
| 74 | int ret; |
| 75 | bl_params_t *next_bl_params; |
| 76 | |
| 77 | ret = plat_sgi_append_config_node(); |
| 78 | if (ret != 0) |
| 79 | panic(); |
| 80 | |
| 81 | next_bl_params = get_next_bl_params_from_mem_params_desc(); |
| 82 | populate_next_bl_params_config(next_bl_params); |
| 83 | |
| 84 | return next_bl_params; |
| 85 | } |