summaryrefslogtreecommitdiff
path: root/tool/mbed/mbed-sdk/libraries/USBDevice/USBDevice/TARGET_RENESAS/TARGET_RZ_A1H/usb1/src/common/usb1_function_intrn.c
blob: bdcc9a8f787efaa0f9236b183280f7e3adfcd6ff (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
/*******************************************************************************
* 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    : usb1_function_intrn.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 "usb1_function.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
*******************************************************************************/


/*******************************************************************************
* Function Name: usb1_function_brdy_int
* Description  : Executes BRDY interrupt(USB_FUNCTION_PIPE1-9).
*              : According to the pipe that interrupt is generated in,
*              : reads/writes buffer allocated in the pipe.
*              : This function is executed in the BRDY interrupt handler.
*              : This function clears BRDY interrupt status and BEMP interrupt
*              : status.
* Arguments    : uint16_t Status       ; BRDYSTS Register Value
*              : uint16_t Int_enbl     ; BRDYENB Register Value
* Return Value : none
*******************************************************************************/
#if 0
void usb1_function_brdy_int (uint16_t status, uint16_t int_enb)
{
    uint32_t int_sense = 0;
    uint16_t pipe;
    uint16_t pipebit;

    for (pipe = USB_FUNCTION_PIPE1; pipe <= USB_FUNCTION_MAX_PIPE_NO; pipe++)
    {
        pipebit = g_usb1_function_bit_set[pipe];

        if ((status & pipebit) && (int_enb & pipebit))
        {
            USB201.BRDYSTS = (uint16_t)~pipebit;
            USB201.BEMPSTS = (uint16_t)~pipebit;
            if ((g_usb1_function_PipeTbl[pipe] & USB_FUNCTION_FIFO_USE) == USB_FUNCTION_D0FIFO_DMA)
            {
                if (g_usb1_function_DmaStatus[USB_FUNCTION_D0FIFO] != USB_FUNCTION_DMA_READY)
                {
                    usb1_function_dma_interrupt_d0fifo(int_sense);
                }

                if (RZA_IO_RegRead_16(&g_usb1_function_pipecfg[pipe], USB_PIPECFG_BFRE_SHIFT, USB_PIPECFG_BFRE) == 0)
                {
                    usb1_function_read_dma(pipe);
                    usb1_function_disable_brdy_int(pipe);
                }
                else
                {
                    USB201.D0FIFOCTR = USB_FUNCTION_BITBCLR;
                    g_usb1_function_pipe_status[pipe] = DEVDRV_USBF_PIPE_DONE;
                }
            }
            else if ((g_usb1_function_PipeTbl[pipe] & USB_FUNCTION_FIFO_USE) == USB_FUNCTION_D1FIFO_DMA)
            {
                if (g_usb1_function_DmaStatus[USB_FUNCTION_D1FIFO] != USB_FUNCTION_DMA_READY)
                {
                    usb1_function_dma_interrupt_d1fifo(int_sense);
                }

                if (RZA_IO_RegRead_16(&g_usb1_function_pipecfg[pipe], USB_PIPECFG_BFRE_SHIFT, USB_PIPECFG_BFRE) == 0)
                {
                    usb1_function_read_dma(pipe);
                    usb1_function_disable_brdy_int(pipe);
                }
                else
                {
                    USB201.D1FIFOCTR = USB_FUNCTION_BITBCLR;
                    g_usb1_function_pipe_status[pipe] = DEVDRV_USBF_PIPE_DONE;
                }
            }
            else
            {
                if (RZA_IO_RegRead_16(&g_usb1_function_pipecfg[pipe], USB_PIPECFG_DIR_SHIFT, USB_PIPECFG_DIR) == 0)
                {
                    usb1_function_read_buffer(pipe);
                }
                else
                {
                    usb1_function_write_buffer(pipe);
                }
            }
        }
    }
}
#endif

/*******************************************************************************
* Function Name: usb1_function_nrdy_int
* Description  : Executes NRDY interrupt(USB_FUNCTION_PIPE1-9).
*              : Checks NRDY interrupt cause by PID. When the cause if STALL,
*              : regards the pipe state as STALL and ends the processing.
*              : Then the cause is not STALL, increments the error count to
*              : communicate again. When the error count is 3, determines
*              : the pipe state as DEVDRV_USBF_PIPE_NORES and ends the processing.
*              : This function is executed in the NRDY interrupt handler.
*              : This function clears NRDY interrupt status.
* Arguments    : uint16_t status       ; NRDYSTS Register Value
*              : uint16_t int_enb      ; NRDYENB Register Value
* Return Value : none
*******************************************************************************/
void usb1_function_nrdy_int (uint16_t status, uint16_t int_enb)
{
    uint16_t pid;
    uint16_t pipe;
    uint16_t bitcheck;

    bitcheck = (uint16_t)(status & int_enb);

    USB201.NRDYSTS = (uint16_t)~status;

    for (pipe = USB_FUNCTION_PIPE1; pipe <= USB_FUNCTION_MAX_PIPE_NO; pipe++)
    {
        if ((bitcheck&g_usb1_function_bit_set[pipe]) == g_usb1_function_bit_set[pipe])
        {
            if (RZA_IO_RegRead_16(&USB201.SYSCFG0, USB_SYSCFG_DCFM_SHIFT, USB_SYSCFG_DCFM) == 1)
            {
                if (g_usb1_function_pipe_status[pipe] == DEVDRV_USBF_PIPE_WAIT)
                {
                    pid = usb1_function_get_pid(pipe);
                    if ((pid == DEVDRV_USBF_PID_STALL) || (pid == DEVDRV_USBF_PID_STALL2))
                    {
                        g_usb1_function_pipe_status[pipe] = DEVDRV_USBF_PIPE_STALL;
                    }
                    else
                    {
                        g_usb1_function_PipeIgnore[pipe]++;
                        if (g_usb1_function_PipeIgnore[pipe] == 3)
                        {
                            g_usb1_function_pipe_status[pipe] = DEVDRV_USBF_PIPE_NORES;
                        }
                        else
                        {
                            usb1_function_set_pid_buf(pipe);
                        }
                    }
                }
            }
            else
            {
                /* USB Function */
            }
        }
    }
}

/*******************************************************************************
* Function Name: usb1_function_bemp_int
* Description  : Executes BEMP interrupt(USB_FUNCTION_PIPE1-9).
* Arguments    : uint16_t status       ; BEMPSTS Register Value
*              : uint16_t int_enb      ; BEMPENB Register Value
* Return Value : none
*******************************************************************************/
void usb1_function_bemp_int (uint16_t status, uint16_t int_enb)
{
    uint16_t pid;
    uint16_t pipe;
    uint16_t bitcheck;
    uint16_t inbuf;

    bitcheck = (uint16_t)(status & int_enb);

    USB201.BEMPSTS = (uint16_t)~status;

    for (pipe = USB_FUNCTION_PIPE1; pipe <= USB_FUNCTION_MAX_PIPE_NO; pipe++)
    {
        if ((bitcheck&g_usb1_function_bit_set[pipe]) == g_usb1_function_bit_set[pipe])
        {
            pid = usb1_function_get_pid(pipe);

            if ((pid == DEVDRV_USBF_PID_STALL) || (pid == DEVDRV_USBF_PID_STALL2))
            {
                g_usb1_function_pipe_status[pipe] = DEVDRV_USBF_PIPE_STALL;
            }
            else
            {
                inbuf = usb1_function_get_inbuf(pipe);

                if (inbuf == 0)
                {
                    usb1_function_disable_bemp_int(pipe);
                    usb1_function_set_pid_nak(pipe);
                    g_usb1_function_pipe_status[pipe] = DEVDRV_USBF_PIPE_DONE;
                }
            }
        }
    }
}

/* End of File */