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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
|
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id: i2c-s5l8700.c 28589 2010-11-14 15:19:30Z theseven $
*
* Copyright (C) 2009 by Bertrik Sikken
*
* 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 "config.h"
#include "system.h"
#include "kernel.h"
#include "i2c-s5l8702.h"
#include "clocking-s5l8702.h"
/* Driver for the s5l8702 built-in I2C controller in master mode
Both the i2c_read and i2c_write function take the following arguments:
* slave, the address of the i2c slave device to read from / write to
* address, optional sub-address in the i2c slave (unused if -1)
* len, number of bytes to be transfered
* data, pointer to data to be transfered
A return value > 0 indicates an error.
Note:
* blocks the calling thread for the entire duraton of the i2c transfer.
*/
static struct mutex i2c_mtx[2];
void i2c_init()
{
mutex_init(&i2c_mtx[0]);
mutex_init(&i2c_mtx[1]);
}
static void wait_rdy(int bus)
{
while (IICUNK10(bus));
}
static void i2c_on(int bus)
{
/* enable I2C clock */
clockgate_enable(I2CCLKGATE(bus), true);
#if CONFIG_CPU == S5L8720
/* this clockgate is needed when ECLK is used as source clock */
clockgate_enable(I2CCLKGATE_2(bus), true);
udelay(5);
#endif
}
static void i2c_off(int bus)
{
/* serial output off */
wait_rdy(bus);
IICSTAT(bus) = 0;
/* disable I2C clock */
wait_rdy(bus);
clockgate_enable(I2CCLKGATE(bus), false);
#if CONFIG_CPU == S5L8720
clockgate_enable(I2CCLKGATE_2(bus), false);
#endif
}
/* wait for bus not busy, or tx/rx byte (should return once
8 data + 1 ack clocks are generated), or STOP. */
static void i2c_wait_io(int bus)
{
while (((IICSTAT(bus) & (1 << 5)) != 0) &&
((IICSTA2(bus) & ((1 << 8)|(1 << 13))) == 0)) {
wait_rdy(bus);
}
IICSTA2(bus) |= (1 << 8)|(1 << 13);
}
static int i2c_start(int bus, unsigned char slave, bool rd)
{
/* configure port */
wait_rdy(bus);
IICCON(bus) = (0 << 8) | /* INT_EN = disabled */
(1 << 7) | /* ACK_GEN */
(0 << 6) | /* CLKSEL = SRCCLK/32 (TBC) */
#if CONFIG_CPU == S5L8702
(0 << 0); /* CK_REG */
#elif CONFIG_CPU == S5L8720
(1 << 0); /* CK_REG */
#endif
/* START */
int mode = rd ? 0x80 : 0xC0;
wait_rdy(bus);
IICSTAT(bus) = mode;
wait_rdy(bus);
IICDS(bus) = slave | rd;
wait_rdy(bus);
IICSTAT(bus) = mode | 0x30;
#if CONFIG_CPU == S5L8702
// XXX this seems needed when ECLK is used
wait_rdy(bus); // XXX: To solve the nano3g problem with ECLK,
// or you can put it in either of the two i2c_wait_io(),
// both work if you put this
// TODO: Try on classic, maybe it's not necessary
#endif
i2c_wait_io(bus);
/* check ACK */
if (IICSTAT(bus) & 1)
return 1;
return 0;
}
static void i2c_stop(int bus)
{
/* STOP */
wait_rdy(bus);
IICSTAT(bus) &= ~0x20;
wait_rdy(bus);
IICCON(bus) = 0x10;
i2c_wait_io(bus);
}
static int i2c_wr_internal(int bus, unsigned char slave,
int address, int len, const unsigned char *data)
{
int rc = 0;
if (i2c_start(bus, slave, false) == 0)
{
/* write address + data */
const unsigned char *ptr = data;
const unsigned char addr = address;
if (address >= 0) {
ptr = &addr;
len++;
}
while (len--) {
wait_rdy(bus);
IICDS(bus) = *ptr;
udelay(5);
wait_rdy(bus);
IICCON(bus) = IICCON(bus);
i2c_wait_io(bus);
/* check ACK */
if (IICSTAT(bus) & 1) {
rc = 2;
break;
}
if (ptr == &addr) ptr = data;
else ptr++;
}
}
else
rc = 1;
i2c_stop(bus);
return rc;
}
static int i2c_rd_internal(int bus, unsigned char slave, int len, unsigned char *data)
{
int rc = 0;
if (i2c_start(bus, slave, true) == 0)
{
while (len--) {
wait_rdy(bus);
IICCON(bus) &= ~(len ? 0 : 0x80); /* ACK or NAK */
i2c_wait_io(bus);
*data++ = IICDS(bus);
}
}
else
rc = 3;
i2c_stop(bus);
return rc;
}
int i2c_wr(int bus, unsigned char slave, int address, int len, const unsigned char *data)
{
i2c_on(bus);
int rc = i2c_wr_internal(bus, slave, address, len, data);
i2c_off(bus);
return rc;
}
int i2c_rd(int bus, unsigned char slave, int address, int len, unsigned char *data)
{
i2c_on(bus);
int rc = i2c_wr_internal(bus, slave, address, 0, NULL);
if (rc == 0)
rc = i2c_rd_internal(bus, slave, len, data);
i2c_off(bus);
return rc;
}
int i2c_write(int bus, unsigned char slave, int address, int len, const unsigned char *data)
{
int ret;
mutex_lock(&i2c_mtx[bus]);
ret = i2c_wr(bus, slave, address, len, data);
mutex_unlock(&i2c_mtx[bus]);
return ret;
}
int i2c_read(int bus, unsigned char slave, int address, int len, unsigned char *data)
{
int ret;
mutex_lock(&i2c_mtx[bus]);
ret = i2c_rd(bus, slave, address, len, data);
mutex_unlock(&i2c_mtx[bus]);
return ret;
}
void i2c_preinit(int bus)
{
#if CONFIG_CPU == S5L8702
if (bus == 0)
PCON3 = (PCON3 & ~0x00000ff0) | 0x00000220;
#if 0 /* TBC */
else if (bus == 1)
PCON6 = (PCON6 & ~0x0ff00000) | 0x02200000;
#endif
#elif CONFIG_CPU == S5L8720
if (bus == 0) {
PCON2 = (PCON2 & ~0xf0000000) | 0x20000000;
PCON3 = (PCON3 & ~0x0000000f) | 0x00000002;
}
#endif
i2c_on(bus);
wait_rdy(bus);
IICADD(bus) = 0x40; /* own slave address */
wait_rdy(bus);
IICUNK14(bus) = 1; /* SRCCLK = ECLK */
wait_rdy(bus);
IICUNK18(bus) = 0;
wait_rdy(bus);
IICSTAT(bus) = 0x80; /* master Rx mode, serial output off */
wait_rdy(bus);
IICCON(bus) = 0;
wait_rdy(bus);
IICSTA2(bus) = 0x3f00;
i2c_off(bus);
}
|