]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_A53_64-bit_UltraScale_MPSoC/RTOSDemo_A53_bsp/psu_cortexa53_0/libsrc/standalone_v6_1/src/xplatform_info.c
Update Zynq MPSoC hardware definition and BSP files to be those shipped with the...
[freertos] / FreeRTOS / Demo / CORTEX_A53_64-bit_UltraScale_MPSoC / RTOSDemo_A53_bsp / psu_cortexa53_0 / libsrc / standalone_v6_1 / 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 * </pre>
49 *
50 ******************************************************************************/
51
52 /***************************** Include Files *********************************/
53
54 #include "xil_types.h"
55 #include "xil_io.h"
56 #include "xplatform_info.h"
57
58 /************************** Constant Definitions *****************************/
59
60 /**************************** Type Definitions *******************************/
61
62 /***************** Macros (Inline Functions) Definitions *********************/
63
64 /************************** Variable Definitions *****************************/
65
66
67 /************************** Function Prototypes ******************************/
68
69 /*****************************************************************************/
70 /**
71 *
72 * This API is used to provide information about platform
73 *
74 * @param    None.
75 *
76 * @return   The information about platform defined in xplatform_info.h
77 *
78 * @note     None.
79 *
80 ******************************************************************************/
81 u32 XGetPlatform_Info()
82 {
83
84 #if defined (ARMR5) || (__aarch64__) || (ARMA53_32)
85         return XPLAT_ZYNQ_ULTRA_MP;
86 #elif (__microblaze__)
87         return XPLAT_MICROBLAZE;
88 #else
89         return XPLAT_ZYNQ;
90 #endif
91 }
92
93 /*****************************************************************************/
94 /**
95 *
96 * This API is used to provide information about zynq ultrascale MP platform
97 *
98 * @param    None.
99 *
100 * @return   The information about zynq ultrascale MP platform defined in
101 *                       xplatform_info.h
102 *
103 * @note     None.
104 *
105 ******************************************************************************/
106 #if defined (ARMR5) || (__aarch64__) || (ARMA53_32)
107 u32 XGet_Zynq_UltraMp_Platform_info()
108 {
109         u32 reg;
110         reg = ((Xil_In32(XPAR_CSU_BASEADDR + XPAR_CSU_VER_OFFSET) >> 12U )& XPLAT_INFO_MASK);
111         return reg;
112 }
113 #endif
114
115 /*****************************************************************************/
116 /**
117 *
118 * This API is used to provide information about PS Silicon version
119 *
120 * @param    None.
121 *
122 * @return   The information about PS Silicon version.
123 *
124 * @note     None.
125 *
126 ******************************************************************************/
127 #if defined (ARMR5) || (__aarch64__) || (ARMA53_32)
128 u32 XGetPSVersion_Info()
129 {
130         u32 reg;
131         reg = (Xil_In32(XPAR_CSU_BASEADDR + XPAR_CSU_VER_OFFSET)
132                         & XPS_VERSION_INFO_MASK);
133         return reg;
134 }
135 #endif