1*91f16700Schasinglulu /* 2*91f16700Schasinglulu * Copyright (c) 2016-2020, ARM Limited and Contributors. All rights reserved. 3*91f16700Schasinglulu * 4*91f16700Schasinglulu * SPDX-License-Identifier: BSD-3-Clause 5*91f16700Schasinglulu */ 6*91f16700Schasinglulu 7*91f16700Schasinglulu #include <drivers/arm/css/css_mhu_doorbell.h> 8*91f16700Schasinglulu #include <drivers/arm/css/scmi.h> 9*91f16700Schasinglulu #include <plat/arm/common/plat_arm.h> 10*91f16700Schasinglulu #include <plat/arm/css/common/css_pm.h> 11*91f16700Schasinglulu #include <plat/common/platform.h> 12*91f16700Schasinglulu #include <platform_def.h> 13*91f16700Schasinglulu 14*91f16700Schasinglulu #if CSS_USE_SCMI_SDS_DRIVER 15*91f16700Schasinglulu static scmi_channel_plat_info_t juno_scmi_plat_info = { 16*91f16700Schasinglulu .scmi_mbx_mem = CSS_SCMI_PAYLOAD_BASE, 17*91f16700Schasinglulu .db_reg_addr = PLAT_CSS_MHU_BASE + CSS_SCMI_MHU_DB_REG_OFF, 18*91f16700Schasinglulu .db_preserve_mask = 0xfffffffe, 19*91f16700Schasinglulu .db_modify_mask = 0x1, 20*91f16700Schasinglulu .ring_doorbell = &mhu_ring_doorbell, 21*91f16700Schasinglulu }; 22*91f16700Schasinglulu 23*91f16700Schasinglulu scmi_channel_plat_info_t *plat_css_get_scmi_info(unsigned int channel_id) 24*91f16700Schasinglulu { 25*91f16700Schasinglulu return &juno_scmi_plat_info; 26*91f16700Schasinglulu } 27*91f16700Schasinglulu 28*91f16700Schasinglulu #endif 29*91f16700Schasinglulu /* 30*91f16700Schasinglulu * On Juno, the system power level is the highest power level. 31*91f16700Schasinglulu * The first entry in the power domain descriptor specifies the 32*91f16700Schasinglulu * number of system power domains i.e. 1. 33*91f16700Schasinglulu */ 34*91f16700Schasinglulu #define JUNO_PWR_DOMAINS_AT_MAX_PWR_LVL ARM_SYSTEM_COUNT 35*91f16700Schasinglulu 36*91f16700Schasinglulu /* 37*91f16700Schasinglulu * The Juno power domain tree descriptor. The cluster power domains 38*91f16700Schasinglulu * are arranged so that when the PSCI generic code creates the power 39*91f16700Schasinglulu * domain tree, the indices of the CPU power domain nodes it allocates 40*91f16700Schasinglulu * match the linear indices returned by plat_core_pos_by_mpidr() 41*91f16700Schasinglulu * i.e. CLUSTER1 CPUs are allocated indices from 0 to 3 and the higher 42*91f16700Schasinglulu * indices for CLUSTER0 CPUs. 43*91f16700Schasinglulu */ 44*91f16700Schasinglulu static const unsigned char juno_power_domain_tree_desc[] = { 45*91f16700Schasinglulu /* No of root nodes */ 46*91f16700Schasinglulu JUNO_PWR_DOMAINS_AT_MAX_PWR_LVL, 47*91f16700Schasinglulu /* No of children for the root node */ 48*91f16700Schasinglulu JUNO_CLUSTER_COUNT, 49*91f16700Schasinglulu /* No of children for the first cluster node */ 50*91f16700Schasinglulu JUNO_CLUSTER1_CORE_COUNT, 51*91f16700Schasinglulu /* No of children for the second cluster node */ 52*91f16700Schasinglulu JUNO_CLUSTER0_CORE_COUNT 53*91f16700Schasinglulu }; 54*91f16700Schasinglulu 55*91f16700Schasinglulu /******************************************************************************* 56*91f16700Schasinglulu * This function returns the Juno topology tree information. 57*91f16700Schasinglulu ******************************************************************************/ 58*91f16700Schasinglulu const unsigned char *plat_get_power_domain_tree_desc(void) 59*91f16700Schasinglulu { 60*91f16700Schasinglulu return juno_power_domain_tree_desc; 61*91f16700Schasinglulu } 62*91f16700Schasinglulu 63*91f16700Schasinglulu /******************************************************************************* 64*91f16700Schasinglulu * This function returns the core count within the cluster corresponding to 65*91f16700Schasinglulu * `mpidr`. 66*91f16700Schasinglulu ******************************************************************************/ 67*91f16700Schasinglulu unsigned int plat_arm_get_cluster_core_count(u_register_t mpidr) 68*91f16700Schasinglulu { 69*91f16700Schasinglulu return (((mpidr & (u_register_t) 0x100) != 0U) ? 70*91f16700Schasinglulu JUNO_CLUSTER1_CORE_COUNT : JUNO_CLUSTER0_CORE_COUNT); 71*91f16700Schasinglulu } 72*91f16700Schasinglulu 73*91f16700Schasinglulu /* 74*91f16700Schasinglulu * The array mapping platform core position (implemented by plat_my_core_pos()) 75*91f16700Schasinglulu * to the SCMI power domain ID implemented by SCP. 76*91f16700Schasinglulu */ 77*91f16700Schasinglulu const uint32_t plat_css_core_pos_to_scmi_dmn_id_map[PLATFORM_CORE_COUNT] = { 78*91f16700Schasinglulu 2, 3, 4, 5, 0, 1 }; 79