]> 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/sleep.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 / sleep.c
1 /******************************************************************************
2 *
3 * Copyright (C) 2014 - 2016 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 * @file sleep.c
35 *
36 * This function provides a second delay using the Global Timer register in
37 * the ARM Cortex A53 MP core.
38 *
39 * <pre>
40 * MODIFICATION HISTORY:
41 *
42 * Ver   Who      Date     Changes
43 * ----- -------- -------- -----------------------------------------------
44 * 5.00  pkp      05/29/14 First release
45 * 5.04  pkp              28/01/16 Modified the sleep API to configure Time Stamp
46 *                                                 generator only when disable using frequency from
47 *                                                 xparamters.h instead of hardcoding
48 * 5.05  pkp              13/04/16 Modified sleep routine to call XTime_StartTimer
49 *                                                 which enables timer only when it is disabled and
50 *                                                 read counter value directly from register instead
51 *                                                 of calling XTime_GetTime for optimization
52 * 6.0   asa      08/15/16 Updated the sleep/usleep signature. Fix for CR#956899.
53 * </pre>
54 *
55 ******************************************************************************/
56 /***************************** Include Files *********************************/
57
58 #include "sleep.h"
59 #include "xtime_l.h"
60 #include "xparameters.h"
61
62 /* Global Timer is always clocked at half of the CPU frequency */
63 #define COUNTS_PER_USECOND  (COUNTS_PER_SECOND / 1000000 )
64
65 static void sleep_common(u32 n, u32 count)
66 {
67         XTime tEnd, tCur;
68         /* Start global timer counter, it will only be enabled if it is disabled */
69         XTime_StartTimer();
70
71         tCur = mfcp(CNTPCT_EL0);
72         tEnd = tCur + (((XTime) n) * count);
73         do {
74                 tCur = mfcp(CNTPCT_EL0);
75         } while (tCur < tEnd);
76 }
77
78 /*****************************************************************************/
79 /**
80 *
81 * This API gives a delay in microseconds
82 *
83 * @param        useconds requested
84 *
85 * @return       0 if the delay can be achieved, -1 if the requested delay
86 *               is out of range
87 *
88 * @note         None.
89 *
90 ****************************************************************************/
91 int usleep(unsigned long useconds)
92 {
93         sleep_common((u32)useconds, COUNTS_PER_USECOND);
94
95         return 0;
96 }
97
98 /*****************************************************************************/
99 /*
100 *
101 * This API is used to provide delays in seconds
102 *
103 * @param        seconds requested
104 *
105 * @return       0 always
106 *
107 * @note         None.
108 *
109 ****************************************************************************/
110 unsigned sleep(unsigned int seconds)
111 {
112         sleep_common(seconds, COUNTS_PER_SECOND);
113
114         return 0;
115 }