]> git.donarmstrong.com Git - qmk_firmware.git/blob - tool/mbed/mbed-sdk/libraries/mbed/targets/hal/TARGET_Freescale/TARGET_KPSDK_MCUS/TARGET_KPSDK_CODE/drivers/enet/src/fsl_enet_irq.c
Squashed 'tmk_core/' changes from 7967731..b9e0ea0
[qmk_firmware.git] / tool / mbed / mbed-sdk / libraries / mbed / targets / hal / TARGET_Freescale / TARGET_KPSDK_MCUS / TARGET_KPSDK_CODE / drivers / enet / src / fsl_enet_irq.c
1 /*
2  * Copyright (c) 2013 - 2014, Freescale Semiconductor, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without modification,
6  * are permitted provided that the following conditions are met:
7  *
8  * o Redistributions of source code must retain the above copyright notice, this list
9  *   of conditions and the following disclaimer.
10  *
11  * o Redistributions in binary form must reproduce the above copyright notice, this
12  *   list of conditions and the following disclaimer in the documentation and/or
13  *   other materials provided with the distribution.
14  *
15  * o Neither the name of Freescale Semiconductor, Inc. nor the names of its
16  *   contributors may be used to endorse or promote products derived from this
17  *   software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
23  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
26  * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30  
31 #include "fsl_enet_driver.h"
32 #include "fsl_clock_manager.h"
33 /*******************************************************************************
34  * Variables
35  ******************************************************************************/
36
37
38 /* Internal irq number*/
39 typedef enum _enet_irq_number
40 {
41     kEnetTsTimerNumber = 0,     /*!< ENET ts_timer irq number*/
42     kEnetReceiveNumber = 1,     /*!< ENET receive irq number*/
43     kEnetTransmitNumber = 2,    /*!< ENET transmit irq number*/
44     kEnetMiiErrorNumber = 3     /*!< ENET mii error irq number*/
45 }enet_irq_number_t;
46
47 #if FSL_FEATURE_ENET_SUPPORT_PTP
48 extern enet_ptp_master_time_data_t g_ptpMasterTime;
49 #if FSL_FEATURE_ENET_PTP_TIMER_CHANNEL_INTERRUPT
50 #define ENET_TIMER_CHANNEL_NUM      2
51 #endif
52 #endif
53
54 #if defined (K64F12_SERIES) || defined (K70F12_SERIES)
55 IRQn_Type enet_irq_ids[HW_ENET_INSTANCE_COUNT][FSL_FEATURE_ENET_INTERRUPT_COUNT] = 
56 {
57     { ENET_1588_Timer_IRQn, ENET_Receive_IRQn, ENET_Transmit_IRQn, ENET_Error_IRQn}            
58 };
59
60 uint8_t enetIntMap[kEnetIntNum] = 
61
62     kEnetTsTimerNumber, 
63     kEnetTsTimerNumber,
64     kEnetMiiErrorNumber,
65     kEnetMiiErrorNumber,
66     kEnetMiiErrorNumber,
67     kEnetMiiErrorNumber,
68     kEnetMiiErrorNumber,
69     kEnetMiiErrorNumber,
70     kEnetMiiErrorNumber,
71     kEnetReceiveNumber,
72     kEnetReceiveNumber,
73     kEnetTransmitNumber,
74     kEnetTransmitNumber,
75     kEnetMiiErrorNumber,
76     kEnetMiiErrorNumber,
77     kEnetMiiErrorNumber
78 };
79 #endif
80
81 /*******************************************************************************
82  * Code
83  ******************************************************************************/
84 /* The code was moved to k64f mac file (eth) */
85
86 /*******************************************************************************
87  * EOF
88  ******************************************************************************/
89