Lines Matching defs:date
158 * Decode time/date into rtc_time structure
163 unsigned int time, date;
168 date = at91_rtc_read(calreg);
170 (date != at91_rtc_read(calreg)));
180 tm->tm_year = bcd2bin(date & AT91_RTC_CENT) * 100; /* century */
181 tm->tm_year += bcd2bin(FIELD_GET(AT91_RTC_YEAR, date)); /* year */
183 tm->tm_wday = bcd2bin(FIELD_GET(AT91_RTC_DAY, date)) - 1; /* day of the week [0-6], Sunday=0 */
184 tm->tm_mon = bcd2bin(FIELD_GET(AT91_RTC_MONTH, date)) - 1;
185 tm->tm_mday = bcd2bin(FIELD_GET(AT91_RTC_DATE, date));
189 * Read current time and date in RTC
203 * Set current time and date in RTC
244 * Read alarm time and date in RTC
263 * Set alarm time and date in RTC