-
Notifications
You must be signed in to change notification settings - Fork 149
/
Copy pathi2c_generic.c
247 lines (189 loc) · 5.75 KB
/
i2c_generic.c
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
/*
*
* Copyright (c) 2009 by Stefan Riepenhausen <rhn@gmx.net>
* Copyright (c) 2012 by Nicolas Kaufmann <mail-brainhunter@nota-lan.de>
*
* 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 program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* For more information on the GPL, please go to:
* http://www.gnu.org/copyleft/gpl.html
*/
#include <avr/io.h>
#include <util/twi.h>
#include <util/delay.h>
#include "config.h"
#include "autoconf.h"
#include "core/debug.h"
#include "core/bit-macros.h"
#include "i2c_master.h"
#include "i2c_generic.h"
#ifdef DEBUG_I2C
#define DEBUGGI2C(fnc, msg...) debug_printf("I2C: %s: ", fnc); debug_printf(msg)
#else
#define DEBUGGI2C(fnc, msg...)
#endif
uint8_t
i2c_read_byte(const uint8_t chipaddress)
{
uint8_t ret = 0xff;
DEBUGGI2C("read_byte", "addr 0x%X (%d)\n", chipaddress, chipaddress);
/*select slave with chipaddress */
if (!i2c_master_select(chipaddress, TW_READ))
goto end;
/*read one byte */
if (i2c_master_transmit() != TW_MR_DATA_NACK)
goto end;
ret = TWDR;
end:
i2c_master_stop();
DEBUGGI2C("read_byte", "ret: 0x%X (%d)\n", ret, ret);
return ret;
}
uint8_t
i2c_read_byte_data(const uint8_t chipaddress, const uint8_t dataaddress)
{
uint8_t ret = 0xff;
DEBUGGI2C("read_byte_data", "addr 0x%X (%d) daddr 0x%X (%d)\n",
chipaddress, chipaddress, dataaddress, dataaddress);
/*select slave in write mode */
if (!i2c_master_select(chipaddress, TW_WRITE))
goto end;
/*send the dataaddress */
TWDR = dataaddress;
if (i2c_master_transmit_with_ack() != TW_MT_DATA_ACK)
goto end;
/* Do an repeated start condition */
if (i2c_master_start() != TW_REP_START)
goto end;
/*select the slave in read mode */
TWDR = (chipaddress << 1) | TW_READ;
if (i2c_master_transmit() != TW_MR_SLA_ACK)
goto end;
/*get one byte from the slave */
if (i2c_master_transmit() != TW_MR_DATA_NACK)
goto end;
ret = TWDR;
end:
i2c_master_stop();
DEBUGGI2C("read_byte_data", "ret: 0x%X (%d)\n", ret, ret);
return ret;
}
uint16_t
i2c_read_word_data(const uint8_t chipaddress, const uint8_t dataaddress)
{
uint8_t data[2];
uint16_t ret = 0xffff;
DEBUGGI2C("read_word_data", "addr 0x%X (%d) daddr 0x%X (%d)\n", chipaddress,
dataaddress);
/*select slave in write mode */
if (!i2c_master_select(chipaddress, TW_WRITE))
goto end;
/*send the dataaddress */
TWDR = dataaddress;
if (i2c_master_transmit_with_ack() != TW_MT_DATA_ACK)
goto end;
#ifdef I2C_GENERIC_DELAYS
_delay_ms(10); // for slow devices
#endif
/* Do an repeated start condition */
if (i2c_master_start() != TW_REP_START)
goto end;
/*select the slave in read mode */
TWDR = (chipaddress << 1) | TW_READ;
if (i2c_master_transmit() != TW_MR_SLA_ACK)
goto end;
#ifdef I2C_GENERIC_DELAYS
_delay_ms(10); // for slow devices
#endif
/*get the first byte from the slave */
if (i2c_master_transmit_with_ack() != TW_MR_DATA_ACK)
goto end;
data[0] = TWDR;
DEBUGGI2C("read_word_data", "data0: 0x%X (%d)\n", data[0], data[0]);
#ifdef I2C_GENERIC_DELAYS
_delay_ms(10); // for slow devices
#endif
/*get the second byte from the slave */
if (i2c_master_transmit() != TW_MR_DATA_NACK)
goto end;
data[1] = TWDR;
DEBUGGI2C("read_word_data", "data1: 0x%X (%d)\n", data[1], data[1]);
ret = data[0] << 8 | data[1];
end:
i2c_master_stop();
DEBUGGI2C("read_word_data", "ret: 0x%X (%d)\n", ret, ret);
return ret;
}
uint16_t
i2c_write_byte(const uint8_t chipaddress, const uint8_t data)
{
uint16_t ret = 0xffff;
DEBUGGI2C("write_byte", "addr 0x%X (%d) data: 0x%X (%d)\n",
chipaddress, chipaddress, data, data);
if (!i2c_master_select(chipaddress, TW_WRITE))
goto end;
TWDR = data;
if (i2c_master_transmit_with_ack() != TW_MT_DATA_ACK)
goto end;
ret = data;
end:
i2c_master_stop();
return ret;
}
uint16_t
i2c_write_byte_data(const uint8_t chipaddress, const uint8_t dataaddress,
const uint8_t data)
{
uint16_t ret = 0xffff;
DEBUGGI2C("write_byte_data",
"addr 0x%X (%d) daddr 0x%X (%d) data 0x%X (%d)\n", chipaddress,
chipaddress, dataaddress, dataaddress, data, data);
if (!i2c_master_select(chipaddress, TW_WRITE))
goto end;
TWDR = dataaddress;
if (i2c_master_transmit_with_ack() != TW_MT_DATA_ACK)
goto end;
TWDR = data;
if (i2c_master_transmit_with_ack() != TW_MT_DATA_ACK)
goto end;
ret = data;
end:
i2c_master_stop();
return ret;
}
uint16_t
i2c_write_word_data(const uint8_t chipaddress, const uint8_t dataaddress,
const uint16_t data)
{
uint16_t ret = 0xffff;
DEBUGGI2C("write_word_data",
"addr 0x%X (%d) daddr 0x%X (%d) data 0x%X (%d)\n", chipaddress,
chipaddress, dataaddress, dataaddress, data, data);
if (!i2c_master_select(chipaddress, TW_WRITE))
goto end;
TWDR = dataaddress;
if (i2c_master_transmit_with_ack() != TW_MT_DATA_ACK)
goto end;
TWDR = HI8(data);
if (i2c_master_transmit_with_ack() != TW_MT_DATA_ACK)
goto end;
TWDR = LO8(data);
if (i2c_master_transmit_with_ack() != TW_MT_DATA_ACK)
goto end;
ret = data;
end:
i2c_master_stop();
return ret;
}