aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/i2c_slave.c
blob: a25b6adb9bad30a890bfd80e66c8aeb9df69b76d (plain)
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
/*
 * USI I2C bus slave
 *
 * Copyright (c) 2016-2018 Michael Buesch <m@bues.ch>
 *
 * 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.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "i2c_slave.h"
#include "util.h"

#include <string.h>

#include <avr/io.h>
#include <avr/interrupt.h>


#define SDA_PORT		PORTB
#define SDA_PIN			PINB
#define SDA_DDR			DDRB
#define SDA_BIT			PB0

#define SCL_PORT		PORTB
#define SCL_PIN			PINB
#define SCL_DDR			DDRB
#define SCL_BIT			PB2


#ifndef I2CS_MAX_NR_SLAVES
# error "I2CS_MAX_NR_SLAVES is not defined"
#endif

#ifndef I2CS_EXPECTED_KHZ
# error "I2CS_EXPECTED_KHZ is not defined"
#endif


enum i2cs_state {
	I2CS_STATE_ADDR,	/* Handle received address */
	I2CS_STATE_PREP_SND,	/* Prepare sending of data */
	I2CS_STATE_PREP_RCV,	/* Prepare receiving of data */
	I2CS_STATE_SND,		/* Data was sent */
	I2CS_STATE_RCV,		/* Handle received data */
	I2CS_STATE_RCVPROC,	/* Process received data */
	I2CS_STATE_RCV_ACK,	/* Handle received ack after sent data */
};

#define I2CS_NO_ADDR		0xFFu
#define I2CS_NO_SLAVE		0xFFu

static enum i2cs_state _used i2cs_state;
static uint8_t _used i2cs_addrs[I2CS_MAX_NR_SLAVES];
static uint8_t _used i2cs_active_slave;
static uint8_t _used i2cs_rx_byte;
static bool i2cs_had_start;
static const struct i2c_slave_ops __flash _used *i2cs_ops[I2CS_MAX_NR_SLAVES];


#ifdef I2CS_CLKSTRETCH_WORKAROUND

/* Raspberry Pi I2C clock stretching bug workaround. */

static void clkstretch_timer_init(void)
{
	TCCR0B = 0u;

	TCNT0 = 0u;
	OCR0A = 0u;
	OCR0B = 0u;

	TIMSK &= (uint8_t)~((1u << OCIE0A) | (1u << OCIE0B) | (1u << TOIE0));
	TIFR = (1u << OCF0A) | (1u << OCF0B) | (1u << TOV0);

	/* Normal mode, prescaler 8. */
	build_assert(F_CPU == 16000000UL);
	GTCCR &= (uint8_t)(~(1u << PSR0) & 0xFFu);
	GTCCR &= (uint8_t)(~(1u << TSM) & 0xFFu);
	TCCR0A = (0u << COM0A1) | (0u << COM0A0) |
		 (0u << COM0B1) | (0u << COM0B0) |
		 (0u << WGM01) | (0u << WGM00);
	TCCR0B = (0u << FOC0A) | (0u << FOC0B) |
		 (0u << WGM02) |
		 (0u << CS02) | (1u << CS01) | (0u << CS00);
#define TCNT0_KHZ 2000u
}

/* Prepare the clock stretching workaround timer.
 * r31 is the only register allowed to be clobbered.
 * Everything else (including SREG) must be left untouched!
 */
#define CLKSTRETCH_TIMER_PREPARE() \
"	ldi	r31, %[_STRETCH_TIMER_PRELOAD]	\n" \
"	out	%[_TCNT0], r31			\n" \
"	ldi	r31, (1 << %[_TOV0])		\n" \
"	out	%[_TIFR], r31			\n"

/* Wait until we are in the safe range. */
#define CLKSTRETCH_TIMER_WAIT() \
"1:	in r31, %[_TIFR]			\n" \
"	sbrs r31, %[_TOV0]			\n" \
"	rjmp 1b					\n"

#else /* I2CS_CLKSTRETCH_WORKAROUND */

static void clkstretch_timer_init(void) { }
#define CLKSTRETCH_TIMER_PREPARE()	""
#define CLKSTRETCH_TIMER_WAIT()		""
#define TCNT0_KHZ			0u

