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