2005-04-16 16:20:36 -06:00
|
|
|
#ifndef _ASM_RTC_H
|
|
|
|
#define _ASM_RTC_H
|
|
|
|
|
|
|
|
extern void (*board_time_init)(void);
|
2006-09-27 02:11:32 -06:00
|
|
|
extern void (*rtc_sh_get_time)(struct timespec *);
|
|
|
|
extern int (*rtc_sh_set_time)(const time_t);
|
2005-04-16 16:20:36 -06:00
|
|
|
|
2007-08-02 23:19:58 -06:00
|
|
|
#define RTC_CAP_4_DIGIT_YEAR (1 << 0)
|
|
|
|
|
|
|
|
struct sh_rtc_platform_info {
|
|
|
|
unsigned long capabilities;
|
|
|
|
};
|
|
|
|
|
2007-11-28 03:14:23 -07:00
|
|
|
#include <asm/cpu/rtc.h>
|
|
|
|
|
2005-04-16 16:20:36 -06:00
|
|
|
#endif /* _ASM_RTC_H */
|