#endif /* I2CS_CLKSTRETCH_WORKAROUND */

#define USICR_BASE	(		\
		(1u << USISIE) |	\
		(0u << USIOIE) |	\
		(1u << USIWM1) |	\
		(0u << USIWM0) |	\
		(1u << USICS1) |	\
		(0u << USICS0) |	\
		(0u << USICLK) |	\
		(0u << USITC)		\
	)

#define USISR_BASE	(		\
		(0u << USISIF) |	\
		(1u << USIOIF) |	\
		(1u << USIPF) |		\
		(0u << USICNT2) |	\
		(0u << USICNT1) |	\
		(0u << USICNT0)		\
	)

ISR(USI_START_vect)
{
	memory_barrier();

	SDA_DDR &= (uint8_t)~(1u << SDA_BIT);

	/* Wait for SCL low (or stop condition). */
	while ((SCL_PIN & (1u << SCL_BIT)) &&
	       !((SDA_PIN & (1u << SDA_BIT)))) {
		/* Wait.
		 * We depend on the WDT to restart the MCU, if this loop never
		 * terminates due to external issues.
		 */
	}

	/* Check whether we do not have a stop condition. */
	if (!(SDA_PIN & (1u << SDA_BIT))) {
		/* Enable counter overflow interrupt. */
		USICR = USICR_BASE | (1u << USIOIE) | (0u << USIWM0);
	}
	USISR = USISR_BASE | (1u << USISIF) | (1u << USICNT0);

	i2cs_state = I2CS_STATE_ADDR;
	i2cs_active_slave = I2CS_NO_SLAVE;
	i2cs_had_start = true;

	memory_barrier();
}

static uint8_t _used slaveop_transmit(void)
{
	const struct i2c_slave_ops __flash *ops;
	uint8_t data;

	ops = i2cs_ops[i2cs_active_slave];
	data = ops->transmit(i2cs_had_start);
	i2cs_had_start = false;

	return data;
}

static uint8_t _used slaveop_receive(uint8_t data)
{
	const struct i2c_slave_ops __flash *ops;
	bool continue_rx;

	ops = i2cs_ops[i2cs_active_slave];
	continue_rx = ops->receive(i2cs_had_start, data);
	i2cs_had_start = false;

	return continue_rx ? 1u : 0u;
}

/* Save all caller-saved regs, except r0 and SREG. */
#define SAVE_CALLER_REGS()		\
	"	push r18	\n"	\
	"	push r19	\n"	\
	"	push r20	\n"	\
	"	push r21	\n"	\
	"	push r22	\n"	\
	"	push r23	\n"	\
	"	push r24	\n"	\
	"	push r25	\n"	\
	"	push r26	\n"	\
	"	push r27	\n"	\
	"	push r30	\n"	\
	"	push r31	\n"

/* Restore all caller-saved regs, except r0 and SREG. */
#define RESTORE_CALLER_REGS()		\
	"	pop r31		\n"	\
	"	pop r30		\n"	\
	"	pop r27		\n"	\
	"	pop r26		\n"	\
	"	pop r25		\n"	\
	"	pop r24		\n"	\
	"	pop r23		\n"	\
	"	pop r22		\n"	\
	"	pop r21		\n"	\
	"	pop r20		\n"	\
	"	pop r19		\n"	\
	"	pop r18		\n"

