summaryrefslogtreecommitdiff
path: root/tool/mbed/mbed-sdk/libraries/USBHost/USBHost/TARGET_RENESAS/TARGET_RZ_A1H/usb0/src/common/usb0_host_dma.c
blob: 57e6e5a084e839f21a405f185aa4a538e2fced5e (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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
/*******************************************************************************
* DISCLAIMER
* This software is supplied by Renesas Electronics Corporation and is only
* intended for use with Renesas products. No other uses are authorized. This
* software is owned by Renesas Electronics Corporation and is protected under
* all applicable laws, including copyright laws.
* THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING
* THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT
* LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
* AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.
* TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS
* ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE
* FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR
* ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE
* BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
* Renesas reserves the right, without notice, to make changes to this software
* and to discontinue the availability of this software. By using this software,
* you agree to the additional terms and conditions found by accessing the
* following link:
* http://www.renesas.com/disclaimer
* Copyright (C) 2012 - 2014 Renesas Electronics Corporation. All rights reserved.
*******************************************************************************/
/*******************************************************************************
* File Name    : usb0_host_dma.c
* $Rev: 1116 $
* $Date:: 2014-07-09 16:29:19 +0900#$
* Device(s)    : RZ/A1H
* Tool-Chain   :
* OS           : None
* H/W Platform :
* Description  : RZ/A1H R7S72100 USB Sample Program
* Operation    :
* Limitations  :
*******************************************************************************/


/*******************************************************************************
Includes   <System Includes> , "Project Includes"
*******************************************************************************/
#include "usb0_host.h"
/* #include "usb0_host_dmacdrv.h" */


/*******************************************************************************
Typedef definitions
*******************************************************************************/


/*******************************************************************************
Macro definitions
*******************************************************************************/


/*******************************************************************************
Imported global variables and functions (from other files)
*******************************************************************************/


/*******************************************************************************
Exported global variables and functions (to be accessed by other files)
*******************************************************************************/


/*******************************************************************************
Private global variables and functions
*******************************************************************************/
static void usb0_host_dmaint(uint16_t fifo);
static void usb0_host_dmaint_buf2fifo(uint16_t pipe);
static void usb0_host_dmaint_fifo2buf(uint16_t pipe);


/*******************************************************************************
* Function Name: usb0_host_dma_stop_d0
* Description  : D0FIFO DMA stop
* Arguments    : uint16_t pipe     : pipe number
*              : uint32_t remain   : transfer byte
* Return Value : none
*******************************************************************************/
void usb0_host_dma_stop_d0 (uint16_t pipe, uint32_t remain)
{
    uint16_t dtln;
    uint16_t dfacc;
    uint16_t buffer;
    uint16_t sds_b = 1;

    dfacc = RZA_IO_RegRead_16(&USB200.D0FBCFG,
                                USB_DnFBCFG_DFACC_SHIFT,
                                USB_DnFBCFG_DFACC);
    if (dfacc == 2)
    {
        sds_b = 32;
    }
    else if (dfacc == 1)
    {
        sds_b = 16;
    }
    else
    {
        if (g_usb0_host_DmaInfo[USB_HOST_D0FIFO].size == 2)
        {
            sds_b = 4;
        }
        else if (g_usb0_host_DmaInfo[USB_HOST_D0FIFO].size == 1)
        {
            sds_b = 2;
        }
        else
        {
            sds_b = 1;
        }
    }

    if (RZA_IO_RegRead_16(&g_usb0_host_pipecfg[pipe], USB_PIPECFG_BFRE_SHIFT, USB_PIPECFG_BFRE) == 1)
    {
        if (g_usb0_host_pipe_status[pipe] != USB_HOST_PIPE_DONE)
        {
            buffer = USB200.D0FIFOCTR;
            dtln   = (buffer & USB_HOST_BITDTLN);

            if ((dtln % sds_b) != 0)
            {
                remain += (sds_b - (dtln % sds_b));
            }
            g_usb0_host_PipeDataSize[pipe] = (g_usb0_host_data_count[pipe] - remain);
            g_usb0_host_data_count[pipe]   = remain;
        }
    }

    RZA_IO_RegWrite_16(&USB200.D0FIFOSEL,
                        0,
                        USB_DnFIFOSEL_DREQE_SHIFT,
                        USB_DnFIFOSEL_DREQE);
}

/*******************************************************************************
* Function Name: usb0_host_dma_stop_d1
* Description  : D1FIFO DMA stop
* Arguments    : uint16_t pipe     : pipe number
*              : uint32_t remain   : transfer byte
* Return Value : none
*******************************************************************************/
void usb0_host_dma_stop_d1 (uint16_t pipe, uint32_t remain)
{
    uint16_t dtln;
    uint16_t dfacc;
    uint16_t buffer;
    uint16_t sds_b = 1;

    dfacc = RZA_IO_RegRead_16(&USB200.D1FBCFG,
                                USB_DnFBCFG_DFACC_SHIFT,
                                USB_DnFBCFG_DFACC);
    if (dfacc == 2)
    {
        sds_b = 32;
    }
    else if (dfacc == 1)
    {
        sds_b = 16;
    }
    else
    {
        if (g_usb0_host_DmaInfo[USB_HOST_D1FIFO].size == 2)
        {
            sds_b = 4;
        }
        else if (g_usb0_host_DmaInfo[USB_HOST_D1FIFO].size == 1)
        {
            sds_b = 2;
        }
        else
        {
            sds_b = 1;
        }
    }

    if (RZA_IO_RegRead_16(&g_usb0_host_pipecfg[pipe], USB_PIPECFG_BFRE_SHIFT, USB_PIPECFG_BFRE) == 1)
    {
        if (g_usb0_host_pipe_status[pipe] != USB_HOST_PIPE_DONE)
        {
            buffer = USB200.D1FIFOCTR;
            dtln   = (buffer & USB_HOST_BITDTLN);

            if ((dtln % sds_b) != 0)
            {
                remain += (sds_b - (dtln % sds_b));
            }
            g_usb0_host_PipeDataSize[pipe] = (g_usb0_host_data_count[pipe] - remain);
            g_usb0_host_data_count[pipe]   = remain;
        }
    }

    RZA_IO_RegWrite_16(&USB200.D1FIFOSEL,
                        0,
                        USB_DnFIFOSEL_DREQE_SHIFT,
                        USB_DnFIFOSEL_DREQE);
}

/*******************************************************************************
* Function Name: usb0_host_dma_interrupt_d0fifo
* Description  : This function is DMA interrupt handler entry.
*              : Execute usb1_host_dmaint() after disabling DMA interrupt in this function.
*              : Disable DMA interrupt to DMAC executed when USB_HOST_D0FIFO_DMA is
*              : specified by dma->fifo.
*              : Register this function as DMA complete interrupt.
* Arguments    : uint32_t int_sense ; Interrupts detection mode
*              :                    ;  INTC_LEVEL_SENSITIVE : Level sense
*              :                    ;  INTC_EDGE_TRIGGER : Edge trigger
* Return Value : none
*******************************************************************************/
void usb0_host_dma_interrupt_d0fifo (uint32_t int_sense)
{
    usb0_host_dmaint(USB_HOST_D0FIFO);
    g_usb0_host_DmaStatus[USB_HOST_D0FIFO] = USB_HOST_DMA_READY;
}

/*******************************************************************************
* Function Name: usb0_host_dma_interrupt_d1fifo
* Description  : This function is DMA interrupt handler entry.
*              : Execute usb0_host_dmaint() after disabling DMA interrupt in this function.
*              : Disable DMA interrupt to DMAC executed when USB_HOST_D1FIFO_DMA is
*              : specified by dma->fifo.
*              : Register this function as DMA complete interrupt.
* Arguments    : uint32_t int_sense ; Interrupts detection mode
*              :                    ;  INTC_LEVEL_SENSITIVE : Level sense
*              :                    ;  INTC_EDGE_TRIGGER : Edge trigger
* Return Value : none
*******************************************************************************/
void usb0_host_dma_interrupt_d1fifo (uint32_t int_sense)
{
    usb0_host_dmaint(USB_HOST_D1FIFO);
    g_usb0_host_DmaStatus[USB_HOST_D1FIFO] = USB_HOST_DMA_READY;
}

/*******************************************************************************
* Function Name: usb0_host_dmaint
* Description  : This function is DMA transfer end interrupt
* Arguments    : uint16_t fifo  ; fifo number
*              :                ;  USB_HOST_D0FIFO
*              :                ;  USB_HOST_D1FIFO
* Return Value : none
*******************************************************************************/
static void usb0_host_dmaint (uint16_t fifo)
{
    uint16_t pipe;

    pipe = g_usb0_host_DmaPipe[fifo];

    if (g_usb0_host_DmaInfo[fifo].dir == USB_HOST_BUF2FIFO)
    {
        usb0_host_dmaint_buf2fifo(pipe);
    }
    else
    {
        usb0_host_dmaint_fifo2buf(pipe);
    }
}

/*******************************************************************************
* Function Name: usb0_host_dmaint_fifo2buf
* Description  : Executes read completion from FIFO by DMAC.
* Arguments    : uint16_t pipe       : pipe number
* Return Value : none
*******************************************************************************/
static void usb0_host_dmaint_fifo2buf (uint16_t pipe)
{
    uint32_t remain;
    uint16_t useport;

    if (g_usb0_host_pipe_status[pipe] != USB_HOST_PIPE_DONE)
    {
        useport = (uint16_t)(g_usb0_host_PipeTbl[pipe] & USB_HOST_FIFO_USE);

        if (useport == USB_HOST_D0FIFO_DMA)
        {
            remain = Userdef_USB_usb0_host_stop_dma0();
            usb0_host_dma_stop_d0(pipe, remain);

            if (RZA_IO_RegRead_16(&g_usb0_host_pipecfg[pipe], USB_PIPECFG_BFRE_SHIFT, USB_PIPECFG_BFRE) == 0)
            {
                if (g_usb0_host_DmaStatus[USB_HOST_D0FIFO] == USB_HOST_DMA_BUSYEND)
                {
                    USB200.D0FIFOCTR = USB_HOST_BITBCLR;
                    g_usb0_host_pipe_status[pipe] = USB_HOST_PIPE_DONE;
                }
                else
                {
                    usb0_host_enable_brdy_int(pipe);
                }
            }
        }
        else
        {
            remain = Userdef_USB_usb0_host_stop_dma1();
            usb0_host_dma_stop_d1(pipe, remain);

            if (RZA_IO_RegRead_16(&g_usb0_host_pipecfg[pipe], USB_PIPECFG_BFRE_SHIFT, USB_PIPECFG_BFRE) == 0)
            {
                if (g_usb0_host_DmaStatus[USB_HOST_D1FIFO] == USB_HOST_DMA_BUSYEND)
                {
                    USB200.D1FIFOCTR = USB_HOST_BITBCLR;
                    g_usb0_host_pipe_status[pipe] = USB_HOST_PIPE_DONE;
                }
                else
                {
                    usb0_host_enable_brdy_int(pipe);
                }
            }
        }
    }
}

/*******************************************************************************
* Function Name: usb0_host_dmaint_buf2fifo
* Description  : Executes write completion in FIFO by DMAC.
* Arguments    : uint16_t pipe     : pipe number
* Return Value : none
*******************************************************************************/
static void usb0_host_dmaint_buf2fifo (uint16_t pipe)
{
    uint16_t useport;
    uint32_t remain;

    useport = (uint16_t)(g_usb0_host_PipeTbl[pipe] & USB_HOST_FIFO_USE);

    if (useport == USB_HOST_D0FIFO_DMA)
    {
        remain = Userdef_USB_usb0_host_stop_dma0();
        usb0_host_dma_stop_d0(pipe, remain);

        if (g_usb0_host_DmaBval[USB_HOST_D0FIFO] != 0)
        {
            RZA_IO_RegWrite_16(&USB200.D0FIFOCTR,
                                1,
                                USB_DnFIFOCTR_BVAL_SHIFT,
                                USB_DnFIFOCTR_BVAL);
        }
    }
    else
    {
        remain = Userdef_USB_usb0_host_stop_dma1();
        usb0_host_dma_stop_d1(pipe, remain);

        if (g_usb0_host_DmaBval[USB_HOST_D1FIFO] != 0)
        {
            RZA_IO_RegWrite_16(&USB200.D1FIFOCTR,
                                1,
                                USB_DnFIFOCTR_BVAL_SHIFT,
                                USB_DnFIFOCTR_BVAL);
        }
    }

    usb0_host_enable_bemp_int(pipe);
}

/* End of File */