]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_R5_UltraScale_MPSoC/RTOSDemo_R5_bsp/psu_cortexr5_0/libsrc/standalone_v6_6/src/xplatform_info.c
Update Zynq, MPSoc Cortex-A53 and MPSoc Cortex-R5 demo projects to build with the...
[freertos] / FreeRTOS / Demo / CORTEX_R5_UltraScale_MPSoC / RTOSDemo_R5_bsp / psu_cortexr5_0 / libsrc / standalone_v6_6 / src / xplatform_info.c
1 /******************************************************************************
2 *
3 * Copyright (C) 2014 - 2015 Xilinx, Inc.  All rights reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * Use of the Software is limited solely to applications:
16 * (a) running on a Xilinx device, or
17 * (b) that interact with a Xilinx device through a bus or interconnect.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * XILINX  BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
24 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
26 *
27 * Except as contained in this notice, the name of the Xilinx shall not be used
28 * in advertising or otherwise to promote the sale, use or other dealings in
29 * this Software without prior written authorization from Xilinx.
30 *
31 ******************************************************************************/
32 /*****************************************************************************/
33 /**
34 *
35 * @file xplatform_info.c
36 *
37 * This file contains information about hardware for which the code is built
38 *
39 * <pre>
40 * MODIFICATION HISTORY:
41 *
42 * Ver   Who    Date   Changes
43 * ----- ---- -------- -------------------------------------------------------
44 * 5.00  pkp  12/15/14 Initial release
45 * 5.04  pkp  01/12/16 Added platform information support for Cortex-A53 32bit
46 *                                         mode
47 * 6.00  mus  17/08/16 Removed unused variable from XGetPlatform_Info
48 * 6.4   ms   05/23/17 Added PSU_PMU macro to support XGetPSVersion_Info
49 *                     function for PMUFW.
50 *       ms   06/13/17 Added PSU_PMU macro to provide support of
51 *                     XGetPlatform_Info function for PMUFW.
52 *       mus  08/17/17 Add EL1 NS mode support for
53 *                     XGet_Zynq_UltraMp_Platform_info and XGetPSVersion_Info
54 *                     APIs.
55 * </pre>
56 *
57 ******************************************************************************/
58
59 /***************************** Include Files *********************************/
60
61 #include "xil_types.h"
62 #include "xil_io.h"
63 #include "xplatform_info.h"
64 #if defined (__aarch64__)
65 #include "bspconfig.h"
66 #include "xil_smc.h"
67 #endif
68 /************************** Constant Definitions *****************************/
69
70 /**************************** Type Definitions *******************************/
71
72 /***************** Macros (Inline Functions) Definitions *********************/
73
74 /************************** Variable Definitions *****************************/
75
76
77 /************************** Function Prototypes ******************************/
78
79 /*****************************************************************************/
80 /**
81 *
82 * @brief    This API is used to provide information about platform
83 *
84 * @param    None.
85 *
86 * @return   The information about platform defined in xplatform_info.h
87 *
88 ******************************************************************************/
89 u32 XGetPlatform_Info()
90 {
91
92 #if defined (ARMR5) || (__aarch64__) || (ARMA53_32) || (PSU_PMU)
93         return XPLAT_ZYNQ_ULTRA_MP;
94 #elif (__microblaze__)
95         return XPLAT_MICROBLAZE;
96 #else
97         return XPLAT_ZYNQ;
98 #endif
99 }
100
101 /*****************************************************************************/
102 /**
103 *
104 * @brief    This API is used to provide information about zynq ultrascale MP platform
105 *
106 * @param    None.
107 *
108 * @return   The information about zynq ultrascale MP platform defined in
109 *                       xplatform_info.h
110 *
111 ******************************************************************************/
112 #if defined (ARMR5) || (__aarch64__) || (ARMA53_32)
113 u32 XGet_Zynq_UltraMp_Platform_info()
114 {
115 #if EL1_NONSECURE
116         XSmc_OutVar reg;
117     /*
118          * This SMC call will return,
119      *  idcode - upper 32 bits of reg.Arg0
120      *  version - lower 32 bits of reg.Arg1
121          */
122         reg = Xil_Smc(GET_CHIPID_SMC_FID,0,0, 0, 0, 0, 0, 0);
123         return (u32)((reg.Arg1 >> XPLAT_INFO_SHIFT) & XPLAT_INFO_MASK);
124 #else
125         u32 reg;
126         reg = ((Xil_In32(XPAR_CSU_BASEADDR + XPAR_CSU_VER_OFFSET) >> 12U )& XPLAT_INFO_MASK);
127         return reg;
128 #endif
129 }
130 #endif
131
132 /*****************************************************************************/
133 /**
134 *
135 * @brief    This API is used to provide information about PS Silicon version
136 *
137 * @param    None.
138 *
139 * @return   The information about PS Silicon version.
140 *
141 ******************************************************************************/
142 #if defined (ARMR5) || (__aarch64__) || (ARMA53_32) || (PSU_PMU)
143 u32 XGetPSVersion_Info()
144 {
145 #if EL1_NONSECURE
146         /*
147          * This SMC call will return,
148          *  idcode - upper 32 bits of reg.Arg0
149          *  version - lower 32 bits of reg.Arg1
150          */
151         XSmc_OutVar reg;
152         reg = Xil_Smc(GET_CHIPID_SMC_FID,0,0, 0, 0, 0, 0, 0);
153         return (u32)(reg.Arg1 &  XPS_VERSION_INFO_MASK);
154 #else
155         u32 reg;
156         reg = (Xil_In32(XPAR_CSU_BASEADDR + XPAR_CSU_VER_OFFSET)
157                         & XPS_VERSION_INFO_MASK);
158         return reg;
159 #endif
160 }
161 #endif