#define IN_CONSTR_BASE							\
	[_SREG]				"I" (_SFR_IO_ADDR(SREG)),	\
	[_TCNT0]			"I" (_SFR_IO_ADDR(TCNT0)),	\
	[_TIFR]				"I" (_SFR_IO_ADDR(TIFR)),	\
	[_TOV0]				"M" (TOV0),			\
	[_STRETCH_TIMER_PRELOAD]	"M" (256u - ((TCNT0_KHZ / I2CS_EXPECTED_KHZ) + 1u)), \
	[_USIDR]			"I" (_SFR_IO_ADDR(USIDR)),	\
	[_USICR]			"I" (_SFR_IO_ADDR(USICR)),	\
	[_USISR]			"I" (_SFR_IO_ADDR(USISR)),	\
	[_SDA_DDR]			"I" (_SFR_IO_ADDR(SDA_DDR)),	\
	[_SDA_BIT]			"M" (SDA_BIT),			\
	[_SCL_PIN]			"I" (_SFR_IO_ADDR(SCL_PIN)),	\
	[_SCL_BIT]			"M" (SCL_BIT),			\
	[_STATE_ADDR]			"M" (I2CS_STATE_ADDR),		\
	[_STATE_PREP_SND]		"M" (I2CS_STATE_PREP_SND),	\
	[_STATE_PREP_RCV]		"M" (I2CS_STATE_PREP_RCV),	\
	[_STATE_SND]			"M" (I2CS_STATE_SND),		\
	[_STATE_RCV]			"M" (I2CS_STATE_RCV),		\
	[_STATE_RCVPROC]		"M" (I2CS_STATE_RCVPROC),	\
	[_STATE_RCV_ACK]		"M" (I2CS_STATE_RCV_ACK),	\
	[_I2CS_NO_SLAVE]		"M" (I2CS_NO_SLAVE)

static void _naked _used switch_to_start_condition_state(void)
{
	__asm__ __volatile__(
"	; Set USI to wait for start condition.		\n"
"	ldi r31, %[_cr_scond]				\n"
"	out %[_USICR], r31				\n"
"	ldi r31, %[_sr_scond]				\n"
"	out %[_USISR], r31				\n"
"							\n"
"	; Reset active slave index.			\n"
"	ldi r31, %[_I2CS_NO_SLAVE]			\n"
"	sts i2cs_active_slave, r31			\n"
"							\n"
"	rjmp isr_ovf_ret				\n"
	: /* outputs */
	: /* inputs */
		IN_CONSTR_BASE,
		[_cr_scond]	"M" (USICR_BASE | (0u << USIOIE) | (0u << USIWM0)),
		[_sr_scond]	"M" (USISR_BASE | (0u << USISIF) | (0u << USICNT0))
	: /* clobbers */
		"memory"
	);
	unreachable();
}

#define CHECK_ONE_ADDR(index) \
"	lds r31, i2cs_addrs + " tostr(index) "		\n" \
"	cp r31, __tmp_reg__				\n" \
"	ldi r31, " tostr(index) "			\n" \
"	breq handle_addr				\n" \

static void _naked _used handle_state_addr(void)
{
	__asm__ __volatile__(
"	; Read the received address.			\n"
"	in r30, %[_USIDR]				\n"
"							\n"
"	; Check if the address is ours.			\n"
"	mov __tmp_reg__, r30				\n"
"	lsr __tmp_reg__					\n"
#if I2CS_MAX_NR_SLAVES >= 1
	CHECK_ONE_ADDR(0)
#endif
#if I2CS_MAX_NR_SLAVES >= 2
	CHECK_ONE_ADDR(1)
#endif
#if I2CS_MAX_NR_SLAVES >= 3
	CHECK_ONE_ADDR(2)
#endif
#if I2CS_MAX_NR_SLAVES >= 4
# error "I2CS_MAX_NR_SLAVES is too big"
#endif
"							\n"
"	; Unknown address.				\n"
"	rjmp switch_to_start_condition_state		\n"
"							\n"
"handle_addr:						\n"
"	; Save the slave index.				\n"
"	sts i2cs_active_slave, r31			\n"
"							\n"
"	; Wait for SCK low				\n"
"1:	sbic %[_SCL_PIN], %[_SCL_BIT]			\n"
"	rjmp 1b						\n"
"							\n"
"	; Set SDA low for ACK.				\n"
"	out %[_USIDR], __zero_reg__			\n"
"	sbi %[_SDA_DDR], %[_SDA_BIT]			\n"
"							\n"
"	; Set USI to send ACK.				\n"
"	ldi r31, %[_cr_ack]				\n"
"	out %[_USICR], r31				\n"
"	ldi r31, %[_sr_ack]				\n"
"	out %[_USISR], r31				\n"
"							\n"
"	; Set the next state.				\n"
"	ldi r31, %[_STATE_PREP_SND]			\n"
"	sbrs r30, 0		; Check R/W bit		\n"
"	ldi r31, %[_STATE_PREP_RCV]			\n"
"	sts i2cs_state, r31				\n"
"							\n"
"	rjmp isr_ovf_ret				\n"
	: /* outputs */
	: /* inputs */
		IN_CONSTR_BASE,
		[_cr_ack]	"M" (USICR_BASE | (1u << USIOIE) | (1u << USIWM0)),
		[_sr_ack]	"M" (USISR_BASE | (0u << USISIF) | (14u << USICNT0))
	: /* clobbers */
		"memory"
	);
	unreachable();
}

