initial commit with v2.6.9
[linux-2.6.9-moxart.git] / include / asm-m68k / mc146818rtc.h
blob8948746c251597bf83eaeb6ace307c6c4c8a7983
1 /*
2 * Machine dependent access functions for RTC registers.
3 */
4 #ifndef _ASM_MC146818RTC_H
5 #define _ASM_MC146818RTC_H
7 #ifdef CONFIG_ATARI
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 */