2 * include/asm-generic/rtc.h
4 * Author: Tom Rini <trini@mvista.com>
9 * Please read the COPYING file for all license details.
17 #include <linux/mc146818rtc.h>
18 #include <linux/rtc.h>
19 #include <linux/bcd.h>
21 #define RTC_PIE 0x40 /* periodic interrupt enable */
22 #define RTC_AIE 0x20 /* alarm interrupt enable */
23 #define RTC_UIE 0x10 /* update-finished interrupt enable */
25 /* some dummy definitions */
26 #define RTC_BATT_BAD 0x100 /* battery bad */
27 #define RTC_SQWE 0x08 /* enable square-wave output */
28 #define RTC_DM_BINARY 0x04 /* all time/date values are BCD if clear */
29 #define RTC_24H 0x02 /* 24 hour mode - else hours bit 7 means pm */
30 #define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */
33 * Returns true if a clock update is in progress
35 static inline unsigned char rtc_is_updating(void)
39 spin_lock_irq(&rtc_lock
);
40 uip
= (CMOS_READ(RTC_FREQ_SELECT
) & RTC_UIP
);
41 spin_unlock_irq(&rtc_lock
);
45 static inline unsigned int get_rtc_time(struct rtc_time
*time
)
47 unsigned long uip_watchdog
= jiffies
;
49 #ifdef CONFIG_MACH_DECSTATION
50 unsigned int real_year
;
54 * read RTC once any update in progress is done. The update
55 * can take just over 2ms. We wait 10 to 20ms. There is no need to
56 * to poll-wait (up to 1s - eeccch) for the falling edge of RTC_UIP.
57 * If you need to know *exactly* when a second has started, enable
58 * periodic update complete interrupts, (via ioctl) and then
59 * immediately read /dev/rtc which will block until you get the IRQ.
60 * Once the read clears, read the RTC time (again via ioctl). Easy.
63 if (rtc_is_updating() != 0)
64 while (jiffies
- uip_watchdog
< 2*HZ
/100) {
70 * Only the values that we read from the RTC are set. We leave
71 * tm_wday, tm_yday and tm_isdst untouched. Even though the
72 * RTC has RTC_DAY_OF_WEEK, we ignore it, as it is only updated
73 * by the RTC when initially set to a non-zero value.
75 spin_lock_irq(&rtc_lock
);
76 time
->tm_sec
= CMOS_READ(RTC_SECONDS
);
77 time
->tm_min
= CMOS_READ(RTC_MINUTES
);
78 time
->tm_hour
= CMOS_READ(RTC_HOURS
);
79 time
->tm_mday
= CMOS_READ(RTC_DAY_OF_MONTH
);
80 time
->tm_mon
= CMOS_READ(RTC_MONTH
);
81 time
->tm_year
= CMOS_READ(RTC_YEAR
);
82 #ifdef CONFIG_MACH_DECSTATION
83 real_year
= CMOS_READ(RTC_DEC_YEAR
);
85 ctrl
= CMOS_READ(RTC_CONTROL
);
86 spin_unlock_irq(&rtc_lock
);
88 if (!(ctrl
& RTC_DM_BINARY
) || RTC_ALWAYS_BCD
)
90 BCD_TO_BIN(time
->tm_sec
);
91 BCD_TO_BIN(time
->tm_min
);
92 BCD_TO_BIN(time
->tm_hour
);
93 BCD_TO_BIN(time
->tm_mday
);
94 BCD_TO_BIN(time
->tm_mon
);
95 BCD_TO_BIN(time
->tm_year
);
98 #ifdef CONFIG_MACH_DECSTATION
99 time
->tm_year
+= real_year
- 72;
103 * Account for differences between how the RTC uses the values
104 * and how they are defined in a struct rtc_time;
106 if (time
->tm_year
<= 69)
107 time
->tm_year
+= 100;
114 /* Set the current date and time in the real time clock. */
115 static inline int set_rtc_time(struct rtc_time
*time
)
118 unsigned char mon
, day
, hrs
, min
, sec
;
119 unsigned char save_control
, save_freq_select
;
121 #ifdef CONFIG_MACH_DECSTATION
122 unsigned int real_yrs
, leap_yr
;
126 mon
= time
->tm_mon
+ 1; /* tm_mon starts at zero */
132 if (yrs
> 255) /* They are unsigned */
135 spin_lock_irqsave(&rtc_lock
, flags
);
136 #ifdef CONFIG_MACH_DECSTATION
138 leap_yr
= ((!((yrs
+ 1900) % 4) && ((yrs
+ 1900) % 100)) ||
139 !((yrs
+ 1900) % 400));
143 * We want to keep the year set to 73 until March
144 * for non-leap years, so that Feb, 29th is handled
147 if (!leap_yr
&& mon
< 3) {
152 /* These limits and adjustments are independent of
153 * whether the chip is in binary mode or not.
156 spin_unlock_irqrestore(&rtc_lock
, flags
);
163 if (!(CMOS_READ(RTC_CONTROL
) & RTC_DM_BINARY
)
173 save_control
= CMOS_READ(RTC_CONTROL
);
174 CMOS_WRITE((save_control
|RTC_SET
), RTC_CONTROL
);
175 save_freq_select
= CMOS_READ(RTC_FREQ_SELECT
);
176 CMOS_WRITE((save_freq_select
|RTC_DIV_RESET2
), RTC_FREQ_SELECT
);
178 #ifdef CONFIG_MACH_DECSTATION
179 CMOS_WRITE(real_yrs
, RTC_DEC_YEAR
);
181 CMOS_WRITE(yrs
, RTC_YEAR
);
182 CMOS_WRITE(mon
, RTC_MONTH
);
183 CMOS_WRITE(day
, RTC_DAY_OF_MONTH
);
184 CMOS_WRITE(hrs
, RTC_HOURS
);
185 CMOS_WRITE(min
, RTC_MINUTES
);
186 CMOS_WRITE(sec
, RTC_SECONDS
);
188 CMOS_WRITE(save_control
, RTC_CONTROL
);
189 CMOS_WRITE(save_freq_select
, RTC_FREQ_SELECT
);
191 spin_unlock_irqrestore(&rtc_lock
, flags
);
196 static inline unsigned int get_rtc_ss(void)
204 static inline int get_rtc_pll(struct rtc_pll_info
*pll
)
208 static inline int set_rtc_pll(struct rtc_pll_info
*pll
)
213 #endif /* __KERNEL__ */
214 #endif /* __ASM_RTC_H__ */