swap names so v3.0 is the default TeleDongle version to turn on
[fw/altos] / src / stm / ao_i2c_stm.c
1 /*
2  * Copyright © 2012 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include <ao.h>
19
20 struct ao_i2c_stm_info {
21         uint8_t tx_dma_index;
22         uint8_t rx_dma_index;
23         struct stm_i2c  *stm_i2c;
24 };
25
26 #define I2C_FAST        1
27
28 #define I2C_TIMEOUT     100
29
30 #define I2C_IDLE        0
31 #define I2C_RUNNING     1
32 #define I2C_ERROR       2
33
34 static uint8_t  ao_i2c_state[STM_NUM_I2C];
35 static uint16_t ao_i2c_addr[STM_NUM_I2C];
36 uint8_t         ao_i2c_mutex[STM_NUM_I2C];
37
38 # define I2C_HIGH_SLOW  5000    /* ns, 100kHz clock */
39 #ifdef TELEMEGA
40 # define I2C_HIGH_FAST  2000    /* ns, 167kHz clock */
41 #else
42 # define I2C_HIGH_FAST  1000    /* ns, 333kHz clock */
43 #endif
44
45 # define I2C_RISE_SLOW  500     /* ns */
46 # define I2C_RISE_FAST  100     /* ns */
47
48 /* Clock period in ns */
49 #define CYCLES(period)  (((period) * (AO_PCLK1 / 1000)) / 1000000)
50
51 #define max(a,b)        ((a) > (b) ? (a) : (b))
52 #define I2C_CCR_HIGH_SLOW       max(4,CYCLES(I2C_HIGH_SLOW))
53 #define I2C_CCR_HIGH_FAST       max(4,CYCLES(I2C_HIGH_FAST))
54 #define I2C_TRISE_SLOW          (CYCLES(I2C_RISE_SLOW) + 1)
55 #define I2C_TRISE_FAST          (CYCLES(I2C_RISE_FAST) + 1)
56
57 #if I2C_FAST
58 #define I2C_TRISE       I2C_TRISE_FAST
59 #define I2C_CCR_HIGH    I2C_CCR_HIGH_FAST
60 #else
61 #define I2C_TRISE       I2C_TRISE_SLOW
62 #define I2C_CCR_HIGH    I2C_CCR_HIGH_SLOW
63 #endif
64
65 #if AO_PCLK1 == 2000000
66 # define AO_STM_I2C_CR2_FREQ    STM_I2C_CR2_FREQ_2_MHZ
67 #endif
68 #if AO_PCLK1 == 4000000
69 #  define AO_STM_I2C_CR2_FREQ   STM_I2C_CR2_FREQ_4_MHZ
70 #endif
71 #if AO_PCLK1 == 8000000
72 # define AO_STM_I2C_CR2_FREQ    STM_I2C_CR2_FREQ_8_MHZ
73 #endif
74 #if AO_PCLK1 == 16000000
75 # define AO_STM_I2C_CR2_FREQ    STM_I2C_CR2_FREQ_16_MHZ
76 #endif
77 #if AO_PCLK1 == 32000000
78 # define AO_STM_I2C_CR2_FREQ    STM_I2C_CR2_FREQ_32_MHZ
79 #endif
80
81 #define AO_STM_I2C_CR1 ((0 << STM_I2C_CR1_SWRST) |      \
82                         (0 << STM_I2C_CR1_ALERT) |      \
83                         (0 << STM_I2C_CR1_PEC) |        \
84                         (0 << STM_I2C_CR1_POS) |        \
85                         (0 << STM_I2C_CR1_ACK) |        \
86                         (0 << STM_I2C_CR1_STOP) |       \
87                         (0 << STM_I2C_CR1_START) |      \
88                         (0 << STM_I2C_CR1_NOSTRETCH) |  \
89                         (0 << STM_I2C_CR1_ENGC) |       \
90                         (0 << STM_I2C_CR1_ENPEC) |      \
91                         (0 << STM_I2C_CR1_ENARP) |      \
92                         (0 << STM_I2C_CR1_SMBTYPE) |    \
93                         (0 << STM_I2C_CR1_SMBUS) |      \
94                         (1 << STM_I2C_CR1_PE))
95
96 #define AO_STM_I2C_CR2  ((0 << STM_I2C_CR2_LAST) |                      \
97                          (0 << STM_I2C_CR2_DMAEN) |                     \
98                          (0 << STM_I2C_CR2_ITBUFEN) |                   \
99                          (0 << STM_I2C_CR2_ITEVTEN) |                   \
100                          (0 << STM_I2C_CR2_ITERREN) |                   \
101                          (AO_STM_I2C_CR2_FREQ << STM_I2C_CR2_FREQ))
102
103 static const struct ao_i2c_stm_info     ao_i2c_stm_info[STM_NUM_I2C] = {
104         {
105                 .tx_dma_index = STM_DMA_INDEX(STM_DMA_CHANNEL_I2C1_TX),
106                 .rx_dma_index = STM_DMA_INDEX(STM_DMA_CHANNEL_I2C1_RX),
107                 .stm_i2c = &stm_i2c1
108         },
109         {
110                 .tx_dma_index = STM_DMA_INDEX(STM_DMA_CHANNEL_I2C2_TX),
111                 .rx_dma_index = STM_DMA_INDEX(STM_DMA_CHANNEL_I2C2_RX),
112                 .stm_i2c = &stm_i2c2
113         },
114 };
115
116 static uint8_t  *ao_i2c_recv_data[STM_NUM_I2C];
117 static uint16_t ao_i2c_recv_len[STM_NUM_I2C];
118 static uint16_t ev_count;
119
120 static void
121 ao_i2c_ev_isr(uint8_t index)
122 {
123         struct stm_i2c  *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
124         uint32_t        sr1;
125
126         ++ev_count;
127         sr1 = stm_i2c->sr1;
128         if (sr1 & (1 << STM_I2C_SR1_SB))
129                 stm_i2c->dr = ao_i2c_addr[index];
130         if (sr1 & (1 << STM_I2C_SR1_ADDR)) {
131                 stm_i2c->cr2 &= ~(1 << STM_I2C_CR2_ITEVTEN);
132                 ao_i2c_state[index] = I2C_RUNNING;
133                 ao_wakeup(&ao_i2c_state[index]);
134         }
135         if (sr1 & (1 << STM_I2C_SR1_BTF)) {
136                 stm_i2c->cr2 &= ~(1 << STM_I2C_CR2_ITEVTEN);
137                 ao_wakeup(&ao_i2c_state[index]);
138         }
139         if (sr1 & (1 << STM_I2C_SR1_RXNE)) {
140                 if (ao_i2c_recv_len[index]) {                   
141                         *(ao_i2c_recv_data[index]++) = stm_i2c->dr;
142                         if (!--ao_i2c_recv_len[index])
143                                 ao_wakeup(&ao_i2c_recv_len[index]);
144                 }
145         }
146 }
147
148 void stm_i2c1_ev_isr(void) { ao_i2c_ev_isr(0); }
149 void stm_i2c2_ev_isr(void) { ao_i2c_ev_isr(1); }
150
151 static void
152 ao_i2c_er_isr(uint8_t index)
153 {
154         struct stm_i2c  *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
155         uint32_t        sr1;
156
157         sr1 = stm_i2c->sr1;
158         if (sr1 & (1 << STM_I2C_SR1_AF)) {
159                 ao_i2c_state[index] = I2C_ERROR;
160                 stm_i2c->sr1 = sr1 & ~(1 << STM_I2C_SR1_AF);
161                 ao_wakeup(&ao_i2c_state[index]);
162         }
163 }
164
165 void stm_i2c1_er_isr(void) { ao_i2c_er_isr(0); }
166 void stm_i2c2_er_isr(void) { ao_i2c_er_isr(1); }
167
168 void
169 ao_i2c_get(uint8_t index)
170 {
171         struct stm_i2c  *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
172         ao_mutex_get(&ao_i2c_mutex[index]);
173
174         stm_i2c->sr1 = 0;
175         stm_i2c->sr2 = 0;
176 }
177
178 void
179 ao_i2c_put(uint8_t index)
180 {
181         ao_mutex_put(&ao_i2c_mutex[index]);
182 }
183
184 uint8_t
185 ao_i2c_start(uint8_t index, uint16_t addr)
186 {
187         struct stm_i2c  *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
188         int             t;
189
190         ao_i2c_state[index] = I2C_IDLE;
191         ao_i2c_addr[index] = addr;
192         stm_i2c->cr2 = AO_STM_I2C_CR2;
193         stm_i2c->cr1 = AO_STM_I2C_CR1 | (1 << STM_I2C_CR1_START);
194         for (t = 0; t < I2C_TIMEOUT; t++) {
195                 if (!(stm_i2c->cr1 & (1 << STM_I2C_CR1_START)))
196                         break;
197         }
198         ao_alarm(AO_MS_TO_TICKS(250));
199         ao_arch_block_interrupts();
200         stm_i2c->cr2 = AO_STM_I2C_CR2 | (1 << STM_I2C_CR2_ITEVTEN) | (1 << STM_I2C_CR2_ITERREN);
201         ao_i2c_ev_isr(index);
202         while (ao_i2c_state[index] == I2C_IDLE)
203                 if (ao_sleep(&ao_i2c_state[index]))
204                         break;
205         ao_arch_release_interrupts();
206         ao_clear_alarm();
207         return ao_i2c_state[index] == I2C_RUNNING;
208 }
209
210 static void
211 ao_i2c_wait_stop(uint8_t index)
212 {
213         struct stm_i2c  *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
214         int     t;
215
216         for (t = 0; t < I2C_TIMEOUT; t++) {
217                 if (!(stm_i2c->cr1 & (1 << STM_I2C_CR1_STOP)))
218                         break;
219                 ao_yield();
220         }
221         ao_i2c_state[index] = I2C_IDLE;
222 }
223
224 static void
225 ao_i2c_wait_addr(uint8_t index)
226 {
227         struct stm_i2c  *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
228         int     t;
229
230         for (t = 0; t < I2C_TIMEOUT; t++)
231                 if (!(stm_i2c->sr1 & (1 << STM_I2C_SR1_ADDR)))
232                         break;
233         if (t)
234                 printf ("wait_addr %d\n", t);
235 }
236
237 uint8_t
238 ao_i2c_send(void *block, uint16_t len, uint8_t index, uint8_t stop)
239 {
240         struct stm_i2c  *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
241         uint8_t         tx_dma_index = ao_i2c_stm_info[index].tx_dma_index;
242
243         /* Clear any pending ADDR bit */
244         (void) stm_i2c->sr2;
245         ao_i2c_wait_addr(index);
246         stm_i2c->cr2 = AO_STM_I2C_CR2 | (1 << STM_I2C_CR2_DMAEN);
247         ao_dma_set_transfer(tx_dma_index,
248                             &stm_i2c->dr,
249                             block,
250                             len,
251                             (0 << STM_DMA_CCR_MEM2MEM) |
252                             (STM_DMA_CCR_PL_MEDIUM << STM_DMA_CCR_PL) |
253                             (STM_DMA_CCR_MSIZE_8 << STM_DMA_CCR_MSIZE) |
254                             (STM_DMA_CCR_PSIZE_8 << STM_DMA_CCR_PSIZE) |
255                             (1 << STM_DMA_CCR_MINC) |
256                             (0 << STM_DMA_CCR_PINC) |
257                             (0 << STM_DMA_CCR_CIRC) |
258                             (STM_DMA_CCR_DIR_MEM_TO_PER << STM_DMA_CCR_DIR));
259                            
260         ao_dma_start(tx_dma_index);
261         ao_alarm(1 + len);
262         ao_arch_block_interrupts();
263         while (!ao_dma_done[tx_dma_index])
264                 if (ao_sleep(&ao_dma_done[tx_dma_index]))
265                         break;
266         ao_clear_alarm();
267         ao_dma_done_transfer(tx_dma_index);
268         stm_i2c->cr2 = AO_STM_I2C_CR2 | (1 << STM_I2C_CR2_ITEVTEN) | (1 << STM_I2C_CR2_ITERREN);
269         while ((stm_i2c->sr1 & (1 << STM_I2C_SR1_BTF)) == 0)
270                 if (ao_sleep(&ao_i2c_state[index]))
271                         break;
272         stm_i2c->cr2 = AO_STM_I2C_CR2;
273         ao_arch_release_interrupts();
274         if (stop) {
275                 stm_i2c->cr1 = AO_STM_I2C_CR1 | (1 << STM_I2C_CR1_STOP);
276                 ao_i2c_wait_stop(index);
277         }
278         return TRUE;
279 }
280
281 void
282 ao_i2c_recv_dma_isr(int index)
283 {
284         int             i;
285         struct stm_i2c  *stm_i2c = NULL;
286
287         for (i = 0; i < STM_NUM_I2C; i++)
288                 if (index == ao_i2c_stm_info[i].rx_dma_index) {
289                         stm_i2c = ao_i2c_stm_info[i].stm_i2c;
290                         break;
291                 }
292         if (!stm_i2c)
293                 return;
294         stm_i2c->cr2 = AO_STM_I2C_CR2 | (1 << STM_I2C_CR2_LAST);
295         ao_dma_done[index] = 1;
296         ao_wakeup(&ao_dma_done[index]);
297 }
298
299 uint8_t
300 ao_i2c_recv(void *block, uint16_t len, uint8_t index, uint8_t stop)
301 {
302         struct stm_i2c  *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
303         uint8_t         ret = TRUE;
304
305         if (len == 0)
306                 return TRUE;
307         if (len == 1) {
308                 ao_i2c_recv_data[index] = block;
309                 ao_i2c_recv_len[index] = 1;
310                 stm_i2c->cr1 = AO_STM_I2C_CR1;
311
312                 /* Clear any pending ADDR bit */
313                 stm_i2c->sr2;
314                 ao_i2c_wait_addr(index);
315
316                 /* Enable interrupts to transfer the byte */
317                 stm_i2c->cr2 = (AO_STM_I2C_CR2 |
318                                 (1 << STM_I2C_CR2_ITEVTEN) |
319                                 (1 << STM_I2C_CR2_ITERREN) |
320                                 (1 << STM_I2C_CR2_ITBUFEN));
321                 if (stop)
322                         stm_i2c->cr1 = AO_STM_I2C_CR1 | (1 << STM_I2C_CR1_STOP);
323
324                 ao_alarm(1);
325                 ao_arch_block_interrupts();
326                 while (ao_i2c_recv_len[index])
327                         if (ao_sleep(&ao_i2c_recv_len[index]))
328                                 break;
329                 ao_arch_release_interrupts();
330                 ret = ao_i2c_recv_len[index] == 0;
331                 ao_clear_alarm();
332         } else {
333                 uint8_t         rx_dma_index = ao_i2c_stm_info[index].rx_dma_index;
334                 ao_dma_set_transfer(rx_dma_index,
335                                     &stm_i2c->dr,
336                                     block,
337                                     len,
338                                     (0 << STM_DMA_CCR_MEM2MEM) |
339                                     (STM_DMA_CCR_PL_MEDIUM << STM_DMA_CCR_PL) |
340                                     (STM_DMA_CCR_MSIZE_8 << STM_DMA_CCR_MSIZE) |
341                                     (STM_DMA_CCR_PSIZE_8 << STM_DMA_CCR_PSIZE) |
342                                     (1 << STM_DMA_CCR_MINC) |
343                                     (0 << STM_DMA_CCR_PINC) |
344                                     (0 << STM_DMA_CCR_CIRC) |
345                                     (STM_DMA_CCR_DIR_PER_TO_MEM << STM_DMA_CCR_DIR));
346                 stm_i2c->cr1 = AO_STM_I2C_CR1 | (1 << STM_I2C_CR1_ACK);
347                 stm_i2c->cr2 = AO_STM_I2C_CR2 |
348                         (1 << STM_I2C_CR2_DMAEN) | (1 << STM_I2C_CR2_LAST);
349                 /* Clear any pending ADDR bit */
350                 (void) stm_i2c->sr2;
351                 ao_i2c_wait_addr(index);
352
353                 ao_dma_start(rx_dma_index);
354                 ao_alarm(len);
355                 ao_arch_block_interrupts();
356                 while (!ao_dma_done[rx_dma_index])
357                         if (ao_sleep(&ao_dma_done[rx_dma_index]))
358                                 break;
359                 ao_arch_release_interrupts();
360                 ao_clear_alarm();
361                 ret = ao_dma_done[rx_dma_index];
362                 ao_dma_done_transfer(rx_dma_index);
363                 stm_i2c->cr1 = AO_STM_I2C_CR1 | (1 << STM_I2C_CR1_STOP);
364         }
365         if (stop)
366                 ao_i2c_wait_stop(index);
367         return ret;
368 }
369
370 void
371 ao_i2c_channel_init(uint8_t index)
372 {
373         struct stm_i2c  *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
374         int i;
375
376         /* Turn I2C off while configuring */
377         stm_i2c->cr1 = (1 << STM_I2C_CR1_SWRST);
378         for (i = 0; i < 100; i++)
379                 asm("nop");
380         stm_i2c->cr1 = 0;
381         stm_i2c->cr2 = AO_STM_I2C_CR2;
382
383         (void) stm_i2c->sr1;
384         (void) stm_i2c->sr2;
385         (void) stm_i2c->dr;
386
387         stm_i2c->sr1 = 0;
388         stm_i2c->sr2 = 0;
389
390         stm_i2c->ccr = ((I2C_FAST << STM_I2C_CCR_FS) |
391                         (0 << STM_I2C_CCR_DUTY) |
392                         (I2C_CCR_HIGH << STM_I2C_CCR_CCR));
393
394         stm_i2c->trise = I2C_TRISE;
395
396         stm_i2c->cr1 = AO_STM_I2C_CR1;
397 }
398
399 static inline void
400 i2c_pin_set(struct stm_gpio *gpio, int pin)
401 {
402         stm_afr_set(gpio, pin, STM_AFR_AF4);
403         stm_ospeedr_set(gpio, pin, STM_OSPEEDR_400kHz);
404         stm_pupdr_set(gpio, pin, STM_PUPDR_PULL_UP);
405 }
406
407 void
408 ao_i2c_init(void)
409 {
410         /* All of the I2C configurations are on port B */
411         stm_rcc.ahbenr |= (1 << STM_RCC_AHBENR_GPIOBEN);
412 #if HAS_I2C_1
413 # if I2C_1_PB6_PB7
414         i2c_pin_set(&stm_gpiob, 6);
415         i2c_pin_set(&stm_gpiob, 7);
416 # else
417 #  if I2C_1_PB8_PB9
418         i2c_pin_set(&stm_gpiob, 8);
419         i2c_pin_set(&stm_gpiob, 9);
420 #  else
421 #   error "No I2C_1 port configuration specified"
422 #  endif
423 # endif
424
425         stm_rcc.apb1enr |= (1 << STM_RCC_APB1ENR_I2C1EN);
426         ao_i2c_channel_init(0);
427
428         stm_nvic_set_enable(STM_ISR_I2C1_EV_POS);
429         stm_nvic_set_priority(STM_ISR_I2C1_EV_POS, AO_STM_NVIC_MED_PRIORITY);
430         stm_nvic_set_enable(STM_ISR_I2C1_ER_POS);
431         stm_nvic_set_priority(STM_ISR_I2C1_ER_POS, AO_STM_NVIC_MED_PRIORITY);
432 #endif
433
434 #if HAS_I2C_2
435 # if I2C_2_PB10_PB11
436         i2c_pin_set(&stm_gpiob, 10);
437         i2c_pin_set(&stm_gpiob, 11);
438 # else
439 #  error "No I2C_2 port configuration specified"
440 # endif
441         stm_rcc.apb1enr |= (1 << STM_RCC_APB1ENR_I2C2EN);
442         ao_i2c_channel_init(1);
443
444         stm_nvic_set_enable(STM_ISR_I2C2_EV_POS);
445         stm_nvic_set_priority(STM_ISR_I2C2_EV_POS, AO_STM_NVIC_MED_PRIORITY);
446         stm_nvic_set_enable(STM_ISR_I2C2_ER_POS);
447         stm_nvic_set_priority(STM_ISR_I2C2_ER_POS, AO_STM_NVIC_MED_PRIORITY);
448 #endif
449 }