Go to the documentation of this file.
4 #ifndef __ASM_SPARC_MC146818RTC_H
5 #define __ASM_SPARC_MC146818RTC_H
10 #define RTC_PORT(x) (0x70 + (x))
11 #define RTC_ALWAYS_BCD 1
18 #define CMOS_READ(addr) ({ \
19 outb_p((addr),RTC_PORT(0)); \
22 #define CMOS_WRITE(val, addr) ({ \
23 outb_p((addr),RTC_PORT(0)); \
24 outb_p((val),RTC_PORT(1)); \