1 /***************************************************************************
2 * Copyright (c) 2024 Microsoft Corporation
3 *
4 * This program and the accompanying materials are made available under the
5 * terms of the MIT License which is available at
6 * https://opensource.org/licenses/MIT.
7 *
8 * SPDX-License-Identifier: MIT
9 **************************************************************************/
10
11
12 /**************************************************************************/
13 /**************************************************************************/
14 /** */
15 /** NetX Component */
16 /** */
17 /** Internet Protocol (IP) */
18 /** */
19 /**************************************************************************/
20 /**************************************************************************/
21
22 #define NX_SOURCE_CODE
23
24
25 /* Include necessary system files. */
26
27 #include "nx_api.h"
28 #include "nx_ip.h"
29
30
31 /**************************************************************************/
32 /* */
33 /* FUNCTION RELEASE */
34 /* */
35 /* _nx_ip_driver_deferred_processing PORTABLE C */
36 /* 6.1 */
37 /* AUTHOR */
38 /* */
39 /* Yuxin Zhou, Microsoft Corporation */
40 /* */
41 /* DESCRIPTION */
42 /* */
43 /* This function causes the driver to be called from the IP helper */
44 /* thread in order to finish some deferred processing. A typical */
45 /* example of this is the transmit complete interrupt. Instead of */
46 /* loading the packet inside the transmit complete interrupt, the */
47 /* driver can setup some internal variables and call this routine */
48 /* to be called subsequently from the IP helper thread to finish */
49 /* the transmit complete interrupt processing. */
50 /* */
51 /* INPUT */
52 /* */
53 /* ip_ptr Pointer to IP control block */
54 /* */
55 /* OUTPUT */
56 /* */
57 /* None */
58 /* */
59 /* CALLS */
60 /* */
61 /* tx_event_flags_set Set event flags to wake IP */
62 /* helper thread */
63 /* */
64 /* CALLED BY */
65 /* */
66 /* Application Driver */
67 /* */
68 /* RELEASE HISTORY */
69 /* */
70 /* DATE NAME DESCRIPTION */
71 /* */
72 /* 05-19-2020 Yuxin Zhou Initial Version 6.0 */
73 /* 09-30-2020 Yuxin Zhou Modified comment(s), */
74 /* resulting in version 6.1 */
75 /* */
76 /**************************************************************************/
_nx_ip_driver_deferred_processing(NX_IP * ip_ptr)77 VOID _nx_ip_driver_deferred_processing(NX_IP *ip_ptr)
78 {
79
80 /* Set event flags to wake the IP helper thread, which will in turn
81 call the driver with the NX_LINK_DEFERRED_PROCESSING command. */
82 tx_event_flags_set(&(ip_ptr -> nx_ip_events), NX_IP_DRIVER_DEFERRED_EVENT, TX_OR);
83 }
84
85