aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/LPC17xx/adc_lld.c
blob: aebd04b38b65dc7f2571ad7642ecd71ecf51bbb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
/*
    ChibiOS/RT - Copyright (C) 2006-2013 Giovanni Di Sirio
    LPC17xx ADC driver - Copyright (C) 2013 Marcin Jokel

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

/**
 * @file    LPC17xx/adc_lld.c
 * @brief   LPC17xx ADC subsystem low level driver source.
 * @note    Values in samples buffer are from DR register.
 *          To get ADC values make conversion (DR >> 6) & 0x03FF.
 *          DMA only support one ADC channel.
 * @addtogroup ADC
 * @{
 */

#include "ch.h"
#include "hal.h"

#if HAL_USE_ADC || defined(__DOXYGEN__)

/*===========================================================================*/
/* Driver local definitions.                                                 */
/*===========================================================================*/


/*===========================================================================*/
/* Driver exported variables.                                                */
/*===========================================================================*/

/** @brief ADC1 driver identifier.*/
ADCDriver ADCD1;

/*===========================================================================*/
/* Driver local variables and types.                                         */
/*===========================================================================*/

static lpc17xx_dma_lli_config_t lpc_adc_lli[2] __attribute__((aligned(0x10)));

/*===========================================================================*/
/* Driver local functions.                                                   */
/*===========================================================================*/

#if LPC17xx_ADC_USE_DMA
/**
 * @brief   Common IRQ handler.
 *
 * @param[in] adcp      pointer to the @p ADCDriver object
 */
static void adc_serve_dma_interrupt(ADCDriver *adcp, uint32_t flags) {
  (void) flags;

  if ((flags & (1 << LPC17xx_ADC_DMA_CHANNEL)) != 0) {
     _adc_isr_error_code(adcp, flags);              /* DMA errors handling.*/
   }
  else if (adcp->half_buffer == false) {
    _adc_isr_half_code(adcp);
    adcp->half_buffer = true;
  }
  else {
    _adc_isr_full_code(adcp);
    adcp->half_buffer = false;
  }
}
#endif
/*===========================================================================*/
/* Driver interrupt handlers.                                                */
/*===========================================================================*/

/**
 * @brief   ADC interrupt handler.
 *
 * @isr
 */
CH_IRQ_HANDLER(Vector98) {
  uint32_t status;
  uint32_t n;
  uint8_t i;

  CH_IRQ_PROLOGUE();
  status = LPC_ADC->STAT;

  n = ADCD1.num;

  /* Note, an overrun may occur only in burst mode, if one or more
     conversions was (were) lost. */
  if ((status & ADC0STAT_OVERRUN_MASK)) {
    if (ADCD1.grpp != NULL)
      _adc_isr_error_code(&ADCD1, ADC_ERR_OVERRUN);
  }
  else {

    status = status & ADC0STAT_DONE_MASK;
    for (i = 0; i < ADC_MAX_CHANNELS; i++) {
      if (status & (0x01 << i)) {
        ADCD1.samples[n] = LPC_ADC->DR[i];
        n++;
      }
    }

    if (n == (ADCD1.nsamples / 2)) {
      _adc_isr_half_code(&ADCD1);
    }

    if (n == ADCD1.nsamples) {
      n = 0;
      _adc_isr_full_code(&ADCD1);
    }
  }
  ADCD1.num = n;
  CH_IRQ_EPILOGUE();
}


/*===========================================================================*/
/* Driver exported functions.                                                */
/*===========================================================================*/

/**
 * @brief   Low level ADC driver initialization.
 *
 * @notapi
 */
void adc_lld_init(void) {

  /* Driver initialization.*/
  adcObjectInit(&ADCD1);
  ADCD1.adc = LPC_ADC;

#if LPC17xx_ADC_USE_DMA
  nvicDisableVector(ADC_IRQn);
#else
  nvicEnableVector(ADC_IRQn, CORTEX_PRIORITY_MASK(LPC17xx_ADC_IRQ_PRIORITY));
#endif
}

/**
 * @brief   Configures and activates the ADC peripheral.
 *
 * @param[in] adcp      pointer to the @p ADCDriver object
 *
 * @notapi
 */
void adc_lld_start(ADCDriver *adcp) {

  /* If in stopped state then enables the ADC. */
  if (adcp->state == ADC_STOP) {
    LPC_SC->PCONP |= (1UL << 12);            /* Enable ADC power */

#if LPC17xx_ADC_USE_DMA
  dmaChannelAllocate(LPC17xx_ADC_DMA_CHANNEL, \
                     (lpc17xx_dmaisr_t)adc_serve_dma_interrupt, \
                     (void *)adcp);
#endif
  }
}

/**
 * @brief   Deactivates the ADC peripheral.
 *
 * @param[in] adcp      pointer to the @p ADCDriver object
 *
 * @notapi
 */
