Lines Matching refs:time
161 u32 date, time; in sun6i_rtc_gettime() local
168 time = readl(chip->base + SUN6I_RTC_HMS); in sun6i_rtc_gettime()
170 (time != readl(chip->base + SUN6I_RTC_HMS))); in sun6i_rtc_gettime()
172 rtc_tm->tm_sec = SUN6I_TIME_GET_SEC_VALUE(time); in sun6i_rtc_gettime()
173 rtc_tm->tm_min = SUN6I_TIME_GET_MIN_VALUE(time); in sun6i_rtc_gettime()
174 rtc_tm->tm_hour = SUN6I_TIME_GET_HOUR_VALUE(time); in sun6i_rtc_gettime()
201 rtc_time_to_tm(chip->alarm, &wkalrm->time); in sun6i_rtc_getalarm()
209 struct rtc_time *alrm_tm = &wkalrm->time; in sun6i_rtc_setalarm()
270 u32 time = 0; in sun6i_rtc_settime() local
290 time = SUN6I_TIME_SET_SEC_VALUE(rtc_tm->tm_sec) | in sun6i_rtc_settime()
301 writel(time, chip->base + SUN6I_RTC_HMS); in sun6i_rtc_settime()