ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-m68k / mc146818rtc.h
1 /*
2  * Machine dependent access functions for RTC registers.
3  */
4 #ifndef _ASM_MC146818RTC_H
5 #define _ASM_MC146818RTC_H
6
7 #ifdef CONFIG_ATARI
8 /* RTC in Atari machines */
9
10 #include <asm/atarihw.h>
11
12 #define RTC_PORT(x)     (TT_RTC_BAS + 2*(x))
13
14 #define CMOS_READ(addr) ({ \
15 atari_outb_p((addr),RTC_PORT(0)); \
16 atari_inb_p(RTC_PORT(1)); \
17 })
18 #define CMOS_WRITE(val, addr) ({ \
19 atari_outb_p((addr),RTC_PORT(0)); \
20 atari_outb_p((val),RTC_PORT(1)); \
21 })
22 #endif /* CONFIG_ATARI */
23
24 #endif /* _ASM_MC146818RTC_H */