1*91f16700Schasinglulu /* 2*91f16700Schasinglulu * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved. 3*91f16700Schasinglulu * 4*91f16700Schasinglulu * SPDX-License-Identifier: BSD-3-Clause 5*91f16700Schasinglulu */ 6*91f16700Schasinglulu 7*91f16700Schasinglulu #ifndef CCN_H 8*91f16700Schasinglulu #define CCN_H 9*91f16700Schasinglulu 10*91f16700Schasinglulu /* 11*91f16700Schasinglulu * This macro defines the maximum number of master interfaces that reside on 12*91f16700Schasinglulu * Request nodes which the CCN driver can accommodate. The driver APIs to add 13*91f16700Schasinglulu * and remove Request nodes from snoop/dvm domains take a bit map of master 14*91f16700Schasinglulu * interfaces as inputs. The largest C data type that can be used is a 64-bit 15*91f16700Schasinglulu * unsigned integer. Hence the value of 64. The platform will have to ensure 16*91f16700Schasinglulu * that the master interfaces are numbered from 0-63. 17*91f16700Schasinglulu */ 18*91f16700Schasinglulu #define CCN_MAX_RN_MASTERS 64 19*91f16700Schasinglulu 20*91f16700Schasinglulu /* 21*91f16700Schasinglulu * The following constants define the various run modes that the platform can 22*91f16700Schasinglulu * request the CCN driver to place the L3 cache in. These map to the 23*91f16700Schasinglulu * programmable P-State values in a HN-F P-state register. 24*91f16700Schasinglulu */ 25*91f16700Schasinglulu #define CCN_L3_RUN_MODE_NOL3 0x0 /* HNF_PM_NOL3 */ 26*91f16700Schasinglulu #define CCN_L3_RUN_MODE_SFONLY 0x1 /* HNF_PM_SFONLY */ 27*91f16700Schasinglulu #define CCN_L3_RUN_MODE_HAM 0x2 /* HNF_PM_HALF */ 28*91f16700Schasinglulu #define CCN_L3_RUN_MODE_FAM 0x3 /* HNF_PM_FULL */ 29*91f16700Schasinglulu 30*91f16700Schasinglulu /* part 0 IDs for various CCN variants */ 31*91f16700Schasinglulu #define CCN_502_PART0_ID 0x30 32*91f16700Schasinglulu #define CCN_504_PART0_ID 0x26 33*91f16700Schasinglulu #define CCN_505_PART0_ID 0x27 34*91f16700Schasinglulu #define CCN_508_PART0_ID 0x28 35*91f16700Schasinglulu #define CCN_512_PART0_ID 0x29 36*91f16700Schasinglulu 37*91f16700Schasinglulu /* 38*91f16700Schasinglulu * The following macro takes the value returned from a read of a HN-F P-state 39*91f16700Schasinglulu * status register and returns the retention state value. 40*91f16700Schasinglulu */ 41*91f16700Schasinglulu #define CCN_GET_RETENTION_STATE(pstate) ((pstate >> 4) & 0x3) 42*91f16700Schasinglulu 43*91f16700Schasinglulu /* 44*91f16700Schasinglulu * The following macro takes the value returned from a read of a HN-F P-state 45*91f16700Schasinglulu * status register and returns the run state value. 46*91f16700Schasinglulu */ 47*91f16700Schasinglulu #define CCN_GET_RUN_STATE(pstate) (pstate & 0xf) 48*91f16700Schasinglulu 49*91f16700Schasinglulu #ifndef __ASSEMBLER__ 50*91f16700Schasinglulu #include <stdint.h> 51*91f16700Schasinglulu 52*91f16700Schasinglulu /* 53*91f16700Schasinglulu * This structure describes some of the implementation defined attributes of the 54*91f16700Schasinglulu * CCN IP. It is used by the platform port to specify these attributes in order 55*91f16700Schasinglulu * to initialise the CCN driver. The attributes are described below. 56*91f16700Schasinglulu * 57*91f16700Schasinglulu * 1. The 'num_masters' field specifies the total number of master interfaces 58*91f16700Schasinglulu * resident on Request nodes. 59*91f16700Schasinglulu * 60*91f16700Schasinglulu * 2. The 'master_to_rn_id_map' field is a ponter to an array in which each 61*91f16700Schasinglulu * index corresponds to a master interface and its value corresponds to the 62*91f16700Schasinglulu * Request node on which the master interface resides. 63*91f16700Schasinglulu * This field is not simply defined as an array of size CCN_MAX_RN_MASTERS. 64*91f16700Schasinglulu * In reality, a platform will have much fewer master * interfaces than 65*91f16700Schasinglulu * CCN_MAX_RN_MASTERS. With an array of this size, it would also have to 66*91f16700Schasinglulu * set the unused entries to a suitable value. Zeroing the array would not 67*91f16700Schasinglulu * be enough since 0 is also a valid node id. Hence, such an array is not 68*91f16700Schasinglulu * used. 69*91f16700Schasinglulu * 70*91f16700Schasinglulu * 3. The 'periphbase' field is the base address of the programmer's view of the 71*91f16700Schasinglulu * CCN IP. 72*91f16700Schasinglulu */ 73*91f16700Schasinglulu typedef struct ccn_desc { 74*91f16700Schasinglulu unsigned int num_masters; 75*91f16700Schasinglulu const unsigned char *master_to_rn_id_map; 76*91f16700Schasinglulu uintptr_t periphbase; 77*91f16700Schasinglulu } ccn_desc_t; 78*91f16700Schasinglulu 79*91f16700Schasinglulu /* Enum used to loop through all types of nodes in CCN*/ 80*91f16700Schasinglulu typedef enum node_types { 81*91f16700Schasinglulu NODE_TYPE_RNF = 0, 82*91f16700Schasinglulu NODE_TYPE_RNI, 83*91f16700Schasinglulu NODE_TYPE_RND, 84*91f16700Schasinglulu NODE_TYPE_HNF, 85*91f16700Schasinglulu NODE_TYPE_HNI, 86*91f16700Schasinglulu NODE_TYPE_SN, 87*91f16700Schasinglulu NUM_NODE_TYPES 88*91f16700Schasinglulu } node_types_t; 89*91f16700Schasinglulu 90*91f16700Schasinglulu void ccn_init(const ccn_desc_t *plat_ccn_desc); 91*91f16700Schasinglulu void ccn_enter_snoop_dvm_domain(unsigned long long master_iface_map); 92*91f16700Schasinglulu void ccn_exit_snoop_dvm_domain(unsigned long long master_iface_map); 93*91f16700Schasinglulu void ccn_enter_dvm_domain(unsigned long long master_iface_map); 94*91f16700Schasinglulu void ccn_exit_dvm_domain(unsigned long long master_iface_map); 95*91f16700Schasinglulu void ccn_set_l3_run_mode(unsigned int mode); 96*91f16700Schasinglulu void ccn_program_sys_addrmap(unsigned int sn0_id, 97*91f16700Schasinglulu unsigned int sn1_id, 98*91f16700Schasinglulu unsigned int sn2_id, 99*91f16700Schasinglulu unsigned int top_addr_bit0, 100*91f16700Schasinglulu unsigned int top_addr_bit1, 101*91f16700Schasinglulu unsigned char three_sn_en); 102*91f16700Schasinglulu unsigned int ccn_get_l3_run_mode(void); 103*91f16700Schasinglulu int ccn_get_part0_id(uintptr_t periphbase); 104*91f16700Schasinglulu 105*91f16700Schasinglulu void ccn_write_node_reg(node_types_t node_type, unsigned int node_id, 106*91f16700Schasinglulu unsigned int reg_offset, 107*91f16700Schasinglulu unsigned long long val); 108*91f16700Schasinglulu unsigned long long ccn_read_node_reg(node_types_t node_type, 109*91f16700Schasinglulu unsigned int node_id, 110*91f16700Schasinglulu unsigned int reg_offset); 111*91f16700Schasinglulu 112*91f16700Schasinglulu #endif /* __ASSEMBLER__ */ 113*91f16700Schasinglulu #endif /* CCN_H */ 114