Lines Matching refs:t
30 unsigned long t; in au1xtoy_rtc_read_time() local
32 t = alchemy_rdsys(AU1000_SYS_TOYREAD); in au1xtoy_rtc_read_time()
34 rtc_time64_to_tm(t, tm); in au1xtoy_rtc_read_time()
41 unsigned long t; in au1xtoy_rtc_set_time() local
43 t = rtc_tm_to_time64(tm); in au1xtoy_rtc_set_time()
45 alchemy_wrsys(t, AU1000_SYS_TOYWRITE); in au1xtoy_rtc_set_time()
64 unsigned long t; in au1xtoy_rtc_probe() local
66 t = alchemy_rdsys(AU1000_SYS_CNTRCTRL); in au1xtoy_rtc_probe()
67 if (!(t & CNTR_OK)) { in au1xtoy_rtc_probe()
75 t = 0x00100000; in au1xtoy_rtc_probe()
76 while ((alchemy_rdsys(AU1000_SYS_CNTRCTRL) & SYS_CNTRL_T0S) && --t) in au1xtoy_rtc_probe()
79 if (!t) { in au1xtoy_rtc_probe()