2 * Machine dependent access functions for RTC registers.
4 #ifndef _ASM_MC146818RTC_H
5 #define _ASM_MC146818RTC_H
8 /* RTC in Atari machines */
10 #include <asm/atarihw.h>
12 #define RTC_PORT(x) (TT_RTC_BAS + 2*(x))
14 #define CMOS_READ(addr) ({ \
15 atari_outb_p((addr),RTC_PORT(0)); \
16 atari_inb_p(RTC_PORT(1)); \
18 #define CMOS_WRITE(val, addr) ({ \
19 atari_outb_p((addr),RTC_PORT(0)); \
20 atari_outb_p((val),RTC_PORT(1)); \
22 #endif /* CONFIG_ATARI */
24 #endif /* _ASM_MC146818RTC_H */