blob: 06cdef54ad5a6f58b5567db4f3507bc83188f9f1 (
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
|
/***************************************************************************
* 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 Stack */
/** */
/**************************************************************************/
/**************************************************************************/
/* Include necessary system files. */
#define UX_SOURCE_CODE
#include "ux_api.h"
#include "ux_host_stack.h"
/**************************************************************************/
/* */
/* FUNCTION RELEASE */
/* */
/* _ux_host_stack_hcd_thread_entry PORTABLE C */
/* 6.1.10 */
/* AUTHOR */
/* */
/* Chaoqiong Xiao, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This function is the entry point of the host controller thread. */
/* The HCD thread is initialized at the system level and the thread */
/* entry routine is invoked right away. This thread suspends until */
/* one of the HCD resumes it due to HCD activities. */
/* */
/* It's for RTOS mode. */
/* */
/* INPUT */
/* */
/* input Not used input */
/* */
/* OUTPUT */
/* */
/* None */
/* */
/* CALLS */
/* */
/* _ux_utility_semaphore_get Get signal semaphore */
/* (ux_hcd_entry_function) HCD's entry function */
/* */
/* CALLED BY */
/* */
/* ThreadX */
/* */
/**************************************************************************/
VOID _ux_host_stack_hcd_thread_entry(ULONG input)
{
UINT hcd_index;
UX_HCD *hcd;
UX_INTERRUPT_SAVE_AREA
UX_PARAMETER_NOT_USED(input);
/* Loop forever on the semaphore. The semaphore is used to signal that
there is work for one or more HCDs. */
while (1)
{
/* Get the semaphore that signals something is available for this
thread to process. */
_ux_host_semaphore_get_norc(&_ux_system_host -> ux_system_host_hcd_semaphore, UX_WAIT_FOREVER);
#if UX_MAX_HCD > 1
/* This thread was awaken by one or more HCD controllers. Check each of the HCDs
to see who posted work to do. */
for(hcd_index = 0; hcd_index < _ux_system_host -> ux_system_host_max_hcd; hcd_index++)
{
#else
hcd_index = 0;
#endif
/* Pickup HCD pointer. */
hcd = &_ux_system_host -> ux_system_host_hcd_array[hcd_index];
/* Is there work to do for this HCD? */
if((hcd -> ux_hcd_status == UX_HCD_STATUS_OPERATIONAL) && (hcd -> ux_hcd_thread_signal !=0))
{
/* Yes, call the HCD function to process the work. */
hcd -> ux_hcd_entry_function(hcd, UX_HCD_PROCESS_DONE_QUEUE, UX_NULL);
UX_DISABLE
hcd -> ux_hcd_thread_signal--;
UX_RESTORE
}
#if UX_MAX_HCD > 1
}
#endif
}
}
|