Use dmac module. Rename hsmci function to read/write.
[bertos.git] / bertos / cpu / cortex-m3 / drv / hsmci_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
38 #include "hsmci_sam3.h"
39 #include "hw/hw_sd.h"
40
41 #include <drv/timer.h>
42 #include <drv/irq_cm3.h>
43 #include <drv/dmac_sam3.h>
44
45 #include <cpu/irq.h>
46
47 #include <io/cm3.h>
48
49
50 #define HSMCI_CLK_DIV(RATE)     ((CPU_FREQ / (RATE << 1)) - 1)
51
52
53 #define HSMCI_RESP_ERROR_MASK   (BV(HSMCI_SR_RINDE) | BV(HSMCI_SR_RDIRE) \
54           | BV(HSMCI_SR_RENDE)| BV(HSMCI_SR_RTOE))
55
56 #define HSMCI_DATA_ERROR_MASK   (BV(HSMCI_SR_DCRCE) | BV(HSMCI_SR_DTOE))
57
58 #define HSMCI_READY_MASK     (BV(HSMCI_SR_CMDRDY) | BV(HSMCI_SR_NOTBUSY))
59 #define HSMCI_WAIT()\
60         do { \
61                 cpu_relax(); \
62         } while (!(HSMCI_SR & BV(HSMCI_SR_CMDRDY)))
63
64
65 #define HSMCI_WAIT_DATA_RDY()\
66         do { \
67                 cpu_relax(); \
68         } while (!(HSMCI_SR & BV(HSMCI_SR_RXRDY)))
69
70
71 static Dmac dmac;
72
73 static DECLARE_ISR(hsmci_irq)
74 {
75         uint32_t status = HSMCI_SR;
76         if (status & BV(HSMCI_IER_DMADONE))
77         {
78         }
79 }
80
81
82 void hsmci_readResp(uint32_t *resp, size_t len)
83 {
84         ASSERT(resp);
85
86         for (size_t i = 0; i < len ; i++)
87                 resp[i] = HSMCI_RSPR;
88 }
89
90 bool hsmci_sendCmd(uint8_t index, uint32_t argument, uint32_t reply_type)
91 {
92         HSMCI_WAIT();
93
94         HSMCI_ARGR = argument;
95         HSMCI_CMDR = index | reply_type | BV(HSMCI_CMDR_MAXLAT);
96
97         uint32_t status = HSMCI_SR;
98         while (!(status & BV(HSMCI_SR_CMDRDY)))
99         {
100                 if (status & HSMCI_RESP_ERROR_MASK)
101                         return status;
102
103                 cpu_relax();
104
105                 status = HSMCI_SR;
106         }
107
108         return 0;
109 }
110
111 void hsmci_write(const uint32_t *buf, size_t word_num, size_t blk_size)
112 {
113         HSMCI_DMA |= BV(HSMCI_DMA_DMAEN);
114         HSMCI_BLKR = blk_size << HSMCI_BLKR_BLKLEN_SHIFT;
115
116         uint32_t cfg = BV(DMAC_CFG_DST_H2SEL);
117         uint32_t ctrla = DMAC_CTRLA_SRC_WIDTH_WORD | DMAC_CTRLA_DST_WIDTH_WORD;
118         uint32_t ctrlb = BV(DMAC_CTRLB_SRC_DSCR) | BV(DMAC_CTRLB_DST_DSCR) |
119                                                 DMAC_CTRLB_FC_MEM2PER_DMA_FC |
120                                                 DMAC_CTRLB_DST_INCR_FIXED | DMAC_CTRLB_SRC_INCR_INCREMENTING;
121
122         ASSERT(!(DMAC_CHSR & BV(DMAC_CHSR_ENA0)));
123         DMAC_CHER = BV(DMAC_CHER_ENA0);
124
125         dmac_setSources(&dmac, 0, (uint32_t)buf, (uint32_t)&HSMCI_TDR,  word_num);
126         dmac_configureDmac(&dmac, 0, cfg, ctrla, ctrlb);
127         dmac_start(&dmac, 0);
128 }
129
130 void hsmci_read(uint32_t *buf, size_t word_num, size_t blk_size)
131 {
132         HSMCI_DMA |= BV(HSMCI_DMA_DMAEN);
133         HSMCI_BLKR = blk_size << HSMCI_BLKR_BLKLEN_SHIFT;
134
135         uint32_t cfg = BV(DMAC_CFG_SRC_H2SEL);
136         uint32_t ctrla = DMAC_CTRLA_SRC_WIDTH_WORD | DMAC_CTRLA_DST_WIDTH_WORD;
137         uint32_t ctrlb = BV(DMAC_CTRLB_SRC_DSCR) | BV(DMAC_CTRLB_DST_DSCR) |
138                                                 DMAC_CTRLB_FC_PER2MEM_DMA_FC |
139                                                 DMAC_CTRLB_DST_INCR_INCREMENTING | DMAC_CTRLB_SRC_INCR_FIXED;
140
141         dmac_setSources(&dmac, 0, (uint32_t)&HSMCI_RDR, (uint32_t)buf, word_num);
142         dmac_configureDmac(&dmac, 0, cfg, ctrla, ctrlb);
143         dmac_start(&dmac, 0);
144 }
145
146
147 void hsmci_waitTransfer(void)
148 {
149         while (!(HSMCI_SR & BV(HSMCI_SR_XFRDONE)))
150                 cpu_relax();
151 }
152
153 void hsmci_setSpeed(uint32_t data_rate, int flag)
154 {
155         if (flag & HSMCI_HS_MODE)
156                 HSMCI_CFG |= BV(HSMCI_CFG_HSMODE);
157         else
158                 HSMCI_CFG &= ~BV(HSMCI_CFG_HSMODE);
159
160         HSMCI_MR = HSMCI_CLK_DIV(data_rate) | ((0x7u << HSMCI_MR_PWSDIV_SHIFT) & HSMCI_MR_PWSDIV_MASK);
161
162         timer_delay(10);
163 }
164
165 void hsmci_init(Hsmci *hsmci)
166 {
167         (void)hsmci;
168
169         SD_PIN_INIT();
170
171         pmc_periphEnable(HSMCI_ID);
172         HSMCI_CR = BV(HSMCI_CR_SWRST);
173         HSMCI_CR = BV(HSMCI_CR_PWSDIS) | BV(HSMCI_CR_MCIDIS);
174         HSMCI_IDR = 0xFFFFFFFF;
175
176         HSMCI_DTOR = 0xFF | HSMCI_DTOR_DTOMUL_1048576;
177         HSMCI_CSTOR = 0xFF | HSMCI_CSTOR_CSTOMUL_1048576;
178         HSMCI_MR = HSMCI_CLK_DIV(HSMCI_INIT_SPEED) | ((0x7u << HSMCI_MR_PWSDIV_SHIFT) & HSMCI_MR_PWSDIV_MASK) | BV(HSMCI_MR_RDPROOF);
179         HSMCI_CFG = BV(HSMCI_CFG_FIFOMODE) | BV(HSMCI_CFG_FERRCTRL);
180
181         sysirq_setHandler(INT_HSMCI, hsmci_irq);
182         HSMCI_CR = BV(HSMCI_CR_MCIEN);
183         HSMCI_DMA = 0;
184
185         dmac_init(&dmac);
186 }