]> git.gir.st - tmk_keyboard.git/blob - tool/mbed/mbed-sdk/libraries/mbed/targets/hal/TARGET_STM/TARGET_STM32L1/rtc_api.c
Squashed 'tmk_core/' changes from 7967731..b9e0ea0
[tmk_keyboard.git] / tool / mbed / mbed-sdk / libraries / mbed / targets / hal / TARGET_STM / TARGET_STM32L1 / rtc_api.c
1 /* mbed Microcontroller Library
2 *******************************************************************************
3 * Copyright (c) 2014, STMicroelectronics
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright notice,
12 * this list of conditions and the following disclaimer in the documentation
13 * and/or other materials provided with the distribution.
14 * 3. Neither the name of STMicroelectronics nor the names of its contributors
15 * may be used to endorse or promote products derived from this software
16 * without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 *******************************************************************************
29 */
30 #include "rtc_api.h"
31
32 #if DEVICE_RTC
33
34 #include "mbed_error.h"
35
36 static int rtc_inited = 0;
37
38 static RTC_HandleTypeDef RtcHandle;
39
40 void rtc_init(void)
41 {
42 RCC_OscInitTypeDef RCC_OscInitStruct;
43 uint32_t rtc_freq = 0;
44
45 if (rtc_inited) return;
46 rtc_inited = 1;
47
48 RtcHandle.Instance = RTC;
49
50 // Enable Power clock
51 __PWR_CLK_ENABLE();
52
53 // Enable access to Backup domain
54 HAL_PWR_EnableBkUpAccess();
55
56 // Reset Backup domain
57 __HAL_RCC_BACKUPRESET_FORCE();
58 __HAL_RCC_BACKUPRESET_RELEASE();
59
60 // Enable LSE Oscillator
61 RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSE;
62 RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE; // Mandatory, otherwise the PLL is reconfigured!
63 RCC_OscInitStruct.LSEState = RCC_LSE_ON; // External 32.768 kHz clock on OSC_IN/OSC_OUT
64 if (HAL_RCC_OscConfig(&RCC_OscInitStruct) == HAL_OK) {
65 // Connect LSE to RTC
66 __HAL_RCC_RTC_CLKPRESCALER(RCC_RTCCLKSOURCE_LSE);
67 __HAL_RCC_RTC_CONFIG(RCC_RTCCLKSOURCE_LSE);
68 rtc_freq = LSE_VALUE;
69 } else {
70 // Enable LSI clock
71 RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI | RCC_OSCILLATORTYPE_LSE;
72 RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE; // Mandatory, otherwise the PLL is reconfigured!
73 RCC_OscInitStruct.LSEState = RCC_LSE_OFF;
74 RCC_OscInitStruct.LSIState = RCC_LSI_ON;
75 if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) {
76 error("RTC error: LSI clock initialization failed.");
77 }
78 // Connect LSI to RTC
79 __HAL_RCC_RTC_CLKPRESCALER(RCC_RTCCLKSOURCE_LSI);
80 __HAL_RCC_RTC_CONFIG(RCC_RTCCLKSOURCE_LSI);
81 // This value is LSI typical value. To be measured precisely using a timer input capture for example.
82 rtc_freq = 40000;
83 }
84
85 // Enable RTC
86 __HAL_RCC_RTC_ENABLE();
87
88 RtcHandle.Init.HourFormat = RTC_HOURFORMAT_24;
89 #ifdef TARGET_MOTE_L152RC
90 /* SubSecond resolution of 16384Hz */
91 RtcHandle.Init.AsynchPrediv = 1;
92 RtcHandle.Init.SynchPrediv = (rtc_freq / 2) - 1;
93 #else
94 RtcHandle.Init.AsynchPrediv = 127;
95 RtcHandle.Init.SynchPrediv = (rtc_freq / 128) - 1;
96 #endif
97 RtcHandle.Init.OutPut = RTC_OUTPUT_DISABLE;
98 RtcHandle.Init.OutPutPolarity = RTC_OUTPUT_POLARITY_HIGH;
99 RtcHandle.Init.OutPutType = RTC_OUTPUT_TYPE_OPENDRAIN;
100
101 if (HAL_RTC_Init(&RtcHandle) != HAL_OK) {
102 error("RTC error: RTC initialization failed.");
103 }
104 }
105
106 void rtc_free(void)
107 {
108 // Enable Power clock
109 __PWR_CLK_ENABLE();
110
111 // Enable access to Backup domain
112 HAL_PWR_EnableBkUpAccess();
113
114 // Reset Backup domain
115 __HAL_RCC_BACKUPRESET_FORCE();
116 __HAL_RCC_BACKUPRESET_RELEASE();
117
118 // Disable access to Backup domain
119 HAL_PWR_DisableBkUpAccess();
120
121 // Disable LSI and LSE clocks
122 RCC_OscInitTypeDef RCC_OscInitStruct;
123 RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI | RCC_OSCILLATORTYPE_LSE;
124 RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE;
125 RCC_OscInitStruct.LSIState = RCC_LSI_OFF;
126 RCC_OscInitStruct.LSEState = RCC_LSE_OFF;
127 HAL_RCC_OscConfig(&RCC_OscInitStruct);
128
129 rtc_inited = 0;
130 }
131
132 int rtc_isenabled(void)
133 {
134 return rtc_inited;
135 }
136
137 /*
138 RTC Registers
139 RTC_WeekDay 1=monday, 2=tuesday, ..., 7=sunday
140 RTC_Month 1=january, 2=february, ..., 12=december
141 RTC_Date day of the month 1-31
142 RTC_Year year 0-99
143 struct tm
144 tm_sec seconds after the minute 0-61
145 tm_min minutes after the hour 0-59
146 tm_hour hours since midnight 0-23
147 tm_mday day of the month 1-31
148 tm_mon months since January 0-11
149 tm_year years since 1900
150 tm_wday days since Sunday 0-6
151 tm_yday days since January 1 0-365
152 tm_isdst Daylight Saving Time flag
153 */
154 time_t rtc_read(void)
155 {
156 RTC_DateTypeDef dateStruct;
157 RTC_TimeTypeDef timeStruct;
158 struct tm timeinfo;
159
160 RtcHandle.Instance = RTC;
161
162 // Read actual date and time
163 // Warning: the time must be read first!
164 HAL_RTC_GetTime(&RtcHandle, &timeStruct, FORMAT_BIN);
165 HAL_RTC_GetDate(&RtcHandle, &dateStruct, FORMAT_BIN);
166
167 // Setup a tm structure based on the RTC
168 timeinfo.tm_wday = dateStruct.WeekDay;
169 timeinfo.tm_mon = dateStruct.Month - 1;
170 timeinfo.tm_mday = dateStruct.Date;
171 timeinfo.tm_year = dateStruct.Year + 100;
172 timeinfo.tm_hour = timeStruct.Hours;
173 timeinfo.tm_min = timeStruct.Minutes;
174 timeinfo.tm_sec = timeStruct.Seconds;
175
176 // Convert to timestamp
177 time_t t = mktime(&timeinfo);
178
179 return t;
180 }
181
182 void rtc_write(time_t t)
183 {
184 RTC_DateTypeDef dateStruct;
185 RTC_TimeTypeDef timeStruct;
186
187 RtcHandle.Instance = RTC;
188
189 // Convert the time into a tm
190 struct tm *timeinfo = localtime(&t);
191
192 // Fill RTC structures
193 dateStruct.WeekDay = timeinfo->tm_wday;
194 dateStruct.Month = timeinfo->tm_mon + 1;
195 dateStruct.Date = timeinfo->tm_mday;
196 dateStruct.Year = timeinfo->tm_year - 100;
197 timeStruct.Hours = timeinfo->tm_hour;
198 timeStruct.Minutes = timeinfo->tm_min;
199 timeStruct.Seconds = timeinfo->tm_sec;
200 timeStruct.TimeFormat = RTC_HOURFORMAT12_PM;
201 timeStruct.DayLightSaving = RTC_DAYLIGHTSAVING_NONE;
202 timeStruct.StoreOperation = RTC_STOREOPERATION_RESET;
203
204 // Change the RTC current date/time
205 HAL_RTC_SetDate(&RtcHandle, &dateStruct, FORMAT_BIN);
206 HAL_RTC_SetTime(&RtcHandle, &timeStruct, FORMAT_BIN);
207 }
208
209 #endif
Imprint / Impressum