OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [include/] [asm-m68k/] [mc146818rtc.h] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1276 phoenix
/*
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 */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.