static void _naked _used handle_state_prep_snd(void)
{
	__asm__ __volatile__(
	SAVE_CALLER_REGS()
"							\n"
"	; Call the slave op to get the next TX byte.	\n"
"	rcall slaveop_transmit				\n"
"							\n"
"	; Write the TX byte to USI.			\n"
"	out %[_USIDR], r24				\n"
"							\n"
"	; Enable SDA driver.				\n"
"	sbi %[_SDA_DDR], %[_SDA_BIT]			\n"
"							\n"
	RESTORE_CALLER_REGS()
"							\n"
	CLKSTRETCH_TIMER_WAIT()
"							\n"
"	; Set USI to send data				\n"
"	ldi r31, %[_cr_send]				\n"
"	out %[_USICR], r31				\n"
"	ldi r31, %[_sr_send]				\n"
"	out %[_USISR], r31				\n"
"	; Write counter again to make sure it's		\n"
"	; written after the pos. SCL edge.		\n"
"	out %[_USISR], r31				\n"
"							\n"
"	; Set the next state				\n"
"	ldi r31, %[_STATE_SND]				\n"
"	sts i2cs_state, r31				\n"
"							\n"
"	rjmp isr_ovf_ret				\n"
	: /* outputs */
	: /* inputs */
		IN_CONSTR_BASE,
		[_cr_send]	"M" (USICR_BASE | (1u << USIOIE) | (0u << USIWM0)),
		[_sr_send]	"M" (USISR_BASE | (0u << USISIF) | (2u << USICNT0))
	: /* clobbers */
		"memory"
	);
	unreachable();
}

static void _naked _used handle_state_prep_rcv(void)
{
	__asm__ __volatile__(
"	; Stop pulling SDA.				\n"
"	cbi %[_SDA_DDR], %[_SDA_BIT]			\n"
"							\n"
	CLKSTRETCH_TIMER_WAIT()
"							\n"
"	; Set USI to read data				\n"
"	ldi r31, %[_cr_rddata]				\n"
"	out %[_USICR], r31				\n"
"	ldi r31, %[_sr_rddata]				\n"
"	out %[_USISR], r31				\n"
"	; Write counter again to make sure it's		\n"
"	; written after the pos. SCL edge.		\n"
"	out %[_USISR], r31				\n"
"							\n"
"	; Set the next state				\n"
"	ldi r31, %[_STATE_RCV]				\n"
"	sts i2cs_state, r31				\n"
"							\n"
"	rjmp isr_ovf_ret				\n"
	: /* outputs */
	: /* inputs */
		IN_CONSTR_BASE,
		[_cr_rddata]	"M" (USICR_BASE | (1u << USIOIE) | (0u << USIWM0)),
		[_sr_rddata]	"M" (USISR_BASE | (0u << USISIF) | (2u << USICNT0))
	: /* clobbers */
		"memory"
	);
	unreachable();
}

