1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
|
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2008 by Robert Kukla
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
****************************************************************************/
#include "rtc.h"
#include "logf.h"
#include "sw_i2c.h"
#include "i2c-pp.h"
/* The RTC chip is unknown, the information about it was gathered by
* reverse engineering the bootloader.
*/
#define RTC_ADDR 0x60
#define RTC_CMD_CTRL 0 /* OF uses it with single byte 1 or 2 */
#define RTC_CMD_UNKN 1 /* OF uses it with single byte 8 */
#define RTC_CMD_DATA 2
#define RTC_CMD_TEST 7 /* OF uses it with single byte 0xAA */
/* private */
static void reverse_bits(unsigned char* v, int size) {
int i,j,in,out=0;
for(j=0; j<size; j++) {
in = v[j];
out = in;
for(i=0; i<7; i++) {
in = in >>1;
out = out<<1;
out |= (in & 1);
}
v[j] = out;
}
}
static int sw_i2c(int access, int cmd, unsigned char* buf, int count) {
int i, addr;
i2c_lock();
GPIOC_ENABLE |= 0x00000030;
addr = RTC_ADDR | (cmd<<1);
if(access == SW_I2C_READ) {
i = sw_i2c_read(addr, 0, buf, count);
reverse_bits(buf, count);
} else {
reverse_bits(buf, count);
i = sw_i2c_write(addr, 0, buf, count);
}
GPIOC_ENABLE &= ~0x00000030;
i2c_unlock();
return i;
}
/* public */
void rtc_init(void)
{
sw_i2c_init();
#if 0
/* init sequence from OF for reference */
/* currently we rely on the bootloader doing it for us */
bool flag = true;
unsigned char data;
unsigned char v[7] = {0x00,0x47,0x17,0x06,0x03,0x02,0x08}; /* random time */
if(flag) {
GPIOB_ENABLE |= 0x80;
GPIOB_OUTPUT_EN |= 0x80;
GPIOB_OUTPUT_VAL &= ~0x80;
DEV_EN |= 0x1000;
/* some more stuff that is not clear */
sw_i2c(SW_I2C_READ, RTC_CMD_CTRL, &data, 1);
if((data<<0x18)>>0x1e) { /* bit 7 & 6 */
data = 1;
sw_i2c(SW_I2C_WRITE, RTC_CMD_CTRL, &data, 1);
data = 1;
sw_i2c(SW_I2C_WRITE, RTC_CMD_CTRL, &data, 1);
data = 8;
sw_i2c(SW_I2C_WRITE, RTC_CMD_UNKN, &data, 1);
/* more stuff, perhaps set up time array? */
rtc_write_datetime(v);
}
data = 2;
sw_i2c(SW_I2C_WRITE, RTC_CMD_CTRL, &data, 1);
}
data = 2;
sw_i2c(SW_I2C_WRITE, RTC_CMD_CTRL, &data, 1);
#endif
}
int rtc_read_datetime(struct tm *tm)
{
unsigned int i;
int rc;
unsigned char buf[7];
rc = sw_i2c(SW_I2C_READ, RTC_CMD_DATA, buf, sizeof(buf));
buf[4] &= 0x3f; /* mask out p.m. flag */
for (i = 0; i < sizeof(buf); i++)
buf[i] = BCD2DEC(buf[i]);
tm->tm_sec = buf[6];
tm->tm_min = buf[5];
tm->tm_hour = buf[4];
tm->tm_wday = buf[3];
tm->tm_mday = buf[2];
tm->tm_mon = buf[1] - 1;
tm->tm_year = buf[0] + 100;
return rc;
}
int rtc_write_datetime(const struct tm *tm)
{
unsigned int i;
int rc;
unsigned char buf[7];
buf[6] = tm->tm_sec;
buf[5] = tm->tm_min;
buf[4] = tm->tm_hour;
buf[3] = tm->tm_wday;
buf[2] = tm->tm_mday;
buf[1] = tm->tm_mon + 1;
buf[0] = tm->tm_year - 100;
for (i = 0; i < sizeof(buf); i++)
buf[i] = DEC2BCD(buf[i]);
rc = sw_i2c(SW_I2C_WRITE, RTC_CMD_DATA, buf, sizeof(buf));
return rc;
}
|