AM273x MCU+ SDK  09.02.00
enet_cfg.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) Texas Instruments Incorporated 2020-23
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *
11  * Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the
14  * distribution.
15  *
16  * Neither the name of Texas Instruments Incorporated nor the names of
17  * its contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
39 #ifndef ENET_CFG_H_
40 #define ENET_CFG_H_
41 
42 /* ========================================================================== */
43 /* Include Files */
44 /* ========================================================================== */
45 
46 #include <stdint.h>
47 #include <enet_soc_cfg.h>
48 
49 #ifdef __cplusplus
50 extern "C" {
51 #endif
52 
53 /* ========================================================================== */
54 /* Macros */
55 /* ========================================================================== */
56 
58 #define ENET_ON (1U)
59 
61 #define ENET_OFF (0U)
62 
64 #define ENET_CFG_IS_ON(name) ((ENET_CFG_ ## name) == ENET_ON)
65 
67 #define ENET_CFG_IS_OFF(name) ((ENET_CFG_ ## name) == ENET_OFF)
68 
69 /* --------------------------------------------------------------------------*/
70 /* Enet generic config options */
71 /* --------------------------------------------------------------------------*/
72 
74 #define ENET_CFG_PRINT_BUF_LEN (200U)
75 
77 #define ENET_CFG_HAS_DEFAULT_OSAL (ENET_ON)
78 
80 #define ENET_CFG_HAS_DEFAULT_UTILS (ENET_ON)
81 
83 #define ENET_CFG_SANITY_CHECKS (ENET_ON)
84 
85 /* --------------------------------------------------------------------------*/
86 /* CPSW Peripheral and CPSW Module related config options */
87 /* --------------------------------------------------------------------------*/
88 
90 #define ENET_CFG_CPSW_CPTS_STATS (ENET_OFF)
91 
93 #define ENET_CFG_CPSW_CPTS_EVENTS_POOL_SIZE (8U)
94 
96 #define ENET_CFG_RM_PRESENT (ENET_ON)
97 
98 #if defined(SOC_AM64X) || defined(SOC_AM243X)
99 
101 #define ENET_CFG_NUM_INSTANCES (1U)
102 #endif
103 
105 #if defined(SOC_AM273X) || defined(SOC_AWR294X) || defined(SOC_AWR2544) || defined(SOC_AM263X) || defined(SOC_AM263PX)
106 #define ENET_CFG_USE_OPTIMIZED_IRQ_CRITICAL_SECTION (1U)
107 #else
108 #define ENET_CFG_USE_OPTIMIZED_IRQ_CRITICAL_SECTION (0U)
109 #endif
110 
117 #if (_DEBUG_ == 1)
118 #define ENET_CFG_TRACE_DISABLE_INFOSTRING (ENET_OFF)
119 #else
120 #define ENET_CFG_TRACE_DISABLE_INFOSTRING (ENET_ON)
121 #endif
122 
123 /* ========================================================================== */
124 /* Structures and Enums */
125 /* ========================================================================== */
126 
127 /* None */
128 
129 /* ========================================================================== */
130 /* Global Variables Declarations */
131 /* ========================================================================== */
132 
133 /* None */
134 
135 /* ========================================================================== */
136 /* Function Declarations */
137 /* ========================================================================== */
138 
139 /* None */
140 
141 /* ========================================================================== */
142 /* Deprecated Function Declarations */
143 /* ========================================================================== */
144 
145 /* None */
146 
147 /* ========================================================================== */
148 /* Static Function Definitions */
149 /* ========================================================================== */
150 
151 /* None */
152 
153 #ifdef __cplusplus
154 }
155 #endif
156 
157 #endif /* ENET_CFG_H_ */
enet_soc_cfg.h
This file contains the Enet configuration parameters.