1
2
3
4
5
6
7
8
9
10
11
12 #ifndef _LINUX_RTC_M48T59_H_
13 #define _LINUX_RTC_M48T59_H_
14
15
16
17
18 #define M48T59_YEAR 0xf
19 #define M48T59_MONTH 0xe
20 #define M48T59_MDAY 0xd
21 #define M48T59_WDAY 0xc
22 #define M48T59_WDAY_CB 0x20
23 #define M48T59_WDAY_CEB 0x10
24 #define M48T59_HOUR 0xb
25 #define M48T59_MIN 0xa
26 #define M48T59_SEC 0x9
27 #define M48T59_CNTL 0x8
28 #define M48T59_CNTL_READ 0x40
29 #define M48T59_CNTL_WRITE 0x80
30 #define M48T59_WATCHDOG 0x7
31 #define M48T59_INTR 0x6
32 #define M48T59_INTR_AFE 0x80
33 #define M48T59_INTR_ABE 0x20
34 #define M48T59_ALARM_DATE 0x5
35 #define M48T59_ALARM_HOUR 0x4
36 #define M48T59_ALARM_MIN 0x3
37 #define M48T59_ALARM_SEC 0x2
38 #define M48T59_UNUSED 0x1
39 #define M48T59_FLAGS 0x0
40 #define M48T59_FLAGS_WDT 0x80
41 #define M48T59_FLAGS_AF 0x40
42 #define M48T59_FLAGS_BF 0x10
43
44 #define M48T59RTC_TYPE_M48T59 0
45 #define M48T59RTC_TYPE_M48T02 1
46 #define M48T59RTC_TYPE_M48T08 2
47
48 struct m48t59_plat_data {
49
50 void (*write_byte)(struct device *dev, u32 ofs, u8 val);
51 unsigned char (*read_byte)(struct device *dev, u32 ofs);
52
53 int type;
54
55
56 void __iomem *ioaddr;
57
58 unsigned int offset;
59 };
60
61 #endif