Fix log message. Add define for temperature sensor.
[bertos.git] / bertos / cpu / cortex-m3 / drv / adc_sam3.c
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2011 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \brief ADC hardware-specific implementation
34  *
35  * \author Daniele Basile <asterix@develer.com>
36  */
37
38
39 #include "adc_sam3.h"
40
41 #include "cfg/cfg_adc.h"
42
43 #include <cfg/macros.h>
44 #include <cfg/compiler.h>
45
46 // Define log settings for cfg/log.h.
47 #define LOG_LEVEL         ADC_LOG_LEVEL
48 #define LOG_FORMAT        ADC_LOG_FORMAT
49 #include <cfg/log.h>
50
51 #include <drv/adc.h>
52 #include <drv/irq_cm3.h>
53
54 #include <cpu/irq.h>
55
56 #include <mware/event.h>
57
58 #include <io/cm3.h>
59
60
61 /* We use event to signal the end of conversion */
62 static Event data_ready;
63 /* The last converted data */
64 static uint32_t data;
65
66 /**
67  * ADC ISR.
68  *
69  * The interrupt is connected to ready data, so when the
70  * adc ends the conversion we generate an event and then
71  * we return the converted value.
72  *
73  * \note to clear the Ready data bit and End of conversion
74  * bit we should read the Last Converted Data register, otherwise
75  * the ready data interrupt loop on this call.
76  */
77 static DECLARE_ISR(adc_conversion_end_irq)
78 {
79         data = 0;
80         if (ADC_ISR & BV(ADC_DRDY))
81         {
82                 data = ADC_LDATA;
83                 event_do(&data_ready);
84         }
85 }
86
87 /**
88  * Select mux channel \a ch.
89  */
90 void adc_hw_select_ch(uint8_t ch)
91 {
92         /* Disable all channels */
93         ADC_CHDR = ADC_CH_MASK;
94         /* Enable select channel */
95         ADC_CHER = BV(ch);
96 }
97
98 /**
99  * Start an ADC convertion.
100  */
101 uint16_t adc_hw_read(void)
102 {
103         ADC_CR = BV(ADC_START);
104         event_wait(&data_ready);
105         return(data);
106 }
107
108 /**
109  * Init ADC hardware.
110  */
111 void adc_hw_init(void)
112 {
113         /* Make sure that interrupt are enabled */
114         IRQ_ASSERT_ENABLED();
115
116         /* Initialize the dataready event */
117         event_initGeneric(&data_ready);
118
119         /* Clock ADC peripheral */
120         pmc_periphEnable(ADC_ID);
121
122          /* Reset adc controller */
123         ADC_CR = ADC_SWRST;
124
125         /*
126          * Set adc mode register:
127          * - Disable hardware trigger and enable software trigger.
128          * - Select normal mode.
129          */
130         ADC_MR = 0;
131
132         /* Set ADC_BITS bit convertion resolution. */
133         #if ADC_BITS == 12
134                 ADC_MR &= ~BV(ADC_LOWRES);
135         #elif ADC_BITS == 10
136                 ADC_MR |= BV(ADC_LOWRES);
137         #else
138                 #error No select bit resolution is supported to this CPU
139         #endif
140
141         /* Setup ADC */
142         LOG_INFO("Computed ADC_CLOCK %ld\n", ADC_CLOCK);
143         ADC_MR |= ((ADC_PRESCALER << ADC_PRESCALER_SHIFT) & ADC_PRESCALER_MASK);
144         LOG_INFO("prescaler[%ld]\n", ADC_PRESCALER);
145         ADC_MR |= ((CONFIG_ADC_SUT << ADC_STARTUP_SHIFT) & ADC_STARTUP_MASK);
146         LOG_INFO("starup[%d]\n", CONFIG_ADC_SUT);
147         ADC_MR |= ((CONFIG_ADC_STTLING << ADC_SETTLING_SHIFT) & ADC_SETTLING_MASK);
148         LOG_INFO("sttime[%d]\n", CONFIG_ADC_STTLING);
149         ADC_MR |= ((CONFIG_ADC_TRACKTIM << ADC_TRACKTIM_SHIFT) & ADC_TRACKTIM_MASK);
150         LOG_INFO("tracking[%d]\n", CONFIG_ADC_TRACKTIM);
151         ADC_MR |= ((CONFIG_ADC_TRANSFER << ADC_TRANSFER_SHIFT) & ADC_TRANSFER_MASK);
152         LOG_INFO("tranfer[%d]\n", CONFIG_ADC_TRANSFER);
153
154         /* Register and enable irq for adc. */
155         sysirq_setHandler(INT_ADC, adc_conversion_end_irq);
156         ADC_IER = BV(ADC_DRDY);
157 }