altos: Add STM32F0 beep and SPI byte API.
[fw/altos] / src / stmf0 / 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; either version 2 of the License, or
7  * (at your option) any later version.
8  *
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.
13  *
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.
17  */
18
19 #ifndef _AO_ARCH_FUNCS_H_
20 #define _AO_ARCH_FUNCS_H_
21
22 #include <ao_power.h>
23
24 /* ao_spi_stm.c
25  */
26
27 /* PCLK is set to 48MHz (HCLK 48MHz, HPRE 1, PPRE 1) */
28
29 #define AO_SPI_SPEED_24MHz      STM_SPI_CR1_BR_PCLK_2
30 #define AO_SPI_SPEED_12MHz      STM_SPI_CR1_BR_PCLK_4
31 #define AO_SPI_SPEED_6MHz       STM_SPI_CR1_BR_PCLK_8
32 #define AO_SPI_SPEED_3MHz       STM_SPI_CR1_BR_PCLK_16
33 #define AO_SPI_SPEED_1500kHz    STM_SPI_CR1_BR_PCLK_32
34 #define AO_SPI_SPEED_750kHz     STM_SPI_CR1_BR_PCLK_64
35 #define AO_SPI_SPEED_375kHz     STM_SPI_CR1_BR_PCLK_128
36 #define AO_SPI_SPEED_187500Hz   STM_SPI_CR1_BR_PCLK_256
37
38 #define AO_SPI_SPEED_FAST       AO_SPI_SPEED_24MHz
39
40 /* Companion bus wants something no faster than 200kHz */
41
42 #define AO_SPI_SPEED_200kHz     AO_SPI_SPEED_187500Hz
43
44 #define AO_SPI_CONFIG_1         0x00
45 #define AO_SPI_1_CONFIG_PA5_PA6_PA7     AO_SPI_CONFIG_1
46 #define AO_SPI_2_CONFIG_PB13_PB14_PB15  AO_SPI_CONFIG_1
47
48 #define AO_SPI_CONFIG_2         0x04
49 #define AO_SPI_1_CONFIG_PB3_PB4_PB5     AO_SPI_CONFIG_2
50 #define AO_SPI_2_CONFIG_PD1_PD3_PD4     AO_SPI_CONFIG_2
51
52 #define AO_SPI_CONFIG_3         0x08
53 #define AO_SPI_1_CONFIG_PE13_PE14_PE15  AO_SPI_CONFIG_3
54
55 #define AO_SPI_CONFIG_NONE      0x0c
56
57 #define AO_SPI_INDEX_MASK       0x01
58 #define AO_SPI_CONFIG_MASK      0x0c
59
60 #define AO_SPI_1_PA5_PA6_PA7    (STM_SPI_INDEX(1) | AO_SPI_1_CONFIG_PA5_PA6_PA7)
61 #define AO_SPI_1_PB3_PB4_PB5    (STM_SPI_INDEX(1) | AO_SPI_1_CONFIG_PB3_PB4_PB5)
62 #define AO_SPI_1_PE13_PE14_PE15 (STM_SPI_INDEX(1) | AO_SPI_1_CONFIG_PE13_PE14_PE15)
63
64 #define AO_SPI_2_PB13_PB14_PB15 (STM_SPI_INDEX(2) | AO_SPI_2_CONFIG_PB13_PB14_PB15)
65 #define AO_SPI_2_PD1_PD3_PD4    (STM_SPI_INDEX(2) | AO_SPI_2_CONFIG_PD1_PD3_PD4)
66
67 #define AO_SPI_INDEX(id)        ((id) & AO_SPI_INDEX_MASK)
68 #define AO_SPI_CONFIG(id)       ((id) & AO_SPI_CONFIG_MASK)
69
70 uint8_t
71 ao_spi_try_get(uint8_t spi_index, uint32_t speed, uint8_t task_id);
72
73 void
74 ao_spi_get(uint8_t spi_index, uint32_t speed);
75
76 void
77 ao_spi_put(uint8_t spi_index);
78
79 void
80 ao_spi_send(const void *block, uint16_t len, uint8_t spi_index);
81
82 void
83 ao_spi_send_fixed(uint8_t value, uint16_t len, uint8_t spi_index);
84
85 void
86 ao_spi_send_sync(const void *block, uint16_t len, uint8_t spi_index);
87
88 void
89 ao_spi_start_bytes(uint8_t spi_index);
90
91 void
92 ao_spi_stop_bytes(uint8_t spi_index);
93
94 static inline void
95 ao_spi_send_byte(uint8_t byte, uint8_t spi_index)
96 {
97         struct stm_spi  *stm_spi;
98
99         switch (AO_SPI_INDEX(spi_index)) {
100         case 0:
101                 stm_spi = &stm_spi1;
102                 break;
103         case 1:
104                 stm_spi = &stm_spi2;
105                 break;
106         }
107
108         while (!(stm_spi->sr & (1 << STM_SPI_SR_TXE)))
109                 ;
110         stm_spi->dr = byte;
111         while (!(stm_spi->sr & (1 << STM_SPI_SR_RXNE)))
112                 ;
113         (void) stm_spi->dr;
114 }
115
116 static inline uint8_t
117 ao_spi_recv_byte(uint8_t spi_index)
118 {
119         struct stm_spi  *stm_spi;
120
121         switch (AO_SPI_INDEX(spi_index)) {
122         case 0:
123                 stm_spi = &stm_spi1;
124                 break;
125         case 1:
126                 stm_spi = &stm_spi2;
127                 break;
128         }
129
130         while (!(stm_spi->sr & (1 << STM_SPI_SR_TXE)))
131                 ;
132         stm_spi->dr = 0xff;
133         while (!(stm_spi->sr & (1 << STM_SPI_SR_RXNE)))
134                 ;
135         return stm_spi->dr;
136 }
137
138 void
139 ao_spi_recv(void *block, uint16_t len, uint8_t spi_index);
140
141 void
142 ao_spi_duplex(void *out, void *in, uint16_t len, uint8_t spi_index);
143
144 extern uint16_t ao_spi_speed[STM_NUM_SPI];
145
146 void
147 ao_spi_init(void);
148
149 #define ao_spi_set_cs(reg,mask) ((reg)->bsrr = ((uint32_t) (mask)) << 16)
150 #define ao_spi_clr_cs(reg,mask) ((reg)->bsrr = (mask))
151
152 #define ao_spi_get_mask(reg,mask,bus, speed) do {               \
153                 ao_spi_get(bus, speed);                         \
154                 ao_spi_set_cs(reg,mask);                        \
155         } while (0)
156
157 static inline uint8_t
158 ao_spi_try_get_mask(struct stm_gpio *reg, uint16_t mask, uint8_t bus, uint32_t speed, uint8_t task_id)
159 {
160         if (!ao_spi_try_get(bus, speed, task_id))
161                 return 0;
162         ao_spi_set_cs(reg, mask);
163         return 1;
164 }
165
166 #define ao_spi_put_mask(reg,mask,bus) do {      \
167                 ao_spi_clr_cs(reg,mask);        \
168                 ao_spi_put(bus);                \
169         } while (0)
170
171 #define ao_spi_get_bit(reg,bit,pin,bus,speed) ao_spi_get_mask(reg,(1<<bit),bus,speed)
172 #define ao_spi_put_bit(reg,bit,pin,bus) ao_spi_put_mask(reg,(1<<bit),bus)
173
174 extern struct ao_power  ao_power_gpioa;
175 extern struct ao_power  ao_power_gpiob;
176 extern struct ao_power  ao_power_gpioc;
177 extern struct ao_power  ao_power_gpiof;
178
179 static inline void ao_enable_port(struct stm_gpio *port)
180 {
181         if ((port) == &stm_gpioa) {
182                 stm_rcc.ahbenr |= (1 << STM_RCC_AHBENR_IOPAEN);
183                 ao_power_register(&ao_power_gpioa);
184         } else if ((port) == &stm_gpiob) {
185                 stm_rcc.ahbenr |= (1 << STM_RCC_AHBENR_IOPBEN);
186                 ao_power_register(&ao_power_gpiob);
187         } else if ((port) == &stm_gpioc) {
188                 stm_rcc.ahbenr |= (1 << STM_RCC_AHBENR_IOPCEN);
189                 ao_power_register(&ao_power_gpioc);
190         } else if ((port) == &stm_gpiof) {
191                 stm_rcc.ahbenr |= (1 << STM_RCC_AHBENR_IOPFEN);
192                 ao_power_register(&ao_power_gpiof);
193         }
194 }
195
196 static inline void ao_disable_port(struct stm_gpio *port)
197 {
198         if ((port) == &stm_gpioa) {
199                 stm_rcc.ahbenr &= ~(1 << STM_RCC_AHBENR_IOPAEN);
200                 ao_power_unregister(&ao_power_gpioa);
201         } else if ((port) == &stm_gpiob) {
202                 stm_rcc.ahbenr &= ~(1 << STM_RCC_AHBENR_IOPBEN);
203                 ao_power_unregister(&ao_power_gpiob);
204         } else if ((port) == &stm_gpioc) {
205                 stm_rcc.ahbenr &= ~(1 << STM_RCC_AHBENR_IOPCEN);
206                 ao_power_unregister(&ao_power_gpioc);
207         } else if ((port) == &stm_gpiof) {
208                 stm_rcc.ahbenr &= ~(1 << STM_RCC_AHBENR_IOPFEN);
209                 ao_power_unregister(&ao_power_gpiof);
210         }
211 }
212
213 #define ao_gpio_set(port, bit, pin, v) stm_gpio_set(port, bit, v)
214
215 #define ao_gpio_get(port, bit, pin) stm_gpio_get(port, bit)
216
217 #define ao_enable_output(port,bit,pin,v) do {                   \
218                 ao_enable_port(port);                           \
219                 ao_gpio_set(port, bit, pin, v);                 \
220                 stm_moder_set(port, bit, STM_MODER_OUTPUT);\
221         } while (0)
222
223 #define ao_gpio_set_mode(port,bit,mode) do {                            \
224                 if (mode == AO_EXTI_MODE_PULL_UP)                       \
225                         stm_pupdr_set(port, bit, STM_PUPDR_PULL_UP);    \
226                 else if (mode == AO_EXTI_MODE_PULL_DOWN)                \
227                         stm_pupdr_set(port, bit, STM_PUPDR_PULL_DOWN);  \
228                 else                                                    \
229                         stm_pupdr_set(port, bit, STM_PUPDR_NONE);       \
230         } while (0)
231
232 #define ao_enable_input(port,bit,mode) do {                             \
233                 ao_enable_port(port);                                   \
234                 stm_moder_set(port, bit, STM_MODER_INPUT);              \
235                 ao_gpio_set_mode(port, bit, mode);                      \
236         } while (0)
237
238 #define ao_enable_cs(port,bit) do {                             \
239                 ao_enable_output(port, bit, pin, 1);            \
240         } while (0)
241
242 #define ao_spi_init_cs(port, mask) do {                         \
243                 ao_enable_port(port);                           \
244                 if ((mask) & 0x0001) ao_enable_cs(port, 0);     \
245                 if ((mask) & 0x0002) ao_enable_cs(port, 1);     \
246                 if ((mask) & 0x0004) ao_enable_cs(port, 2);     \
247                 if ((mask) & 0x0008) ao_enable_cs(port, 3);     \
248                 if ((mask) & 0x0010) ao_enable_cs(port, 4);     \
249                 if ((mask) & 0x0020) ao_enable_cs(port, 5);     \
250                 if ((mask) & 0x0040) ao_enable_cs(port, 6);     \
251                 if ((mask) & 0x0080) ao_enable_cs(port, 7);     \
252                 if ((mask) & 0x0100) ao_enable_cs(port, 8);     \
253                 if ((mask) & 0x0200) ao_enable_cs(port, 9);     \
254                 if ((mask) & 0x0400) ao_enable_cs(port, 10);\
255                 if ((mask) & 0x0800) ao_enable_cs(port, 11);\
256                 if ((mask) & 0x1000) ao_enable_cs(port, 12);\
257                 if ((mask) & 0x2000) ao_enable_cs(port, 13);\
258                 if ((mask) & 0x4000) ao_enable_cs(port, 14);\
259                 if ((mask) & 0x8000) ao_enable_cs(port, 15);\
260         } while (0)
261
262 /* ao_dma_stm.c
263  */
264
265 extern uint8_t ao_dma_done[STM_NUM_DMA];
266
267 void
268 ao_dma_set_transfer(uint8_t             index,
269                     volatile void       *peripheral,
270                     void                *memory,
271                     uint16_t            count,
272                     uint32_t            ccr);
273
274 void
275 ao_dma_set_isr(uint8_t index, void (*isr)(int index));
276
277 void
278 ao_dma_start(uint8_t index);
279
280 void
281 ao_dma_done_transfer(uint8_t index);
282
283 void
284 ao_dma_abort(uint8_t index);
285
286 void
287 ao_dma_alloc(uint8_t index);
288
289 void
290 ao_dma_init(void);
291
292 /* ao_i2c_stm.c */
293
294 void
295 ao_i2c_get(uint8_t i2c_index);
296
297 uint8_t
298 ao_i2c_start(uint8_t i2c_index, uint16_t address);
299
300 void
301 ao_i2c_put(uint8_t i2c_index);
302
303 uint8_t
304 ao_i2c_send(void *block, uint16_t len, uint8_t i2c_index, uint8_t stop);
305
306 uint8_t
307 ao_i2c_recv(void *block, uint16_t len, uint8_t i2c_index, uint8_t stop);
308
309 void
310 ao_i2c_init(void);
311
312 /* ao_serial_stm.c */
313 struct ao_stm_usart {
314         struct ao_fifo          rx_fifo;
315         struct ao_fifo          tx_fifo;
316         struct stm_usart        *reg;
317         uint8_t                 tx_started;
318 };
319
320 #if HAS_SERIAL_1
321 extern struct ao_stm_usart      ao_stm_usart1;
322 #endif
323
324 #if HAS_SERIAL_2
325 extern struct ao_stm_usart      ao_stm_usart2;
326 #endif
327
328 #if HAS_SERIAL_3
329 extern struct ao_stm_usart      ao_stm_usart3;
330 #endif
331
332 #define ARM_PUSH32(stack, val)  (*(--(stack)) = (val))
333
334 typedef uint32_t        ao_arch_irq_t;
335
336 static inline uint32_t
337 ao_arch_irqsave(void) {
338         uint32_t        primask;
339         asm("mrs %0,primask" : "=&r" (primask));
340         ao_arch_block_interrupts();
341         return primask;
342 }
343
344 static inline void
345 ao_arch_irqrestore(uint32_t primask) {
346         asm("msr primask,%0" : : "r" (primask));
347 }
348
349 static inline void
350 ao_arch_memory_barrier() {
351         asm volatile("" ::: "memory");
352 }
353
354 #if HAS_TASK
355 static inline void
356 ao_arch_init_stack(struct ao_task *task, void *start)
357 {
358         uint32_t        *sp = (uint32_t *) (task->stack + AO_STACK_SIZE);
359         uint32_t        a = (uint32_t) start;
360         int             i;
361
362         /* Return address (goes into LR) */
363         ARM_PUSH32(sp, a);
364
365         /* Clear register values r0-r7 */
366         i = 8;
367         while (i--)
368                 ARM_PUSH32(sp, 0);
369
370         /* APSR */
371         ARM_PUSH32(sp, 0);
372
373         /* PRIMASK with interrupts enabled */
374         ARM_PUSH32(sp, 0);
375
376         task->sp = sp;
377 }
378
379 static inline void ao_arch_save_regs(void) {
380         /* Save general registers */
381         asm("push {r0-r7,lr}\n");
382
383         /* Save APSR */
384         asm("mrs r0,apsr");
385         asm("push {r0}");
386
387         /* Save PRIMASK */
388         asm("mrs r0,primask");
389         asm("push {r0}");
390 }
391
392 static inline void ao_arch_save_stack(void) {
393         uint32_t        *sp;
394         asm("mov %0,sp" : "=&r" (sp) );
395         ao_cur_task->sp = (sp);
396         if ((uint8_t *) sp < &ao_cur_task->stack[0])
397                 ao_panic (AO_PANIC_STACK);
398 }
399
400 static inline void ao_arch_restore_stack(void) {
401         uint32_t        sp;
402         sp = (uint32_t) ao_cur_task->sp;
403
404         /* Switch stacks */
405         asm("mov sp, %0" : : "r" (sp) );
406
407         /* Restore PRIMASK */
408         asm("pop {r0}");
409         asm("msr primask,r0");
410
411         /* Restore APSR */
412         asm("pop {r0}");
413         asm("msr apsr_nczvq,r0");
414
415         /* Restore general registers */
416         asm("pop {r0-r7,pc}\n");
417 }
418
419 #ifndef HAS_SAMPLE_PROFILE
420 #define HAS_SAMPLE_PROFILE 0
421 #endif
422
423 #if !HAS_SAMPLE_PROFILE
424 #define HAS_ARCH_START_SCHEDULER        1
425
426 static inline void ao_arch_start_scheduler(void) {
427         uint32_t        sp;
428         uint32_t        control;
429
430         asm("mrs %0,msp" : "=&r" (sp));
431         asm("msr psp,%0" : : "r" (sp));
432         asm("mrs %0,control" : "=&r" (control));
433         control |= (1 << 1);
434         asm("msr control,%0" : : "r" (control));
435         asm("isb");
436 }
437 #endif
438
439 #define ao_arch_isr_stack()
440
441 #endif
442
443 #define ao_arch_wait_interrupt() do {                           \
444                 asm("\twfi\n");                                 \
445                 ao_arch_release_interrupts();                   \
446                 asm(".global ao_idle_loc\nao_idle_loc:");       \
447                 ao_arch_block_interrupts();                     \
448         } while (0)
449
450 #define ao_arch_critical(b) do {                        \
451                 uint32_t __mask = ao_arch_irqsave();    \
452                 do { b } while (0);                     \
453                 ao_arch_irqrestore(__mask);             \
454         } while (0)
455
456 /* ao_usb_stm.c */
457
458 #if AO_USB_DIRECTIO
459 uint16_t *
460 ao_usb_alloc(void);
461
462 void
463 ao_usb_write(uint16_t *buffer, uint16_t len);
464
465 void
466 ao_usb_write2(uint16_t *buffer, uint16_t len);
467 #endif /* AO_USB_DIRECTIO */
468
469 #endif /* _AO_ARCH_FUNCS_H_ */