-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathi2c.py
244 lines (220 loc) · 5.7 KB
/
i2c.py
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
#-----------------------------------------------------------------------------
"""
Generic I2C Bit-Bang Driver
"""
#-----------------------------------------------------------------------------
import util
#-----------------------------------------------------------------------------
# I2C Exceptions
class Error(Exception):
"""i2c errors"""
pass
_I2C_ERR_BUS = 'bus error'
_I2C_ERR_ADR = 'no response'
_I2C_ERR_NAK = 'missing ack'
_I2C_ERR_SLV = 'no slave data'
#-----------------------------------------------------------------------------
_help_read = (
('<adr> [n]', 'device address (hex)'),
('', 'n bytes to read (hex) - default is 1'),
)
_help_write = (
('<adr> <bytes>', 'device address (hex)'),
('', 'bytes to write (hex)'),
)
#-----------------------------------------------------------------------------
class i2c(object):
"""Generic I2C Bit-Bang Driver"""
def __init__(self, io):
self.io = io
self.menu = (
('init', self.io.cmd_init),
('rd', self.cmd_rd, _help_read),
('scan', self.cmd_scan),
('wr', self.cmd_wr, _help_write),
)
def start(self):
"""
Create start condition- SDA goes low while SCL is high.
On Exit- SDA and SCL are held low.
"""
self.io.scl_rel()
self.io.sda_rel()
# check that scl and sda are both high (no bus contention)
if (not self.io.sda_rd()) or (not self.io.scl_rd()):
raise Error(_I2C_ERR_BUS)
self.io.sda_lo()
self.io.scl_lo()
def stop(self):
"""
Create stop condition- SDA goes high while SCL is high.
On Exit- SDA and SCL are released.
"""
self.io.scl_lo()
self.io.sda_lo()
self.io.scl_rel()
self.io.sda_rel()
def clock(self):
"""
Clock SCL and read SDA at clock high.
On Entry- SCL is held low.
On Exit- SCL is held low, SDA =0/1 is returned.
"""
self.io.scl_rel()
# wait for any slave clock stretching
delay = 4
while (not self.io.scl_rd()) and (delay > 0):
delay -= 1
if delay == 0:
self.stop()
raise Error(_I2C_ERR_SLV)
val = self.io.sda_rd()
self.io.scl_lo()
return val
def wr_byte(self, val):
"""
Write a byte of data to the slave.
On Entry- SCL is held low.
On Exit- SDA is released, SCL is held low.
"""
mask = 0x80
while mask != 0:
if val & mask:
self.io.sda_rel()
else:
self.io.sda_lo()
self.clock()
mask >>= 1
self.io.sda_rel()
def rd_byte(self):
"""
Read a byte from a slave.
On Entry- SCL is held low.
On Exit- SDA is released, SCL is held low
"""
val = 0
self.io.sda_rel()
for _ in range(8):
val <<= 1
val |= self.clock()
return val
def wr_ack(self):
"""
Send an ack to the slave.
"""
self.io.sda_lo()
self.clock()
self.io.sda_rel()
def rd_ack(self):
"""
Clock in the SDA level from the slave.
Return: False = no ack, True = ack
"""
self.io.sda_rel()
return not self.clock()
def rd(self, adr, n):
"""
Read len bytes from device adr
"""
# start a read cycle
self.start()
self.wr_byte((adr << 1) | 1)
if not self.rd_ack():
self.stop()
raise Error(_I2C_ERR_ADR)
# read data
buf = []
for i in range(n):
buf.append(self.rd_byte())
# The last byte from the slave is not acked
if i < (n - 1):
self.wr_ack()
self.stop()
return buf
def wr(self, adr, buf):
"""
Write a buffer of bytes to device adr
"""
# start a write cycle
self.start()
self.wr_byte((adr << 1) | 0)
if not self.rd_ack():
self.stop()
raise Error(_I2C_ERR_ADR)
# write data
for c in buf:
self.wr_byte(c)
if not self.rd_ack():
# no ack from slave
self.stop()
raise Error(_I2C_ERR_NAK)
self.stop()
return True
@staticmethod
def adr_args(ui, args):
"""validate an i2c address argument"""
adr = util.int_arg(ui, args[0], (0, 127), 16)
if adr is None:
return
return adr
def cmd_rd(self, ui, args):
"""read bytes from a device"""
if util.wrong_argc(ui, args, (1, 2)):
return
adr = self.adr_args(ui, args)
if adr is None:
return
n = 1
if len(args) == 2:
n = util.int_arg(ui, args[1], (1, 256), 16)
if n is None:
return
try:
self.io.cmd_init(ui, None)
buf = self.rd(adr, n)
plural = ('', 's')[len(buf) > 1]
msg = '%s (%d byte%s)' % (' '.join(['%02x' % val for val in buf]), len(buf), plural)
except Error as e:
msg = e
ui.put('0x%02x: %s\n' % (adr, msg))
def cmd_wr(self, ui, args):
"""write bytes to a device"""
if len(args) < 2:
ui.put(util.bad_argc)
return
adr = self.adr_args(ui, args)
if adr is None:
return
buf = []
for arg in args[1:]:
val = util.int_arg(ui, arg, (0, 255), 16)
if val is None:
return
buf.append(val)
try:
self.io.cmd_init(ui, None)
self.wr(adr, buf)
plural = ('', 's')[len(buf) > 1]
msg = '%s (%d byte%s)' % (' '.join(['%02x' % val for val in buf]), len(buf), plural)
except Error as e:
msg = e
ui.put('0x%02x: %s\n' % (adr, msg))
def cmd_scan(self, ui, args):
"""scan for i2c devices"""
self.io.cmd_init(ui, None)
found = []
for adr in range(128):
if adr != 0 and adr % 32 == 0:
ui.put('\n')
try:
self.rd(adr, 1)
found.append(adr)
ui.put('X')
except Error as e:
ui.put('.')
ui.flush()
if found:
ui.put('\ndevices at: %s\n' % ' '.join(['0x%02x' % adr for adr in found]))
else:
ui.put('\nno devices found\n')
#-----------------------------------------------------------------------------