Lines Matching defs:date
151 * Decode time/date into rtc_time structure
156 unsigned int time, date;
161 date = at91_rtc_read(calreg);
163 (date != at91_rtc_read(calreg)));
173 tm->tm_year = bcd2bin(date & AT91_RTC_CENT) * 100; /* century */
174 tm->tm_year += bcd2bin(FIELD_GET(AT91_RTC_YEAR, date)); /* year */
176 tm->tm_wday = bcd2bin(FIELD_GET(AT91_RTC_DAY, date)) - 1; /* day of the week [0-6], Sunday=0 */
177 tm->tm_mon = bcd2bin(FIELD_GET(AT91_RTC_MONTH, date)) - 1;
178 tm->tm_mday = bcd2bin(FIELD_GET(AT91_RTC_DATE, date));
182 * Read current time and date in RTC
196 * Set current time and date in RTC
237 * Read alarm time and date in RTC
256 * Set alarm time and date in RTC