| /OK3568_Linux_fs/kernel/drivers/rtc/ |
| H A D | rtc-mc146818-lib.c | 36 seconds = CMOS_READ(RTC_SECONDS); in mc146818_avoid_UIP() 45 if (seconds != CMOS_READ(RTC_SECONDS)) { in mc146818_avoid_UIP() 69 if (seconds != CMOS_READ(RTC_SECONDS)) { in mc146818_avoid_UIP() 136 time->tm_sec = CMOS_READ(RTC_SECONDS); in mc146818_get_time() 145 if (time->tm_sec != CMOS_READ(RTC_SECONDS)) { in mc146818_get_time() 181 retry |= time->tm_sec != CMOS_READ(RTC_SECONDS); in mc146818_get_time() 316 CMOS_WRITE(sec, RTC_SECONDS); in mc146818_set_time()
|
| H A D | rtc-ds1742.c | 28 #define RTC_SECONDS 1 macro 72 writeb(bin2bcd(tm->tm_sec) & RTC_SECONDS_MASK, ioaddr + RTC_SECONDS); in ds1742_rtc_set_time() 92 second = readb(ioaddr + RTC_SECONDS) & RTC_SECONDS_MASK; in ds1742_rtc_read_time() 174 sec = readb(ioaddr + RTC_SECONDS); in ds1742_rtc_probe() 179 writeb(sec, ioaddr + RTC_SECONDS); in ds1742_rtc_probe()
|
| H A D | rtc-ds1553.c | 32 #define RTC_SECONDS (RTC_OFFSET + 9) macro 87 writeb(bin2bcd(tm->tm_sec) & RTC_SECONDS_MASK, ioaddr + RTC_SECONDS); in ds1553_rtc_set_time() 107 second = readb(ioaddr + RTC_SECONDS) & RTC_SECONDS_MASK; in ds1553_rtc_read_time() 277 sec = readb(ioaddr + RTC_SECONDS); in ds1553_rtc_probe() 282 writeb(sec, ioaddr + RTC_SECONDS); in ds1553_rtc_probe()
|
| H A D | rtc-stk17ta8.c | 35 #define RTC_SECONDS (RTC_OFFSET + 9) macro 87 writeb(bin2bcd(tm->tm_sec) & RTC_SECONDS_MASK, ioaddr + RTC_SECONDS); in stk17ta8_rtc_set_time() 109 second = readb(ioaddr + RTC_SECONDS) & RTC_SECONDS_MASK; in stk17ta8_rtc_read_time()
|
| H A D | rtc-ds1286.c | 181 tm->tm_sec = ds1286_rtc_read(priv, RTC_SECONDS); in ds1286_read_time() 254 ds1286_rtc_write(priv, sec, RTC_SECONDS); in ds1286_set_time()
|
| H A D | rtc-mrst.c | 92 time->tm_sec = vrtc_cmos_read(RTC_SECONDS); in mrst_read_time() 131 vrtc_cmos_write(sec, RTC_SECONDS); in mrst_set_time()
|
| /OK3568_Linux_fs/u-boot/drivers/rtc/ |
| H A D | ds164x.c | 42 #define RTC_SECONDS ( RTC_BASE + 0x01 ) macro 48 #define RTC_CONTROLB RTC_SECONDS /* OSC=bit7 */ 66 sec = rtc_read( RTC_SECONDS ); in rtc_get() 123 rtc_write( RTC_SECONDS, bin2bcd( tmp->tm_sec )); in rtc_set()
|
| H A D | ds174x.c | 33 #define RTC_SECONDS ( RTC_BASE + 1 ) macro 37 #define RTC_CONTROLB RTC_SECONDS 63 sec = rtc_read( RTC_SECONDS ); in rtc_get() 120 rtc_write( RTC_SECONDS, bin2bcd( tmp->tm_sec )); in rtc_set()
|
| H A D | ds1556.c | 36 #define RTC_SECONDS ( RTC_BASE + 0x9 ) macro 40 #define RTC_CONTROLB RTC_SECONDS 66 sec = rtc_read( RTC_SECONDS ); in rtc_get() 123 rtc_write( RTC_SECONDS, bin2bcd( tmp->tm_sec )); in rtc_set()
|
| H A D | mc146818.c | 29 #define RTC_SECONDS 0x00 macro 93 sec = mc146818_read8(RTC_SECONDS); in mc146818_get() 149 mc146818_write8(RTC_SECONDS, bin2bcd(tmp->tm_sec)); in mc146818_set()
|
| H A D | ds1306.c | 25 #define RTC_SECONDS 0x00 macro 306 sec = rtc_read (RTC_SECONDS); in rtc_get() 373 rtc_write (RTC_SECONDS, bin2bcd (tmp->tm_sec)); in rtc_set()
|
| H A D | mk48t59.c | 90 sec = rtc_read (RTC_SECONDS); in rtc_get() 151 rtc_write (RTC_SECONDS, bin2bcd(tmp->tm_sec )); in rtc_set()
|
| /OK3568_Linux_fs/kernel/arch/mips/include/asm/ |
| H A D | mc146818-time.h | 66 CMOS_WRITE(real_seconds, RTC_SECONDS); in mc146818_set_rtc_mmss() 97 sec = CMOS_READ(RTC_SECONDS); in mc146818_get_cmos_time() 103 } while (sec != CMOS_READ(RTC_SECONDS)); in mc146818_get_cmos_time()
|
| /OK3568_Linux_fs/kernel/arch/mips/dec/ |
| H A D | time.c | 30 sec = CMOS_READ(RTC_SECONDS); in read_persistent_clock64() 42 } while (sec != CMOS_READ(RTC_SECONDS)); in read_persistent_clock64() 105 CMOS_WRITE(real_seconds, RTC_SECONDS); in update_persistent_clock64()
|
| /OK3568_Linux_fs/kernel/arch/powerpc/platforms/chrp/ |
| H A D | time.c | 111 chrp_cmos_clock_write(tm.tm_sec,RTC_SECONDS); in chrp_set_rtc_time() 137 sec = chrp_cmos_clock_read(RTC_SECONDS); in chrp_get_rtc_time() 143 } while (sec != chrp_cmos_clock_read(RTC_SECONDS)); in chrp_get_rtc_time()
|
| /OK3568_Linux_fs/kernel/arch/powerpc/platforms/maple/ |
| H A D | time.c | 54 tm->tm_sec = maple_clock_read(RTC_SECONDS); in maple_get_rtc_time() 60 } while (tm->tm_sec != maple_clock_read(RTC_SECONDS)); in maple_get_rtc_time() 107 maple_clock_write(sec, RTC_SECONDS); in maple_set_rtc_time()
|
| /OK3568_Linux_fs/kernel/arch/x86/platform/intel-mid/ |
| H A D | intel_mid_vrtc.c | 67 sec = vrtc_cmos_read(RTC_SECONDS); in vrtc_get_time() 106 vrtc_cmos_write(tm.tm_sec, RTC_SECONDS); in vrtc_set_mmss()
|
| /OK3568_Linux_fs/kernel/arch/mips/mti-malta/ |
| H A D | malta-time.c | 91 secs1 = CMOS_READ(RTC_SECONDS); in estimate_frequencies() 101 secs2 = CMOS_READ(RTC_SECONDS); in estimate_frequencies()
|
| /OK3568_Linux_fs/kernel/include/linux/rtc/ |
| H A D | ds1286.h | 15 #define RTC_SECONDS 1 macro
|
| /OK3568_Linux_fs/u-boot/include/ |
| H A D | mk48t59.h | 20 #define RTC_SECONDS 0x1FF9 macro
|
| /OK3568_Linux_fs/u-boot/include/linux/ |
| H A D | mc146818rtc.h | 21 #define RTC_SECONDS 0 macro
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | mc146818rtc.h | 50 #define RTC_SECONDS 0 macro
|
| /OK3568_Linux_fs/kernel/arch/m68k/atari/ |
| H A D | time.c | 263 sec = RTC_READ( RTC_SECONDS ); in atari_tt_hwclk() 272 RTC_WRITE( RTC_SECONDS, sec ); in atari_tt_hwclk()
|
| /OK3568_Linux_fs/kernel/arch/sh/include/asm/ |
| H A D | smc37c93x.h | 165 #define RTC_SECONDS 0 macro
|
| /OK3568_Linux_fs/kernel/arch/x86/kernel/ |
| H A D | rtc.c | 88 sec = CMOS_READ(RTC_SECONDS); in mach_get_cmos_time()
|