void adc_lld_stop(ADCDriver *adcp) {

  /* If in ready state then disables the ADC clock.*/
  if (adcp->state == ADC_READY) {
    adcp->adc->CR = 0;                              /* Clear PDN bit */
    LPC_SC->PCONP &= ~(1UL << 12);                  /* Disable ADC power */

#if LPC17xx_ADC_USE_DMA
    dmaChannelRelease(LPC17xx_ADC_DMA_CHANNEL);
#endif
  }
}

/**
 * @brief   Starts an ADC conversion.
 *
 * @param[in] adcp      pointer to the @p ADCDriver object
 *
 * @notapi
 */
void adc_lld_start_conversion(ADCDriver *adcp) {

  uint32_t dummy;
  uint32_t cr;
  uint8_t i;

#if LPC17xx_ADC_USE_DMA
  uint32_t dma_ch_config;
  uint8_t ch;
#endif

  cr = adcp->grpp->cr0;
  adcp->num = 0;
  adcp->nsamples = adcp->depth * adcp->grpp->num_channels;

  for (i = 0; i < ADC_MAX_CHANNELS; i++) {
    dummy = adcp->adc->DR[i];  /* Clear all DONE and OVERRUN flags. */
  }

#if LPC17xx_ADC_USE_DMA
  adcp->half_buffer = false;

  ch = 0;
  for (i = 0; i < 8; i++) {
    if (cr & (1UL << i)) {
      ch = i;                  /* Get number of first enabled channel. */
      break;
    }
  }

  /* DMA configuration */
  lpc_adc_lli[0].srcaddr = (uint32_t)&adcp->adc->DR[ch];
  lpc_adc_lli[0].dstaddr = (uint32_t)&adcp->samples[0];
  lpc_adc_lli[0].lli = (uint32_t) &lpc_adc_lli[1];
  lpc_adc_lli[0].control =
    DMA_CTRL_TRANSFER_SIZE(adcp->nsamples/2)    |
    DMA_CTRL_SRC_BSIZE_1                        |
    DMA_CTRL_DST_BSIZE_1                        |
    DMA_CTRL_SRC_WIDTH_WORD                     |
    DMA_CTRL_DST_WIDTH_WORD                     |
    DMA_CTRL_SRC_NOINC                          |
    DMA_CTRL_DST_INC                            |
    DMA_CTRL_PROT1_USER                         |
    DMA_CTRL_PROT2_NONBUFF                      |
    DMA_CTRL_PROT3_NONCACHE                     |
    DMA_CTRL_INT;

  lpc_adc_lli[1].srcaddr = lpc_adc_lli[0].srcaddr;
  lpc_adc_lli[1].dstaddr = (uint32_t)&adcp->samples[adcp->nsamples/2];
  lpc_adc_lli[1].control = lpc_adc_lli[0].control;

  if (adcp->grpp->circular == true) {
    lpc_adc_lli[1].lli = (uint32_t) &lpc_adc_lli[0];
  }
  else {
    lpc_adc_lli[1].lli = 0;
  }

  dma_ch_config =
    DMA_CFG_CH_ENABLE           |
    DMA_CFG_SRC_PERIPH(DMA_ADC) |
    DMA_CFG_TTYPE_P2M           |
    DMA_CFG_IE                  |
    DMA_CFG_ITC;

  dmaChannelSrcAddr(LPC17xx_ADC_DMA_CHANNEL, lpc_adc_lli[0].srcaddr);
  dmaChannelDstAddr(LPC17xx_ADC_DMA_CHANNEL, lpc_adc_lli[0].dstaddr);
  dmaChannelLinkedList(LPC17xx_ADC_DMA_CHANNEL, lpc_adc_lli[0].lli);
  dmaChannelControl(LPC17xx_ADC_DMA_CHANNEL, lpc_adc_lli[0].control);
  dmaChannelConfig(LPC17xx_ADC_DMA_CHANNEL, dma_ch_config);
#endif

  /* ADC configuration and conversion start. */
  adcp->adc->INTEN = adcp->grpp->inten;  /* Set ADC interrupt on selected channels */
  adcp->adc->CR = (cr & 0x0000FFFF) | ((LPC17xx_ADC_CLKDIV - 1) << 8) | AD0CR_PDN;
  adcp->adc->CR |= cr & 0xFFFF0000;

}

/**
 * @brief   Stops an ongoing conversion.
 *
 * @param[in] adcp      pointer to the @p ADCDriver object
 *
 * @notapi
 */
void adc_lld_stop_conversion(ADCDriver *adcp) {

#if LPC17xx_ADC_USE_DMA
  dmaChannelDisable(LPC17xx_ADC_DMA_CHANNEL);
#endif
  adcp->adc->CR &= ~(AD0CR_MODE_BURST | AD0CR_START_MASK);  /* Disable ADC conversion. */
  adcp->adc->INTEN = 0;                                     /* Mask ADC interrupts. */
}


#endif /* HAL_USE_ADC */

/** @} */