1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * adopted for HD300 by Marcin Bukat
11 * Copyright (C) 2009 by Bertrik Sikken
12 * Copyright (C) 2008 by Robert Kukla
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20 * KIND, either express or implied.
22 ****************************************************************************/
25 #include "i2c-coldfire.h"
27 /* Driver for the Seiko S35380A real-time clock chip with i2c interface
29 This driver was derived from rtc_s3539a.c and adapted for the MPIO HD300
36 #define REALTIME_DATA1 2
37 #define REALTIME_DATA2 3
40 #define CLOCK_CORR_REG 6
43 /* STATUS_REG1 flags */
44 #define STATUS_REG1_POC 0x80
45 #define STATUS_REG1_BLD 0x40
46 #define STATUS_REG1_INT2 0x20
47 #define STATUS_REG1_INT1 0x10
48 #define STATUS_REG1_SC1 0x08
49 #define STATUS_REG1_SC0 0x04
50 #define STATUS_REG1_H1224 0x02
51 #define STATUS_REG1_RESET 0x01
53 /* STATUS_REG2 flags */
54 #define STATUS_REG2_TEST 0x80
55 #define STATUS_REG2_INT2AE 0x40
56 #define STATUS_REG2_INT2ME 0x20
57 #define STATUS_REG2_INT2FE 0x10
58 #define STATUS_REG2_32kE 0x08
59 #define STATUS_REG2_INT1AE 0x04
60 #define STATUS_REG2_INT1ME 0x02
61 #define STATUS_REG2_INT1FE 0x01
63 /* REALTIME_DATA register bytes */
67 #define TIME_WEEKDAY 3
71 #define TIME_REG_SIZE 7
73 /* INT1, INT2 register bytes */
74 #define ALARM_WEEKDAY 0
76 #define ALARM_MINUTE 2
77 #define ALARM_REG_SIZE 3
79 /* INT1, INT2 register bits */
92 /* s35380a chip has reversed bits order in byte
93 * This is little helper function to deal with
95 static void reverse_bits(unsigned char* v
, int size
)
97 static const unsigned char flipnibble
[] =
98 {0x00, 0x08, 0x04, 0x0C, 0x02, 0x0A, 0x06, 0x0E,
99 0x01, 0x09, 0x05, 0x0D, 0x03, 0x0B, 0x07, 0x0F};
102 for (i
= 0; i
< size
; i
++) {
103 v
[i
] = (flipnibble
[v
[i
] & 0x0F] << 4) |
104 flipnibble
[(v
[i
] >> 4) & 0x0F];
108 /* Read 'size' bytes from RTC 'reg' and put data in 'buf'
109 * bits are reversed in data bytes afterwards so they appear in regular order
110 * return i2c transfer code
112 static int rtc_read(unsigned char reg
, unsigned char *buf
, int size
)
115 rc
= i2c_read(I2C_IFACE_1
, RTC_ADDR
|(reg
<<1), buf
, size
);
116 reverse_bits(buf
, size
);
120 /* Write 'size' bytes to RTC 'reg' and put data in 'buf'
121 * bits are reversed in data bytes prior to sending them to RTC
122 * return i2c transfer code
124 static int rtc_write(unsigned char reg
, unsigned char *buf
, int size
)
127 reverse_bits(buf
, size
);
128 rc
= i2c_write(I2C_IFACE_1
, RTC_ADDR
|(reg
<<1), buf
, size
);
132 /* Reset RTC by writing '1' to RESET bit in STATUS_REG1 */
133 static inline void rtc_reset(void)
135 unsigned char reg
= STATUS_REG1_RESET
;
136 rtc_write(STATUS_REG1
, ®
, 1);
139 /* Initialize RTC (according to scheme outlined in datasheet).
140 * Configure chip to 24h time format.
145 static bool initialized
= false;
150 rtc_read(STATUS_REG1
, ®
, 1);
152 /* cache INT1, INT2 flags as reading the register seem to clear
153 * this bits (which is not described in datasheet)
155 int_flag
= ((reg
& STATUS_REG1_INT1
) || (reg
& STATUS_REG1_INT2
));
157 /* test POC and BLD flags */
158 if ( (reg
& STATUS_REG1_POC
) || (reg
& STATUS_REG1_BLD
))
161 rtc_read(STATUS_REG2
, ®
, 1);
164 if ( reg
& STATUS_REG2_TEST
)
167 /* setup 24h time format */
168 reg
= STATUS_REG1_H1224
;
169 rtc_write(STATUS_REG1
, ®
, 1);
174 /* Read realtime data register */
175 int rtc_read_datetime(struct tm
*tm
)
177 unsigned char buf
[TIME_REG_SIZE
];
181 ret
= rtc_read(REALTIME_DATA1
, buf
, sizeof(buf
));
183 buf
[TIME_HOUR
] &= 0x3f; /* mask out p.m. flag */
185 for (i
= 0; i
< sizeof(buf
); i
++)
186 buf
[i
] = BCD2DEC(buf
[i
]);
188 tm
->tm_sec
= buf
[TIME_SECOND
];
189 tm
->tm_min
= buf
[TIME_MINUTE
];
190 tm
->tm_hour
= buf
[TIME_HOUR
];
191 tm
->tm_wday
= buf
[TIME_WEEKDAY
];
192 tm
->tm_mday
= buf
[TIME_DAY
];
193 tm
->tm_mon
= buf
[TIME_MONTH
] - 1;
194 tm
->tm_year
= buf
[TIME_YEAR
] + 100;
199 /* Write to realtime data register */
200 int rtc_write_datetime(const struct tm
*tm
)
202 unsigned char buf
[TIME_REG_SIZE
];
206 buf
[TIME_SECOND
] = tm
->tm_sec
;
207 buf
[TIME_MINUTE
] = tm
->tm_min
;
208 buf
[TIME_HOUR
] = tm
->tm_hour
;
209 buf
[TIME_WEEKDAY
] = tm
->tm_wday
;
210 buf
[TIME_DAY
] = tm
->tm_mday
;
211 buf
[TIME_MONTH
] = tm
->tm_mon
+ 1;
212 buf
[TIME_YEAR
] = tm
->tm_year
- 100;
214 for (i
= 0; i
< sizeof(buf
); i
++)
215 buf
[i
] = DEC2BCD(buf
[i
]);
217 ret
= rtc_write(REALTIME_DATA1
, buf
, sizeof(buf
));
222 #ifdef HAVE_RTC_ALARM
223 /* Set alarm (INT1) data register */
224 void rtc_set_alarm(int h
, int m
)
226 unsigned char buf
[ALARM_REG_SIZE
];
228 /* INT1 register can be accessed only when IN1AE flag is set */
229 rtc_enable_alarm(true);
231 /* A1mE, A1HE - validity flags */
232 buf
[ALARM_MINUTE
] = DEC2BCD(m
) | A1mE
;
233 buf
[ALARM_HOUR
] = DEC2BCD(h
) | A1HE
;
234 buf
[ALARM_WEEKDAY
] = 0;
236 /* AM/PM flag has to be set properly regardles of
237 * time format used (H1224 flag in STATUS_REG1)
238 * this is not described in datasheet for s35380a
239 * but is somehow described in datasheet for s35390a
242 buf
[ALARM_HOUR
] |= AMPM
;
244 rtc_write(INT1_REG
, buf
, sizeof(buf
));
247 /* Read alarm (INT1) data register */
248 void rtc_get_alarm(int *h
, int *m
)
250 unsigned char buf
[ALARM_REG_SIZE
];
252 /* INT1 alarm register can be accessed only when INT1AE is set */
253 rtc_enable_alarm(true);
255 /* read the content of INT1 register */
256 rtc_read(INT1_REG
, buf
, sizeof(buf
));
258 *h
= BCD2DEC(buf
[ALARM_HOUR
] & 0x3f); /* mask out A1HE and PM/AM bits */
259 *m
= BCD2DEC(buf
[ALARM_MINUTE
] & 0x7f); /* mask out A1mE bit */
261 /* Disable alarm - this is not strictly needed in rockbox
262 * as after rtc_get_alarm() rtc_set_alarm() or rtc_enable_alarm(false)
263 * are called. I just found this weird that simple reading register
264 * changes alarm settings.
266 rtc_enable_alarm(false);
269 /* Check if we just triggered alarm.
270 * We check both INT1 and INT2. Rockbox uses only INT1 but
271 * OF in MPIO HD300 uses both
273 bool rtc_check_alarm_flag(void)
276 rtc_read(STATUS_REG1
, ®
, 1);
278 return ((reg
& STATUS_REG1_INT1
) || (reg
& STATUS_REG1_INT2
));
281 /* Enable/disable alarm function */
282 void rtc_enable_alarm(bool enable
)
284 unsigned char reg
= 0;
287 reg
= STATUS_REG2_INT1AE
;
289 rtc_write(STATUS_REG2
, ®
, 1);
292 /* Return true if wakeup is due to RTC alarm */
293 bool rtc_check_alarm_started(bool release_alarm
)
295 static bool run_before
;
301 int_flag
&= ~release_alarm
;