1 /*
2  * Copyright (c) 2013-2016 ARM Limited. All rights reserved.
3  * Copyright (c) 2016, Freescale Semiconductor, Inc. Not a Contribution.
4  * Copyright 2016-2021 NXP. Not a Contribution.
5  *
6  * SPDX-License-Identifier: Apache-2.0
7  *
8  * Licensed under the Apache License, Version 2.0 (the License); you may
9  * not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an AS IS BASIS, WITHOUT
16  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20 
21 #ifndef FSL_ENET_CMSIS_H_
22 #define FSL_ENET_CMSIS_H_
23 
24 #include "Driver_ETH.h"
25 #include "Driver_ETH_MAC.h"
26 #include "RTE_Device.h"
27 #include "fsl_common.h"
28 #include "fsl_enet.h"
29 
30 /* ENET Driver state flags */
31 #define ENET_FLAG_UNINIT     (0U)
32 #define ENET_FLAG_INIT       (1U << 0)
33 #define ENET_FLAG_POWER      (1U << 1)
34 #define ETH_MAC_EVENT_OTHERS (ARM_ETH_MAC_EVENT_TIMER_ALARM + 1U)
35 
36 typedef struct _cmsis_enet_mac_resource
37 {
38     ENET_Type *base;           /*!< ENET peripheral base address. */
39     uint32_t (*GetFreq)(void); /*!< Function to get frequency. */
40 } cmsis_enet_mac_resource_t;
41 
42 extern ARM_DRIVER_ETH_MAC Driver_ETH_MAC0;
43 
44 #endif
45