2 * Copyright © 2012 Keith Packard <keithp@keithp.com>
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; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
21 struct ao_i2c_stm_info {
24 struct stm_i2c *stm_i2c;
29 #define I2C_TIMEOUT 100
35 static uint8_t ao_i2c_state[STM_NUM_I2C];
36 static uint16_t ao_i2c_addr[STM_NUM_I2C];
37 uint8_t ao_i2c_mutex[STM_NUM_I2C];
39 # define I2C_HIGH_SLOW 5000 /* ns, 100kHz clock */
41 # define I2C_HIGH_FAST 2000 /* ns, 167kHz clock */
43 # define I2C_HIGH_FAST 1000 /* ns, 333kHz clock */
46 # define I2C_RISE_SLOW 500 /* ns */
47 # define I2C_RISE_FAST 100 /* ns */
49 /* Clock period in ns */
50 #define CYCLES(period) (((period) * (AO_PCLK1 / 1000)) / 1000000)
52 #define max(a,b) ((a) > (b) ? (a) : (b))
53 #define I2C_CCR_HIGH_SLOW max(4,CYCLES(I2C_HIGH_SLOW))
54 #define I2C_CCR_HIGH_FAST max(4,CYCLES(I2C_HIGH_FAST))
55 #define I2C_TRISE_SLOW (CYCLES(I2C_RISE_SLOW) + 1)
56 #define I2C_TRISE_FAST (CYCLES(I2C_RISE_FAST) + 1)
59 #define I2C_TRISE I2C_TRISE_FAST
60 #define I2C_CCR_HIGH I2C_CCR_HIGH_FAST
62 #define I2C_TRISE I2C_TRISE_SLOW
63 #define I2C_CCR_HIGH I2C_CCR_HIGH_SLOW
66 #if AO_PCLK1 == 2000000
67 # define AO_STM_I2C_CR2_FREQ STM_I2C_CR2_FREQ_2_MHZ
69 #if AO_PCLK1 == 4000000
70 # define AO_STM_I2C_CR2_FREQ STM_I2C_CR2_FREQ_4_MHZ
72 #if AO_PCLK1 == 8000000
73 # define AO_STM_I2C_CR2_FREQ STM_I2C_CR2_FREQ_8_MHZ
75 #if AO_PCLK1 == 16000000
76 # define AO_STM_I2C_CR2_FREQ STM_I2C_CR2_FREQ_16_MHZ
78 #if AO_PCLK1 == 24000000
79 # define AO_STM_I2C_CR2_FREQ STM_I2C_CR2_FREQ_24_MHZ
81 #if AO_PCLK1 == 32000000
82 # define AO_STM_I2C_CR2_FREQ STM_I2C_CR2_FREQ_32_MHZ
85 #define AO_STM_I2C_CR1 ((0 << STM_I2C_CR1_SWRST) | \
86 (0 << STM_I2C_CR1_ALERT) | \
87 (0 << STM_I2C_CR1_PEC) | \
88 (0 << STM_I2C_CR1_POS) | \
89 (0 << STM_I2C_CR1_ACK) | \
90 (0 << STM_I2C_CR1_STOP) | \
91 (0 << STM_I2C_CR1_START) | \
92 (0 << STM_I2C_CR1_NOSTRETCH) | \
93 (0 << STM_I2C_CR1_ENGC) | \
94 (0 << STM_I2C_CR1_ENPEC) | \
95 (0 << STM_I2C_CR1_ENARP) | \
96 (0 << STM_I2C_CR1_SMBTYPE) | \
97 (0 << STM_I2C_CR1_SMBUS) | \
98 (1 << STM_I2C_CR1_PE))
100 #define AO_STM_I2C_CR2 ((0 << STM_I2C_CR2_LAST) | \
101 (0 << STM_I2C_CR2_DMAEN) | \
102 (0 << STM_I2C_CR2_ITBUFEN) | \
103 (0 << STM_I2C_CR2_ITEVTEN) | \
104 (0 << STM_I2C_CR2_ITERREN) | \
105 (AO_STM_I2C_CR2_FREQ << STM_I2C_CR2_FREQ))
107 static const struct ao_i2c_stm_info ao_i2c_stm_info[STM_NUM_I2C] = {
109 .tx_dma_index = STM_DMA_INDEX(STM_DMA_CHANNEL_I2C1_TX),
110 .rx_dma_index = STM_DMA_INDEX(STM_DMA_CHANNEL_I2C1_RX),
114 .tx_dma_index = STM_DMA_INDEX(STM_DMA_CHANNEL_I2C2_TX),
115 .rx_dma_index = STM_DMA_INDEX(STM_DMA_CHANNEL_I2C2_RX),
120 static uint8_t *ao_i2c_recv_data[STM_NUM_I2C];
121 static uint16_t ao_i2c_recv_len[STM_NUM_I2C];
122 static uint16_t ev_count;
125 ao_i2c_ev_isr(uint8_t index)
127 struct stm_i2c *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
132 if (sr1 & (1 << STM_I2C_SR1_SB))
133 stm_i2c->dr = ao_i2c_addr[index];
134 if (sr1 & (1 << STM_I2C_SR1_ADDR)) {
135 stm_i2c->cr2 &= ~(1UL << STM_I2C_CR2_ITEVTEN);
136 ao_i2c_state[index] = I2C_RUNNING;
137 ao_wakeup(&ao_i2c_state[index]);
139 if (sr1 & (1 << STM_I2C_SR1_BTF)) {
140 stm_i2c->cr2 &= ~(1UL << STM_I2C_CR2_ITEVTEN);
141 ao_wakeup(&ao_i2c_state[index]);
143 if (sr1 & (1 << STM_I2C_SR1_RXNE)) {
144 if (ao_i2c_recv_len[index]) {
145 *(ao_i2c_recv_data[index]++) = (uint8_t) stm_i2c->dr;
146 if (!--ao_i2c_recv_len[index])
147 ao_wakeup(&ao_i2c_recv_len[index]);
152 void stm_i2c1_ev_isr(void) { ao_i2c_ev_isr(0); }
153 void stm_i2c2_ev_isr(void) { ao_i2c_ev_isr(1); }
156 ao_i2c_er_isr(uint8_t index)
158 struct stm_i2c *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
162 if (sr1 & (1 << STM_I2C_SR1_AF)) {
163 ao_i2c_state[index] = I2C_ERROR;
164 stm_i2c->sr1 = sr1 & ~(1UL << STM_I2C_SR1_AF);
165 ao_wakeup(&ao_i2c_state[index]);
169 void stm_i2c1_er_isr(void) { ao_i2c_er_isr(0); }
170 void stm_i2c2_er_isr(void) { ao_i2c_er_isr(1); }
173 ao_i2c_get(uint8_t index)
175 struct stm_i2c *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
176 ao_mutex_get(&ao_i2c_mutex[index]);
183 ao_i2c_put(uint8_t index)
185 ao_mutex_put(&ao_i2c_mutex[index]);
189 ao_i2c_start(uint8_t index, uint16_t addr)
191 struct stm_i2c *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
194 ao_i2c_state[index] = I2C_IDLE;
195 ao_i2c_addr[index] = addr;
196 stm_i2c->cr2 = AO_STM_I2C_CR2;
197 stm_i2c->cr1 = AO_STM_I2C_CR1 | (1 << STM_I2C_CR1_START);
198 for (t = 0; t < I2C_TIMEOUT; t++) {
199 if (!(stm_i2c->cr1 & (1 << STM_I2C_CR1_START)))
202 ao_arch_block_interrupts();
203 stm_i2c->cr2 = AO_STM_I2C_CR2 | (1 << STM_I2C_CR2_ITEVTEN) | (1 << STM_I2C_CR2_ITERREN);
204 ao_i2c_ev_isr(index);
205 while (ao_i2c_state[index] == I2C_IDLE)
206 if (ao_sleep_for(&ao_i2c_state[index], AO_MS_TO_TICKS(250)))
208 ao_arch_release_interrupts();
209 return ao_i2c_state[index] == I2C_RUNNING;
213 ao_i2c_wait_stop(uint8_t index)
215 struct stm_i2c *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
218 for (t = 0; t < I2C_TIMEOUT; t++) {
219 if (!(stm_i2c->cr1 & (1 << STM_I2C_CR1_STOP)))
223 ao_i2c_state[index] = I2C_IDLE;
227 ao_i2c_wait_addr(uint8_t index)
229 struct stm_i2c *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
232 for (t = 0; t < I2C_TIMEOUT; t++)
233 if (!(stm_i2c->sr1 & (1 << STM_I2C_SR1_ADDR)))
236 printf ("wait_addr %d\n", t);
240 ao_i2c_send(void *block, uint16_t len, uint8_t index, uint8_t stop)
242 struct stm_i2c *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
243 uint8_t tx_dma_index = ao_i2c_stm_info[index].tx_dma_index;
245 /* Clear any pending ADDR bit */
247 ao_i2c_wait_addr(index);
248 stm_i2c->cr2 = AO_STM_I2C_CR2 | (1 << STM_I2C_CR2_DMAEN);
249 ao_dma_set_transfer(tx_dma_index,
253 (0 << STM_DMA_CCR_MEM2MEM) |
254 (STM_DMA_CCR_PL_MEDIUM << STM_DMA_CCR_PL) |
255 (STM_DMA_CCR_MSIZE_8 << STM_DMA_CCR_MSIZE) |
256 (STM_DMA_CCR_PSIZE_8 << STM_DMA_CCR_PSIZE) |
257 (1 << STM_DMA_CCR_MINC) |
258 (0 << STM_DMA_CCR_PINC) |
259 (0 << STM_DMA_CCR_CIRC) |
260 (STM_DMA_CCR_DIR_MEM_TO_PER << STM_DMA_CCR_DIR));
262 ao_dma_start(tx_dma_index);
263 ao_arch_block_interrupts();
264 while (!ao_dma_done[tx_dma_index])
265 if (ao_sleep_for(&ao_dma_done[tx_dma_index], 1 + len))
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_for(&ao_i2c_state[index], 1 + len))
272 stm_i2c->cr2 = AO_STM_I2C_CR2;
273 ao_arch_release_interrupts();
275 stm_i2c->cr1 = AO_STM_I2C_CR1 | (1 << STM_I2C_CR1_STOP);
276 ao_i2c_wait_stop(index);
282 ao_i2c_recv_dma_isr(int index)
285 struct stm_i2c *stm_i2c = NULL;
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;
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]);
300 ao_i2c_recv(void *block, uint16_t len, uint8_t index, uint8_t stop)
302 struct stm_i2c *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
308 ao_i2c_recv_data[index] = block;
309 ao_i2c_recv_len[index] = 1;
310 stm_i2c->cr1 = AO_STM_I2C_CR1;
312 /* Clear any pending ADDR bit */
314 ao_i2c_wait_addr(index);
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));
322 stm_i2c->cr1 = AO_STM_I2C_CR1 | (1 << STM_I2C_CR1_STOP);
324 ao_arch_block_interrupts();
325 while (ao_i2c_recv_len[index])
326 if (ao_sleep_for(&ao_i2c_recv_len[index], 1))
328 ao_arch_release_interrupts();
329 ret = ao_i2c_recv_len[index] == 0;
331 uint8_t rx_dma_index = ao_i2c_stm_info[index].rx_dma_index;
332 ao_dma_set_transfer(rx_dma_index,
336 (0 << STM_DMA_CCR_MEM2MEM) |
337 (STM_DMA_CCR_PL_HIGH << STM_DMA_CCR_PL) |
338 (STM_DMA_CCR_MSIZE_8 << STM_DMA_CCR_MSIZE) |
339 (STM_DMA_CCR_PSIZE_8 << STM_DMA_CCR_PSIZE) |
340 (1 << STM_DMA_CCR_MINC) |
341 (0 << STM_DMA_CCR_PINC) |
342 (0 << STM_DMA_CCR_CIRC) |
343 (STM_DMA_CCR_DIR_PER_TO_MEM << STM_DMA_CCR_DIR));
345 /* XXX ao_i2c_recv_dma_isr hasn't ever been used, so it
346 * doesn't appear to be necessary. Testing with a device
347 * that uses i2c would really be useful here to discover
348 * whether this function is necessary or not.
351 ao_dma_set_isr(rx_dma_index, ao_i2c_recv_dma_isr);
353 (void) ao_i2c_recv_dma_isr;
355 stm_i2c->cr1 = AO_STM_I2C_CR1 | (1 << STM_I2C_CR1_ACK);
356 stm_i2c->cr2 = AO_STM_I2C_CR2 |
357 (1 << STM_I2C_CR2_DMAEN) | (1 << STM_I2C_CR2_LAST);
358 /* Clear any pending ADDR bit */
360 ao_i2c_wait_addr(index);
362 ao_dma_start(rx_dma_index);
363 ao_arch_block_interrupts();
364 while (!ao_dma_done[rx_dma_index])
365 if (ao_sleep_for(&ao_dma_done[rx_dma_index], len))
367 ao_arch_release_interrupts();
368 ret = ao_dma_done[rx_dma_index];
369 ao_dma_done_transfer(rx_dma_index);
370 stm_i2c->cr1 = AO_STM_I2C_CR1 | (1 << STM_I2C_CR1_STOP);
373 ao_i2c_wait_stop(index);
378 ao_i2c_channel_init(uint8_t index)
380 struct stm_i2c *stm_i2c = ao_i2c_stm_info[index].stm_i2c;
383 /* Turn I2C off while configuring */
384 stm_i2c->cr1 = (1 << STM_I2C_CR1_SWRST);
385 for (i = 0; i < 100; i++)
388 stm_i2c->cr2 = AO_STM_I2C_CR2;
397 stm_i2c->ccr = ((I2C_FAST << STM_I2C_CCR_FS) |
398 (0 << STM_I2C_CCR_DUTY) |
399 (I2C_CCR_HIGH << STM_I2C_CCR_CCR));
401 stm_i2c->trise = I2C_TRISE;
403 stm_i2c->cr1 = AO_STM_I2C_CR1;
407 i2c_pin_set(struct stm_gpio *gpio, int pin)
409 stm_afr_set(gpio, pin, STM_AFR_AF4);
410 stm_ospeedr_set(gpio, pin, STM_OSPEEDR_400kHz);
411 stm_pupdr_set(gpio, pin, STM_PUPDR_PULL_UP);
417 /* All of the I2C configurations are on port B */
418 stm_rcc.ahbenr |= (1 << STM_RCC_AHBENR_GPIOBEN);
421 i2c_pin_set(&stm_gpiob, 6);
422 i2c_pin_set(&stm_gpiob, 7);
425 i2c_pin_set(&stm_gpiob, 8);
426 i2c_pin_set(&stm_gpiob, 9);
428 # error "No I2C_1 port configuration specified"
432 stm_rcc.apb1enr |= (1 << STM_RCC_APB1ENR_I2C1EN);
433 ao_i2c_channel_init(0);
435 stm_nvic_set_enable(STM_ISR_I2C1_EV_POS);
436 stm_nvic_set_priority(STM_ISR_I2C1_EV_POS, AO_STM_NVIC_MED_PRIORITY);
437 stm_nvic_set_enable(STM_ISR_I2C1_ER_POS);
438 stm_nvic_set_priority(STM_ISR_I2C1_ER_POS, AO_STM_NVIC_MED_PRIORITY);
443 i2c_pin_set(&stm_gpiob, 10);
444 i2c_pin_set(&stm_gpiob, 11);
446 # error "No I2C_2 port configuration specified"
448 stm_rcc.apb1enr |= (1 << STM_RCC_APB1ENR_I2C2EN);
449 ao_i2c_channel_init(1);
451 stm_nvic_set_enable(STM_ISR_I2C2_EV_POS);
452 stm_nvic_set_priority(STM_ISR_I2C2_EV_POS, AO_STM_NVIC_MED_PRIORITY);
453 stm_nvic_set_enable(STM_ISR_I2C2_ER_POS);
454 stm_nvic_set_priority(STM_ISR_I2C2_ER_POS, AO_STM_NVIC_MED_PRIORITY);