static void _naked _used handle_state_rcv(void)
{
	__asm__ __volatile__(
"	; Get the received data				\n"
"	in r30, %[_USIDR]				\n"
"							\n"
"	; Wait for SCK low				\n"
"1:	sbic %[_SCL_PIN], %[_SCL_BIT]			\n"
"	rjmp 1b						\n"
"							\n"
"	; Store the received byte for later processing.	\n"
"	; Can't process it now due to possible		\n"
"	; Raspi SCL stretch bug.			\n"
"	sts i2cs_rx_byte, r30				\n"
"							\n"
"	; Set SDA low for ACK.				\n"
"	out %[_USIDR], __zero_reg__			\n"
"	sbi %[_SDA_DDR], %[_SDA_BIT]			\n"
"							\n"
"	; Set USI to send ack.				\n"
"	ldi r31, %[_cr_ack]				\n"
"	out %[_USICR], r31				\n"
"	ldi r31, %[_sr_ack]				\n"
"	out %[_USISR], r31				\n"
"							\n"
"	; Set the next state				\n"
"	ldi r31, %[_STATE_RCVPROC]			\n"
"	sts i2cs_state, r31				\n"
"							\n"
"	rjmp isr_ovf_ret				\n"
	: /* outputs */
	: /* inputs */
		IN_CONSTR_BASE,
		[_cr_ack]	"M" (USICR_BASE | (1u << USIOIE) | (1u << USIWM0)),
		[_sr_ack]	"M" (USISR_BASE | (0u << USISIF) | (14u << USICNT0))
	: /* clobbers */
		"memory"
	);
	unreachable();
}

static void _naked _used handle_state_rcvproc(void)
{
	__asm__ __volatile__(
	SAVE_CALLER_REGS()
"							\n"
"	; Call the slave op to receive the byte.	\n"
"	lds r24, i2cs_rx_byte				\n"
"	rcall slaveop_receive				\n"
"	mov __tmp_reg__, r24				\n"
"							\n"
	RESTORE_CALLER_REGS()
"							\n"
"	; If 'continue-rx' is set, prepare next RX	\n"
"	sbrc __tmp_reg__, 0				\n"
"	rjmp handle_state_prep_rcv			\n"
"							\n"
"	; We expect a new address transmission.		\n"
"							\n"
"	; Stop pulling SDA.				\n"
"	cbi %[_SDA_DDR], %[_SDA_BIT]			\n"
"							\n"
	CLKSTRETCH_TIMER_WAIT()
"							\n"
"	; Set USI to read addr				\n"
"	ldi r31, %[_cr_addrread]			\n"
"	out %[_USICR], r31				\n"
"	ldi r31, %[_sr_addrread]			\n"
"	out %[_USISR], r31				\n"
"	; Write counter again to make sure it's		\n"
"	; written after the pos. SCL edge.		\n"
"	out %[_USISR], r31				\n"
"							\n"
"	; Set the next state				\n"
"	ldi r31, %[_STATE_ADDR]				\n"
"	sts i2cs_state, r31				\n"
"							\n"
"	rjmp isr_ovf_ret				\n"
	: /* outputs */
	: /* inputs */
		IN_CONSTR_BASE,
		[_cr_addrread]	"M" (USICR_BASE | (1u << USIOIE) | (0u << USIWM0)),
#if 0
		[_sr_addrread]	"M" (USISR_BASE | (0u << USISIF) | (2u << USICNT0))
#else
		[_sr_addrread]	"M" (USISR_BASE | (0u << USISIF) | (1u << USICNT0))
#endif
	: /* clobbers */
		"memory"
	);
	unreachable();
}

static void _naked _used handle_state_snd(void)
{
	__asm__ __volatile__(
"	; Release SDA.					\n"
"	cbi %[_SDA_DDR], %[_SDA_BIT]			\n"
"							\n"
"	; Wait for SCK low				\n"
"1:	sbic %[_SCL_PIN], %[_SCL_BIT]			\n"
"	rjmp 1b						\n"
"							\n"
"	; Set USI to read ack				\n"
"	ldi r31, %[_cr_rdack]				\n"
"	out %[_USICR], r31				\n"
"	ldi r31, %[_sr_rdack]				\n"
"	out %[_USISR], r31				\n"
"							\n"
"	; Set the next state				\n"
"	ldi r31, %[_STATE_RCV_ACK]			\n"
"	sts i2cs_state, r31				\n"
"							\n"
"	rjmp isr_ovf_ret				\n"
	: /* outputs */
	: /* inputs */
		IN_CONSTR_BASE,
		[_cr_rdack]	"M" (USICR_BASE | (1u << USIOIE) | (1u << USIWM0)),
		[_sr_rdack]	"M" (USISR_BASE | (0u << USISIF) | (14u << USICNT0))
	: /* clobbers */
		"memory"
	);
	unreachable();
}

