altos: Add STM I2C recv and stop funcs
[fw/altos] / src / stm / ao_arch_funcs.h
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 #ifndef _AO_ARCH_FUNCS_H_
19 #define _AO_ARCH_FUNCS_H_
20
21 /* ao_spi_stm.c
22  */
23 extern uint8_t  ao_spi_mutex[STM_NUM_SPI];
24
25 void
26 ao_spi_get(uint8_t spi_index);
27
28 void
29 ao_spi_put(uint8_t spi_index);
30
31 void
32 ao_spi_send(void *block, uint16_t len, uint8_t spi_index);
33
34 void
35 ao_spi_send_fixed(uint8_t value, uint16_t len, uint8_t spi_index);
36
37 void
38 ao_spi_recv(void *block, uint16_t len, uint8_t spi_index);
39
40 void
41 ao_spi_duplex(void *out, void *in, uint16_t len, uint8_t spi_index);
42
43 void
44 ao_spi_init(void);
45
46 #define ao_spi_get_mask(reg,mask,bus) do {              \
47                 ao_spi_get(bus);                        \
48                 (reg).bsrr = ((uint32_t) mask) << 16;   \
49         } while (0)
50
51 #define ao_spi_put_mask(reg,mask,bus) do {      \
52                 (reg).bsrr = mask;              \
53                 ao_spi_put(bus);                \
54         } while (0)
55
56 #define ao_enable_port(port) do {                                       \
57                 if (&(port) == &stm_gpioa)                              \
58                         stm_rcc.ahbenr |= (1 << STM_RCC_AHBENR_GPIOAEN); \
59                 else if (&(port) == &stm_gpiob)                         \
60                         stm_rcc.ahbenr |= (1 << STM_RCC_AHBENR_GPIOBEN); \
61                 else if (&(port) == &stm_gpioc)                         \
62                         stm_rcc.ahbenr |= (1 << STM_RCC_AHBENR_GPIOCEN); \
63                 else if (&(port) == &stm_gpiod)                         \
64                         stm_rcc.ahbenr |= (1 << STM_RCC_AHBENR_GPIODEN); \
65                 else if (&(port) == &stm_gpioe)                         \
66                         stm_rcc.ahbenr |= (1 << STM_RCC_AHBENR_GPIOEEN); \
67         } while (0)
68
69
70 #define ao_enable_cs(port,bit) do {                             \
71                 stm_gpio_set(&(port), bit, 1);                  \
72                 stm_moder_set(&(port), bit, STM_MODER_OUTPUT);  \
73         } while (0)
74
75 #define ao_spi_init_cs(port, mask) do {                         \
76                 ao_enable_port(port);                           \
77                 if ((mask) & 0x0001) ao_enable_cs(port, 0);     \
78                 if ((mask) & 0x0002) ao_enable_cs(port, 1);     \
79                 if ((mask) & 0x0004) ao_enable_cs(port, 2);     \
80                 if ((mask) & 0x0008) ao_enable_cs(port, 3);     \
81                 if ((mask) & 0x0010) ao_enable_cs(port, 4);     \
82                 if ((mask) & 0x0020) ao_enable_cs(port, 5);     \
83                 if ((mask) & 0x0040) ao_enable_cs(port, 6);     \
84                 if ((mask) & 0x0080) ao_enable_cs(port, 7);     \
85                 if ((mask) & 0x0100) ao_enable_cs(port, 8);     \
86                 if ((mask) & 0x0200) ao_enable_cs(port, 9);     \
87                 if ((mask) & 0x0400) ao_enable_cs(port, 10);\
88                 if ((mask) & 0x0800) ao_enable_cs(port, 11);\
89                 if ((mask) & 0x1000) ao_enable_cs(port, 12);\
90                 if ((mask) & 0x2000) ao_enable_cs(port, 13);\
91                 if ((mask) & 0x4000) ao_enable_cs(port, 14);\
92                 if ((mask) & 0x8000) ao_enable_cs(port, 15);\
93         } while (0)
94
95 /* ao_dma_stm.c
96  */
97
98 extern uint8_t ao_dma_done[STM_NUM_DMA];
99
100 void
101 ao_dma_set_transfer(uint8_t             index,
102                     volatile void       *peripheral,
103                     void                *memory,
104                     uint16_t            count,
105                     uint32_t            ccr);
106
107 void
108 ao_dma_set_isr(uint8_t index, void (*isr)(void));
109
110 void
111 ao_dma_start(uint8_t index);
112
113 void
114 ao_dma_done_transfer(uint8_t index);
115
116 void
117 ao_dma_abort(uint8_t index);
118
119 void
120 ao_dma_alloc(uint8_t index);
121
122 void
123 ao_dma_init(void);
124
125 /* ao_i2c_stm.c */
126
127 void
128 ao_i2c_get(uint8_t i2c_index);
129
130 uint8_t
131 ao_i2c_start(uint8_t i2c_index, uint16_t address);
132
133 void
134 ao_i2c_stop(uint8_t i2c_index);
135
136 void
137 ao_i2c_put(uint8_t i2c_index);
138
139 void
140 ao_i2c_send(void *block, uint16_t len, uint8_t i2c_index);
141
142 void
143 ao_i2c_recv(void *block, uint16_t len, uint8_t i2c_index);
144
145 void
146 ao_i2c_init(void);
147
148 #endif /* _AO_ARCH_FUNCS_H_ */