summaryrefslogtreecommitdiff
path: root/common/core/src/ux_hcd_sim_host_entry.c
blob: 65f79833334e7e51fa7a881f3cd1f0f4e40d1937 (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
/***************************************************************************
 * Copyright (c) 2024 Microsoft Corporation
 * Copyright (c) 2026-present Eclipse ThreadX contributors
 *
 * This program and the accompanying materials are made available under the
 * terms of the MIT License which is available at
 * https://opensource.org/licenses/MIT.
 *
 * SPDX-License-Identifier: MIT
 **************************************************************************/


/**************************************************************************/
/**************************************************************************/
/**                                                                       */
/** USBX Component                                                        */
/**                                                                       */
/**   Host Simulator Controller Driver                                    */
/**                                                                       */
/**************************************************************************/
/**************************************************************************/

#define UX_SOURCE_CODE


/* Include necessary system files.  */

#include "ux_api.h"
#include "ux_hcd_sim_host.h"


/**************************************************************************/
/*                                                                        */
/*  FUNCTION                                               RELEASE        */
/*                                                                        */
/*    _ux_hcd_sim_host_entry                              PORTABLE C      */
/*                                                           6.1.10       */
/*  AUTHOR                                                                */
/*                                                                        */
/*    Chaoqiong Xiao, Microsoft Corporation                               */
/*                                                                        */
/*  DESCRIPTION                                                           */
/*                                                                        */
/*    This function dispatch the HCD function internally to the simulator */
/*    controller driver.                                                  */
/*                                                                        */
/*  INPUT                                                                 */
/*                                                                        */
/*    hcd                                   Pointer to HCD                */
/*    function                              Function for driver to perform*/
/*    parameter                             Pointer to parameter(s)       */
/*                                                                        */
/*  OUTPUT                                                                */
/*                                                                        */
/*    Completion Status                                                   */
/*                                                                        */
/*  CALLS                                                                 */
/*                                                                        */
/*  _ux_hcd_sim_host_asynch_queue_process          Process asynch queue   */
/*  _ux_hcd_sim_host_asynch_schedule               Schedule async work    */
/*  _ux_hcd_sim_host_asynchronous_endpoint_create  Create async endpoint  */
/*  _ux_hcd_sim_host_asynchronous_endpoint_destroy Destroy async endpoint */
/*  _ux_hcd_sim_host_endpoint_reset                Reset endpoint         */
/*  _ux_hcd_sim_host_frame_number_get              Get frame number       */
/*  _ux_hcd_sim_host_interrupt_endpoint_create     Create endpoint        */
/*  _ux_hcd_sim_host_iso_queue_process             Process iso queue      */
/*  _ux_hcd_sim_host_iso_schedule                  Schedule iso work      */
/*  _ux_hcd_sim_host_isochronous_endpoint_create   Create iso endpoint    */
/*  _ux_hcd_sim_host_periodic_endpoint_destroy     Destroy endpoint       */
/*  _ux_hcd_sim_host_periodic_schedule             Schedule periodic      */
/*  _ux_hcd_sim_host_port_status_get               Get port status        */
/*  _ux_hcd_sim_host_port_reset                    Reset port             */
/*  _ux_hcd_sim_host_request_transfer              Request transfer       */
/*  _ux_hcd_sim_host_transfer_abort                Abort transfer         */
/*                                                                        */
/*  CALLED BY                                                             */
/*                                                                        */
/*    Host Stack                                                          */
/*                                                                        */
/**************************************************************************/
UINT  _ux_hcd_sim_host_entry(UX_HCD *hcd, UINT function, VOID *parameter)
{

UINT                status = 0;
UX_HCD_SIM_HOST     *hcd_sim_host;


    /* Check the status of the controller.  */
    if (hcd -> ux_hcd_status == UX_UNUSED)
    {

        /* Error trap. */
        _ux_system_error_handler(UX_SYSTEM_LEVEL_THREAD, UX_SYSTEM_CONTEXT_HCD, UX_CONTROLLER_UNKNOWN);

        /* If trace is enabled, insert this event into the trace buffer.  */
        UX_TRACE_IN_LINE_INSERT(UX_TRACE_ERROR, UX_CONTROLLER_UNKNOWN, 0, 0, 0, UX_TRACE_ERRORS, 0, 0)

        return(UX_CONTROLLER_UNKNOWN);
    }

    /* Get the pointer to the host simulator HCD.  */
    hcd_sim_host =  (UX_HCD_SIM_HOST *) hcd -> ux_hcd_controller_hardware;

    /* look at the function and route it.  */
    switch(function)
    {

    case UX_HCD_UNINITIALIZE:
        status =  _ux_hcd_sim_host_uninitialize(hcd_sim_host);
        break;


    case UX_HCD_DISABLE_CONTROLLER:

        status =  _ux_hcd_sim_host_controller_disable(hcd_sim_host);
        break;


    case UX_HCD_GET_PORT_STATUS:

        status =  _ux_hcd_sim_host_port_status_get(hcd_sim_host, (ULONG) (ALIGN_TYPE) parameter);
        break;


    case UX_HCD_ENABLE_PORT:

        status =  UX_SUCCESS;
        break;


    case UX_HCD_DISABLE_PORT:

        status =  UX_SUCCESS;
        break;


    case UX_HCD_POWER_ON_PORT:

        status =  UX_SUCCESS;
        break;


    case UX_HCD_POWER_DOWN_PORT:

        status =  UX_SUCCESS;
        break;


    case UX_HCD_SUSPEND_PORT:

        status =  UX_SUCCESS;
        break;


    case UX_HCD_RESUME_PORT:

        status =  UX_SUCCESS;
        break;


    case UX_HCD_RESET_PORT:

        status =  _ux_hcd_sim_host_port_reset(hcd_sim_host, (ULONG) (ALIGN_TYPE) parameter);
        break;


    case UX_HCD_GET_FRAME_NUMBER:

        status =  _ux_hcd_sim_host_frame_number_get(hcd_sim_host, (ULONG *) parameter);
        break;


    case UX_HCD_SET_FRAME_NUMBER:

        status =  UX_SUCCESS;
        break;


    case UX_HCD_TRANSFER_REQUEST:

#if defined(UX_HOST_STANDALONE)
        status =  _ux_hcd_sim_host_transfer_run(hcd_sim_host, (UX_TRANSFER *) parameter);
#else
        status =  _ux_hcd_sim_host_request_transfer(hcd_sim_host, (UX_TRANSFER *) parameter);
#endif
        break;


    case UX_HCD_TRANSFER_ABORT:

        status =  _ux_hcd_sim_host_transfer_abort(hcd_sim_host, (UX_TRANSFER *) parameter);
        break;


    case UX_HCD_CREATE_ENDPOINT:

        switch ((((UX_ENDPOINT*) parameter) -> ux_endpoint_descriptor.bmAttributes) & UX_MASK_ENDPOINT_TYPE)
        {

        case UX_CONTROL_ENDPOINT:
        case UX_BULK_ENDPOINT:

            status =  _ux_hcd_sim_host_asynchronous_endpoint_create(hcd_sim_host, (UX_ENDPOINT*) parameter);
            break;


        case UX_INTERRUPT_ENDPOINT:

            status =  _ux_hcd_sim_host_interrupt_endpoint_create(hcd_sim_host, (UX_ENDPOINT*) parameter);
            break;


        case UX_ISOCHRONOUS_ENDPOINT:

            status =  _ux_hcd_sim_host_isochronous_endpoint_create(hcd_sim_host, (UX_ENDPOINT*) parameter);
            break;

        }
        break;


    case UX_HCD_DESTROY_ENDPOINT:

        switch ((((UX_ENDPOINT*) parameter) -> ux_endpoint_descriptor.bmAttributes) & UX_MASK_ENDPOINT_TYPE)
        {

        case UX_CONTROL_ENDPOINT:
        case UX_BULK_ENDPOINT:

            status =  _ux_hcd_sim_host_asynchronous_endpoint_destroy(hcd_sim_host, (UX_ENDPOINT*) parameter);
            break;


        case UX_INTERRUPT_ENDPOINT:
        case UX_ISOCHRONOUS_ENDPOINT:

            status =  _ux_hcd_sim_host_periodic_endpoint_destroy(hcd_sim_host, (UX_ENDPOINT*) parameter);
            break;

        }
        break;


    case UX_HCD_RESET_ENDPOINT:

        status =  _ux_hcd_sim_host_endpoint_reset(hcd_sim_host, (UX_ENDPOINT*) parameter);
        break;


    case UX_HCD_PROCESS_DONE_QUEUE:

        _ux_hcd_sim_host_iso_queue_process(hcd_sim_host);
        _ux_hcd_sim_host_asynch_queue_process(hcd_sim_host);
        _ux_hcd_sim_host_iso_schedule(hcd_sim_host);
        _ux_hcd_sim_host_periodic_schedule(hcd_sim_host);
        _ux_hcd_sim_host_asynch_schedule(hcd_sim_host);
        status =  UX_SUCCESS;
        break;


    default:

        /* Error trap. */
        _ux_system_error_handler(UX_SYSTEM_LEVEL_THREAD, UX_SYSTEM_CONTEXT_HCD, UX_FUNCTION_NOT_SUPPORTED);

        /* If trace is enabled, insert this event into the trace buffer.  */
        UX_TRACE_IN_LINE_INSERT(UX_TRACE_ERROR, UX_FUNCTION_NOT_SUPPORTED, 0, 0, 0, UX_TRACE_ERRORS, 0, 0)

        /* Unknown request, return an error.  */
        status =  UX_FUNCTION_NOT_SUPPORTED;
    }

    /* Return completion status.  */
    return(status);
}