static void _naked _used handle_state_rcv_ack(void)
{
	__asm__ __volatile__(
"	; Read the state of SDA to get ACK/NACK		\n"
"	in r30, %[_USIDR]				\n"
"							\n"
"	; Check whether we have ACK or NACK		\n"
"	andi r30, 0x01					\n"
"	brne chk_reply_got_nack				\n"
"							\n"
"	; We got an ACK.				\n"
"	; Just directly go to send.			\n"
"	rjmp handle_state_prep_snd			\n"
"							\n"
"chk_reply_got_nack:					\n"
"	rjmp switch_to_start_condition_state		\n"
	: /* outputs */
	: /* inputs */
		IN_CONSTR_BASE
	: /* clobbers */
		"memory"
	);
	unreachable();
}

static uint16_t _used state_handlers[] = {
	[I2CS_STATE_ADDR]	= (uint16_t)&handle_state_addr,
	[I2CS_STATE_PREP_SND]	= (uint16_t)&handle_state_prep_snd,
	[I2CS_STATE_PREP_RCV]	= (uint16_t)&handle_state_prep_rcv,
	[I2CS_STATE_SND]	= (uint16_t)&handle_state_snd,
	[I2CS_STATE_RCV]	= (uint16_t)&handle_state_rcv,
	[I2CS_STATE_RCVPROC]	= (uint16_t)&handle_state_rcvproc,
	[I2CS_STATE_RCV_ACK]	= (uint16_t)&handle_state_rcv_ack,
};

ISR(USI_OVF_vect, ISR_NAKED)
{
	__asm__ __volatile__(
"	push r31					\n"
CLKSTRETCH_TIMER_PREPARE()
"	in r31, %[_SREG]				\n"
"	push r31					\n"
"	push __tmp_reg__				\n"
"	push __zero_reg__				\n"
"	push r30					\n"
"	clr __zero_reg__				\n"
"							\n"
"	; Branch to the current state handler.		\n"
"	ldi r30, lo8(state_handlers)			\n"
"	ldi r31, hi8(state_handlers)			\n"
"	lds __tmp_reg__, i2cs_state			\n"
"	lsl __tmp_reg__					\n"
"	add r30, __tmp_reg__				\n"
"	adc r31, __zero_reg__				\n"
"	ld __tmp_reg__, Z+				\n"
"	ld r31, Z					\n"
"	mov r30, __tmp_reg__				\n"
"	ijmp						\n"
"							\n"
"isr_ovf_ret:						\n"
"	pop r30						\n"
"	pop __zero_reg__				\n"
"	pop __tmp_reg__					\n"
"	pop r31						\n"
"	out %[_SREG], r31				\n"
"	pop r31						\n"
"	reti						\n"
	: /* outputs */
	: /* inputs */
		IN_CONSTR_BASE
	: /* clobbers */
		"memory"
	);
	unreachable();
}

void i2cs_add_slave(uint8_t addr, const struct i2c_slave_ops __flash *ops)
{
	uint8_t i;

	for (i = 0u; i < ARRAY_SIZE(i2cs_addrs); i++) {
		if (i2cs_addrs[i] == I2CS_NO_ADDR) {
			i2cs_addrs[i] = addr;
			i2cs_ops[i] = ops;
			break;
		}
	}
}

void i2cs_init(void)
{
	i2cs_state = I2CS_STATE_ADDR;
	i2cs_active_slave = I2CS_NO_SLAVE;
	i2cs_had_start = false;
	memset(i2cs_addrs, I2CS_NO_ADDR, sizeof(i2cs_addrs));

	clkstretch_timer_init();

	/* SDA */
	SDA_PORT |= (1u << SDA_BIT);
	SDA_DDR &= (uint8_t)~(1u << SDA_BIT);

	/* SCL */
	SCL_PORT |= (1u << SCL_BIT);
	SCL_DDR |= (1u << SCL_BIT);

	/* Initialize USI in TWI slave mode. */
	USICR = USICR_BASE | (0u << USIOIE) | (0u << USIWM0);
	USISR = USISR_BASE | (1u << USISIF) | (0u << USICNT0);
}
bues.ch cgit interface