1 // SPDX-License-Identifier: GPL-2.0-only
3 #include <linux/delay.h>
4 #include <linux/export.h>
5 #include <linux/mc146818rtc.h>
8 #include <linux/acpi.h>
12 * Execute a function while the UIP (Update-in-progress) bit of the RTC is
15 * Warning: callback may be executed more then once.
17 bool mc146818_avoid_UIP(void (*callback)(unsigned char seconds, void *param),
22 unsigned char seconds;
24 for (i = 0; i < 100; i++) {
25 spin_lock_irqsave(&rtc_lock, flags);
28 * Check whether there is an update in progress during which the
29 * readout is unspecified. The maximum update time is ~2ms. Poll
30 * every 100 usec for completion.
32 * Store the second value before checking UIP so a long lasting
33 * NMI which happens to hit after the UIP check cannot make
34 * an update cycle invisible.
36 seconds = CMOS_READ(RTC_SECONDS);
38 if (CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP) {
39 spin_unlock_irqrestore(&rtc_lock, flags);
44 /* Revalidate the above readout */
45 if (seconds != CMOS_READ(RTC_SECONDS)) {
46 spin_unlock_irqrestore(&rtc_lock, flags);
51 callback(seconds, param);
54 * Check for the UIP bit again. If it is set now then
55 * the above values may contain garbage.
57 if (CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP) {
58 spin_unlock_irqrestore(&rtc_lock, flags);
64 * A NMI might have interrupted the above sequence so check
65 * whether the seconds value has changed which indicates that
66 * the NMI took longer than the UIP bit was set. Unlikely, but
67 * possible and there is also virt...
69 if (seconds != CMOS_READ(RTC_SECONDS)) {
70 spin_unlock_irqrestore(&rtc_lock, flags);
73 spin_unlock_irqrestore(&rtc_lock, flags);
79 EXPORT_SYMBOL_GPL(mc146818_avoid_UIP);
82 * If the UIP (Update-in-progress) bit of the RTC is set for more then
83 * 10ms, the RTC is apparently broken or not present.
85 bool mc146818_does_rtc_work(void)
87 return mc146818_avoid_UIP(NULL, NULL);
89 EXPORT_SYMBOL_GPL(mc146818_does_rtc_work);
91 struct mc146818_get_time_callback_param {
92 struct rtc_time *time;
95 unsigned char century;
97 #ifdef CONFIG_MACH_DECSTATION
98 unsigned int real_year;
102 static void mc146818_get_time_callback(unsigned char seconds, void *param_in)
104 struct mc146818_get_time_callback_param *p = param_in;
107 * Only the values that we read from the RTC are set. We leave
108 * tm_wday, tm_yday and tm_isdst untouched. Even though the
109 * RTC has RTC_DAY_OF_WEEK, we ignore it, as it is only updated
110 * by the RTC when initially set to a non-zero value.
112 p->time->tm_sec = seconds;
113 p->time->tm_min = CMOS_READ(RTC_MINUTES);
114 p->time->tm_hour = CMOS_READ(RTC_HOURS);
115 p->time->tm_mday = CMOS_READ(RTC_DAY_OF_MONTH);
116 p->time->tm_mon = CMOS_READ(RTC_MONTH);
117 p->time->tm_year = CMOS_READ(RTC_YEAR);
118 #ifdef CONFIG_MACH_DECSTATION
119 p->real_year = CMOS_READ(RTC_DEC_YEAR);
122 if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID &&
123 acpi_gbl_FADT.century) {
124 p->century = CMOS_READ(acpi_gbl_FADT.century);
130 p->ctrl = CMOS_READ(RTC_CONTROL);
133 int mc146818_get_time(struct rtc_time *time)
135 struct mc146818_get_time_callback_param p = {
139 if (!mc146818_avoid_UIP(mc146818_get_time_callback, &p)) {
140 memset(time, 0, sizeof(*time));
144 if (!(p.ctrl & RTC_DM_BINARY) || RTC_ALWAYS_BCD)
146 time->tm_sec = bcd2bin(time->tm_sec);
147 time->tm_min = bcd2bin(time->tm_min);
148 time->tm_hour = bcd2bin(time->tm_hour);
149 time->tm_mday = bcd2bin(time->tm_mday);
150 time->tm_mon = bcd2bin(time->tm_mon);
151 time->tm_year = bcd2bin(time->tm_year);
153 p.century = bcd2bin(p.century);
157 #ifdef CONFIG_MACH_DECSTATION
158 time->tm_year += p.real_year - 72;
163 time->tm_year += (p.century - 19) * 100;
167 * Account for differences between how the RTC uses the values
168 * and how they are defined in a struct rtc_time;
170 if (time->tm_year <= 69)
171 time->tm_year += 100;
177 EXPORT_SYMBOL_GPL(mc146818_get_time);
179 /* AMD systems don't allow access to AltCentury with DV1 */
180 static bool apply_amd_register_a_behavior(void)
183 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD ||
184 boot_cpu_data.x86_vendor == X86_VENDOR_HYGON)
190 /* Set the current date and time in the real time clock. */
191 int mc146818_set_time(struct rtc_time *time)
194 unsigned char mon, day, hrs, min, sec;
195 unsigned char save_control, save_freq_select;
197 #ifdef CONFIG_MACH_DECSTATION
198 unsigned int real_yrs, leap_yr;
200 unsigned char century = 0;
203 mon = time->tm_mon + 1; /* tm_mon starts at zero */
209 if (yrs > 255) /* They are unsigned */
212 #ifdef CONFIG_MACH_DECSTATION
214 leap_yr = ((!((yrs + 1900) % 4) && ((yrs + 1900) % 100)) ||
215 !((yrs + 1900) % 400));
219 * We want to keep the year set to 73 until March
220 * for non-leap years, so that Feb, 29th is handled
223 if (!leap_yr && mon < 3) {
230 if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID &&
231 acpi_gbl_FADT.century) {
232 century = (yrs + 1900) / 100;
237 /* These limits and adjustments are independent of
238 * whether the chip is in binary mode or not.
246 spin_lock_irqsave(&rtc_lock, flags);
247 save_control = CMOS_READ(RTC_CONTROL);
248 spin_unlock_irqrestore(&rtc_lock, flags);
249 if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD) {
256 century = bin2bcd(century);
259 spin_lock_irqsave(&rtc_lock, flags);
260 save_control = CMOS_READ(RTC_CONTROL);
261 CMOS_WRITE((save_control|RTC_SET), RTC_CONTROL);
262 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
263 if (apply_amd_register_a_behavior())
264 CMOS_WRITE((save_freq_select & ~RTC_AMD_BANK_SELECT), RTC_FREQ_SELECT);
266 CMOS_WRITE((save_freq_select|RTC_DIV_RESET2), RTC_FREQ_SELECT);
268 #ifdef CONFIG_MACH_DECSTATION
269 CMOS_WRITE(real_yrs, RTC_DEC_YEAR);
271 CMOS_WRITE(yrs, RTC_YEAR);
272 CMOS_WRITE(mon, RTC_MONTH);
273 CMOS_WRITE(day, RTC_DAY_OF_MONTH);
274 CMOS_WRITE(hrs, RTC_HOURS);
275 CMOS_WRITE(min, RTC_MINUTES);
276 CMOS_WRITE(sec, RTC_SECONDS);
278 if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID &&
279 acpi_gbl_FADT.century)
280 CMOS_WRITE(century, acpi_gbl_FADT.century);
283 CMOS_WRITE(save_control, RTC_CONTROL);
284 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
286 spin_unlock_irqrestore(&rtc_lock, flags);
290 EXPORT_SYMBOL_GPL(mc146818_set_time);