blob: 987f727afe25e1d5638b479e963e906669a5bd05 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1998, 2001, 03 by Ralf Baechle
Thomas Bogendoerferea202c62007-08-25 11:01:50 +02007 * Copyright (C) 2007 Thomas Bogendoerfer
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * RTC routines for Jazz style attached Dallas chip.
10 */
11#ifndef __ASM_MACH_JAZZ_MC146818RTC_H
12#define __ASM_MACH_JAZZ_MC146818RTC_H
13
Thomas Bogendoerferea202c62007-08-25 11:01:50 +020014#include <linux/delay.h>
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/io.h>
17#include <asm/jazz.h>
18
19#define RTC_PORT(x) (0x70 + (x))
20#define RTC_IRQ 8
21
22static inline unsigned char CMOS_READ(unsigned long addr)
23{
24 outb_p(addr, RTC_PORT(0));
Thomas Bogendoerferea202c62007-08-25 11:01:50 +020025 return *(volatile char *)JAZZ_RTC_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026}
27
28static inline void CMOS_WRITE(unsigned char data, unsigned long addr)
29{
30 outb_p(addr, RTC_PORT(0));
Thomas Bogendoerferea202c62007-08-25 11:01:50 +020031 *(volatile char *)JAZZ_RTC_BASE = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032}
33
34#define RTC_ALWAYS_BCD 0
35
Thomas Bogendoerferea202c62007-08-25 11:01:50 +020036#define mc146818_decode_year(year) ((year) + 1980)
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#endif /* __ASM_MACH_JAZZ_MC146818RTC_H */