/* * Arm SCP/MCP Software * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include "config_power_domain.h" #include "tc1_core.h" #include "tc1_power_domain.h" #include #include #include #include #include #include #include #include #include #include #include #include #include /* Maximum power domain name size including the null terminator */ #define PD_NAME_SIZE 12 /* Mask of the allowed states for the systop power domain */ static const uint32_t systop_allowed_state_mask_table[1] = { [0] = MOD_PD_STATE_ON_MASK }; /* * Mask of the allowed states for the cluster power domain depending on the * system states. */ static const uint32_t cluster_pd_allowed_state_mask_table[2] = { [MOD_PD_STATE_OFF] = MOD_PD_STATE_OFF_MASK, [MOD_PD_STATE_ON] = TC1_CLUSTER_VALID_STATE_MASK, }; /* Mask of the allowed states for a core depending on the cluster states. */ static const uint32_t core_pd_allowed_state_mask_table[2] = { [MOD_PD_STATE_OFF] = MOD_PD_STATE_OFF_MASK | MOD_PD_STATE_SLEEP_MASK, [MOD_PD_STATE_ON] = TC1_CORE_VALID_STATE_MASK, }; /* Power module specific configuration data (none) */ static const struct mod_power_domain_config tc1_power_domain_config = { 0 }; static struct fwk_element tc1_power_domain_static_element_table[1] = { [PD_STATIC_DEV_IDX_SYSTOP] = { .name = "SYSTOP", .data = &((struct mod_power_domain_element_config){ .attributes.pd_type = MOD_PD_TYPE_SYSTEM, .parent_idx = PD_STATIC_DEV_IDX_NONE, .driver_id = FWK_ID_MODULE_INIT(FWK_MODULE_IDX_SYSTEM_POWER), .api_id = FWK_ID_API_INIT( FWK_MODULE_IDX_SYSTEM_POWER, MOD_SYSTEM_POWER_API_IDX_PD_DRIVER), .allowed_state_mask_table = systop_allowed_state_mask_table, .allowed_state_mask_table_size = FWK_ARRAY_SIZE(systop_allowed_state_mask_table) }), }, }; /* * Function definitions with internal linkage */ static const struct fwk_element *tc1_power_domain_get_element_table( fwk_id_t module_id) { return create_power_domain_element_table( tc1_core_get_core_count(), tc1_core_get_cluster_count(), FWK_MODULE_IDX_PPU_V1, MOD_PPU_V1_API_IDX_POWER_DOMAIN_DRIVER, core_pd_allowed_state_mask_table, FWK_ARRAY_SIZE(core_pd_allowed_state_mask_table), cluster_pd_allowed_state_mask_table, FWK_ARRAY_SIZE(cluster_pd_allowed_state_mask_table), tc1_power_domain_static_element_table, FWK_ARRAY_SIZE(tc1_power_domain_static_element_table)); } /* * Power module configuration data */ const struct fwk_module_config config_power_domain = { .elements = FWK_MODULE_DYNAMIC_ELEMENTS(tc1_power_domain_get_element_table), .data = &tc1_power_domain_config, };