altos/stmf0: Have fast ADC ring buffer code use wrap-around
[fw/altos] / src / stmf0 / ao_adc_fast.c
1 /*
2  * Copyright © 2015 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 #include <ao_adc_fast.h>
20
21 uint16_t ao_adc_ring[AO_ADC_RING_SIZE] __attribute__((aligned(4)));
22
23 /* Maximum number of samples fetched per _ao_adc_start call */
24 #define AO_ADC_RING_CHUNK       (AO_ADC_RING_SIZE >> 1)
25
26 uint16_t ao_adc_ring_head, ao_adc_ring_remain;
27 uint16_t ao_adc_running;
28
29 /*
30  * Callback from DMA ISR
31  *
32  * Wakeup any waiting processes, mark the DMA as done, start the ADC
33  * if there's still lots of space in the ring
34  */
35 static void ao_adc_dma_done(int index)
36 {
37         (void) index;
38         ao_adc_ring_head += ao_adc_running;
39         ao_adc_ring_remain += ao_adc_running;
40         if (ao_adc_ring_head == AO_ADC_RING_SIZE)
41                 ao_adc_ring_head = 0;
42         ao_adc_running = 0;
43         ao_wakeup(&ao_adc_ring_head);
44         ao_dma_done_transfer(STM_DMA_INDEX(STM_DMA_CHANNEL_ADC_1));
45         _ao_adc_start();
46 }
47
48 void
49 _ao_adc_start(void)
50 {
51         uint16_t        *buf;
52         uint16_t        count;
53
54         if (ao_adc_running)
55                 return;
56         count = _ao_adc_space();
57         if (count == 0)
58                 return;
59         if (count > AO_ADC_RING_CHUNK)
60                 count = AO_ADC_RING_CHUNK;
61         ao_adc_running = count;
62         buf = ao_adc_ring + ao_adc_ring_head;
63         stm_adc.isr = 0;
64         ao_dma_set_transfer(STM_DMA_INDEX(STM_DMA_CHANNEL_ADC_1),
65                             &stm_adc.dr,
66                             buf,
67                             count,
68                             (0 << STM_DMA_CCR_MEM2MEM) |
69                             (STM_DMA_CCR_PL_HIGH << STM_DMA_CCR_PL) |
70                             (STM_DMA_CCR_MSIZE_16 << STM_DMA_CCR_MSIZE) |
71                             (STM_DMA_CCR_PSIZE_16 << STM_DMA_CCR_PSIZE) |
72                             (1 << STM_DMA_CCR_MINC) |
73                             (0 << STM_DMA_CCR_PINC) |
74                             (0 << STM_DMA_CCR_CIRC) |
75                             (STM_DMA_CCR_DIR_PER_TO_MEM << STM_DMA_CCR_DIR));
76         ao_dma_set_isr(STM_DMA_INDEX(STM_DMA_CHANNEL_ADC_1), ao_adc_dma_done);
77         ao_dma_start(STM_DMA_INDEX(STM_DMA_CHANNEL_ADC_1));
78
79         stm_adc.cr |= (1 << STM_ADC_CR_ADSTART);
80 }
81
82 void
83 ao_adc_init(void)
84 {
85         uint32_t        chselr;
86         int             i;
87
88         /* Reset ADC */
89         stm_rcc.apb2rstr |= (1 << STM_RCC_APB2RSTR_ADCRST);
90         stm_rcc.apb2rstr &= ~(1 << STM_RCC_APB2RSTR_ADCRST);
91
92         /* Turn on ADC pins */
93         stm_rcc.ahbenr |= AO_ADC_RCC_AHBENR;
94
95 #ifdef AO_ADC_PIN0_PORT
96         stm_moder_set(AO_ADC_PIN0_PORT, AO_ADC_PIN0_PIN, STM_MODER_ANALOG);
97 #endif
98 #ifdef AO_ADC_PIN1_PORT
99         stm_moder_set(AO_ADC_PIN1_PORT, AO_ADC_PIN1_PIN, STM_MODER_ANALOG);
100 #endif
101 #ifdef AO_ADC_PIN2_PORT
102         stm_moder_set(AO_ADC_PIN2_PORT, AO_ADC_PIN2_PIN, STM_MODER_ANALOG);
103 #endif
104 #ifdef AO_ADC_PIN3_PORT
105         stm_moder_set(AO_ADC_PIN3_PORT, AO_ADC_PIN3_PIN, STM_MODER_ANALOG);
106 #endif
107 #ifdef AO_ADC_PIN4_PORT
108         stm_moder_set(AO_ADC_PIN4_PORT, AO_ADC_PIN4_PIN, STM_MODER_ANALOG);
109 #endif
110 #ifdef AO_ADC_PIN5_PORT
111         stm_moder_set(AO_ADC_PIN5_PORT, AO_ADC_PIN5_PIN, STM_MODER_ANALOG);
112 #endif
113 #ifdef AO_ADC_PIN6_PORT
114         stm_moder_set(AO_ADC_PIN6_PORT, AO_ADC_PIN6_PIN, STM_MODER_ANALOG);
115 #endif
116 #ifdef AO_ADC_PIN7_PORT
117         stm_moder_set(AO_ADC_PIN7_PORT, AO_ADC_PIN7_PIN, STM_MODER_ANALOG);
118 #endif
119 #ifdef AO_ADC_PIN24_PORT
120         #error "Too many ADC ports"
121 #endif
122
123         stm_rcc.apb2enr |= (1 << STM_RCC_APB2ENR_ADCEN);
124
125         chselr = 0;
126 #if AO_NUM_ADC > 0
127         chselr |= (1 << AO_ADC_PIN0_CH);
128 #endif
129 #if AO_NUM_ADC > 1
130         chselr |= (1 << AO_ADC_PIN1_CH);
131 #endif
132 #if AO_NUM_ADC > 2
133         chselr |= (1 << AO_ADC_PIN2_CH);
134 #endif
135 #if AO_NUM_ADC > 3
136         chselr |= (1 << AO_ADC_PIN3_CH);
137 #endif
138 #if AO_NUM_ADC > 4
139         chselr |= (1 << AO_ADC_PIN4_CH);
140 #endif
141 #if AO_NUM_ADC > 5
142         chselr |= (1 << AO_ADC_PIN5_CH);
143 #endif
144 #if AO_NUM_ADC > 6
145         chselr |= (1 << AO_ADC_PIN6_CH);
146 #endif
147 #if AO_NUM_ADC > 7
148         chselr |= (1 << AO_ADC_PIN7_CH);
149 #endif
150 #if AO_NUM_ADC > 8
151 #error Need more ADC defines
152 #endif
153
154         /* Set the clock */
155         stm_adc.cfgr2 = STM_ADC_CFGR2_CKMODE_PCLK_2 << STM_ADC_CFGR2_CKMODE;
156
157         /* Shortest sample time */
158         stm_adc.smpr = STM_ADC_SMPR_SMP_1_5 << STM_ADC_SMPR_SMP;
159
160         /* Calibrate */
161         stm_adc.cr |= (1 << STM_ADC_CR_ADCAL);
162         for (i = 0; i < 0xf000; i++) {
163                 if ((stm_adc.cr & (1 << STM_ADC_CR_ADCAL)) == 0)
164                         break;
165         }
166
167         /* Enable */
168         stm_adc.cr |= (1 << STM_ADC_CR_ADEN);
169         while ((stm_adc.isr & (1 << STM_ADC_ISR_ADRDY)) == 0)
170                 ;
171
172         stm_adc.chselr = chselr;
173
174         stm_adc.cfgr1 = ((0 << STM_ADC_CFGR1_AWDCH) |
175                          (0 << STM_ADC_CFGR1_AWDEN) |
176                          (0 << STM_ADC_CFGR1_AWDSGL) |
177                          (0 << STM_ADC_CFGR1_DISCEN) |
178                          (0 << STM_ADC_CFGR1_AUTOOFF) |
179                          (0 << STM_ADC_CFGR1_WAIT) |
180                          (1 << STM_ADC_CFGR1_CONT) |
181                          (1 << STM_ADC_CFGR1_OVRMOD) |
182                          (STM_ADC_CFGR1_EXTEN_DISABLE << STM_ADC_CFGR1_EXTEN) |
183                          (0 << STM_ADC_CFGR1_ALIGN) |
184                          (STM_ADC_CFGR1_RES_12 << STM_ADC_CFGR1_RES) |
185                          (STM_ADC_CFGR1_SCANDIR_UP << STM_ADC_CFGR1_SCANDIR) |
186                          (STM_ADC_CFGR1_DMACFG_ONESHOT << STM_ADC_CFGR1_DMACFG) |
187                          (1 << STM_ADC_CFGR1_DMAEN));
188         stm_adc.ccr = 0;
189
190         /* Clear any stale status bits */
191         stm_adc.isr = 0;
192
193         /* Turn on syscfg */
194         stm_rcc.apb2enr |= (1 << STM_RCC_APB2ENR_SYSCFGCOMPEN);
195
196         /* Set ADC to use DMA channel 1 (option 1) */
197         stm_syscfg.cfgr1 &= ~(1 << STM_SYSCFG_CFGR1_ADC_DMA_RMP);
198
199         ao_dma_alloc(STM_DMA_INDEX(STM_DMA_CHANNEL_ADC_1));
200 }