Move dmac setting to application.
[bertos.git] / bertos / cpu / cortex-m3 / drv / dmac_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  * \brief HSMCI driver implementation.
33  *
34  * \author Daniele Basile <asterix@develer.com>
35  */
36
37 #include "dmac_sam3.h"
38 #include <drv/irq_cm3.h>
39
40 #include <cpu/irq.h>
41 #include <cpu/power.h>
42
43 #include <io/cm3.h>
44
45 #include <mware/event.h>
46
47 #include <string.h>
48
49 struct DmacCh
50 {
51         reg32_t *src;
52         reg32_t *dst;
53         reg32_t *desc;
54         reg32_t *cfg;
55         reg32_t *ctrla;
56         reg32_t *ctrlb;
57 };
58
59 #define DMAC_CHANNEL_CNT   6
60 struct DmacCh dmac_ch[] =
61 {
62         {
63                 .src = &DMAC_SADDR0,
64                 .dst = &DMAC_DADDR0,
65                 .desc = &DMAC_DSCR0,
66                 .cfg = &DMAC_CFG0,
67                 .ctrla = &DMAC_CTRLA0,
68                 .ctrlb = &DMAC_CTRLB0,
69         },
70         {
71                 .src = &DMAC_SADDR1,
72                 .dst = &DMAC_DADDR1,
73                 .desc = &DMAC_DSCR1,
74                 .cfg = &DMAC_CFG1,
75                 .ctrla = &DMAC_CTRLA1,
76                 .ctrlb = &DMAC_CTRLB1,
77         },
78         {
79                 .src = &DMAC_SADDR2,
80                 .dst = &DMAC_DADDR2,
81                 .desc = &DMAC_DSCR2,
82                 .cfg = &DMAC_CFG2,
83                 .ctrla = &DMAC_CTRLA2,
84                 .ctrlb = &DMAC_CTRLB2,
85         },
86         {
87                 .src = &DMAC_SADDR3,
88                 .dst = &DMAC_DADDR3,
89                 .desc = &DMAC_DSCR3,
90                 .cfg = &DMAC_CFG3,
91                 .ctrla = &DMAC_CTRLA3,
92                 .ctrlb = &DMAC_CTRLB3,
93         },
94         {
95                 .src = &DMAC_SADDR4,
96                 .dst = &DMAC_DADDR4,
97                 .desc = &DMAC_DSCR4,
98                 .cfg = &DMAC_CFG4,
99                 .ctrla = &DMAC_CTRLA4,
100                 .ctrlb = &DMAC_CTRLB4,
101         },
102         {
103                 .src = &DMAC_SADDR5,
104                 .dst = &DMAC_DADDR5,
105                 .desc = &DMAC_DSCR5,
106                 .cfg = &DMAC_CFG5,
107                 .ctrla = &DMAC_CTRLA5,
108                 .ctrlb = &DMAC_CTRLB5,
109         },
110 };
111
112 /* We use event to signal the end of conversion */
113 static Dmac dmac[DMAC_CHANNEL_CNT];
114 static uint8_t dmac_ch_enabled;
115
116 void dmac_setLLITransfer(int ch, DmacDesc *lli, uint32_t cfg)
117 {
118         DMAC_CHDR = BV(ch);
119         reg32_t reg = DMAC_EBCISR;
120         (void)reg;
121
122         *dmac_ch[ch].cfg = cfg | DMAC_CFG_FIFOCFG_ALAP_CFG | (0x1 << DMAC_CFG_AHB_PROT_SHIFT);
123         *dmac_ch[ch].desc = (uint32_t)lli;
124 }
125
126 void dmac_setSources(int ch, uint32_t src, uint32_t dst)
127 {
128         DMAC_CHDR = BV(ch);
129
130         *dmac_ch[ch].src = src;
131         *dmac_ch[ch].dst = dst;
132         *dmac_ch[ch].desc = 0;
133 }
134
135 void dmac_configureDmac(int ch, size_t transfer_size, uint32_t cfg, uint32_t ctrla, uint32_t ctrlb)
136 {
137         DMAC_CHDR = BV(ch);
138
139         *dmac_ch[ch].cfg = cfg | DMAC_CFG_FIFOCFG_ALAP_CFG | (0x1 << DMAC_CFG_AHB_PROT_SHIFT);
140         *dmac_ch[ch].ctrla = ctrla | (transfer_size & DMAC_CTRLA_BTSIZE_MASK);
141         *dmac_ch[ch].ctrlb = ctrlb & ~BV(DMAC_CTRLB_IEN);
142 }
143
144 int dmac_start(int ch)
145 {
146         if (DMAC_CHSR & BV(ch))
147         {
148                 dmac[ch].errors |= DMAC_ERR_CH_ALREDY_ON;
149                 return -1;
150         }
151         DMAC_CHER = BV(ch);
152         dmac_ch_enabled |= BV(ch);
153         return 0;
154 }
155
156 void dmac_stop(int ch)
157 {
158         DMAC_CHDR = BV(ch);
159         dmac_ch_enabled &= ~BV(ch);
160 }
161
162 int dmac_error(int ch)
163 {
164         uint32_t err = ((DMAC_EBCISR & 0x3F0000) | dmac[ch].errors);
165         dmac[ch].errors = 0;
166         return err;
167 }
168
169 static DECLARE_ISR(dmac_irq)
170 {
171         uint32_t status = DMAC_EBCISR;
172         uint32_t irq_ch = (status & (((dmac_ch_enabled |
173                                                                 (dmac_ch_enabled << DMAC_EBCIDR_ERR0) >> DMAC_EBCIDR_ERR0) |
174                                                                 (dmac_ch_enabled << DMAC_EBCIDR_CBTC0) >> DMAC_EBCIDR_CBTC0) & 0xFF));
175         if (irq_ch)
176                 for(int i = 0; i < 6; i++)
177                 {
178                         if (BV(i) & irq_ch)
179                                 if(dmac[i].handler)
180                                         dmac[i].handler(status);
181                 }
182 }
183
184 bool dmac_enableCh(int ch, dmac_handler_t handler)
185 {
186         ASSERT(ch <= DMAC_CHANNEL_CNT);
187
188         dmac_ch_enabled |= BV(ch);
189         if (handler)
190         {
191                 dmac[ch].handler = handler;
192                 DMAC_EBCIER |= (BV(ch) << DMAC_EBCIER_BTC0) | (BV(ch) << DMAC_EBCIDR_CBTC0) | (BV(ch) << DMAC_EBCIDR_ERR0);
193                 kprintf("Init dmac ch[%08lx]\n", DMAC_EBCIMR);
194         }
195
196         return true;
197 }
198
199 void dmac_init(void)
200 {
201         dmac_ch_enabled = 0;
202         memset(&dmac, 0, sizeof(dmac));
203
204         //init DMAC
205         DMAC_EBCIDR = 0x3FFFFF;
206         DMAC_CHDR = 0x1F;
207
208         pmc_periphEnable(DMAC_ID);
209         DMAC_EN = BV(DMAC_EN_ENABLE);
210
211         sysirq_setHandler(INT_DMAC, dmac_irq);
212 }