TI-RTOS Drivers  tidrivers_full_2_20_00_08
EMACTiva.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2014-2015, Texas Instruments Incorporated
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * * Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * * Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the 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 "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
55 #ifndef ti_drivers_emac_EMACTiva__include
56 #define ti_drivers_emac_EMACTiva__include
57 
58 #ifdef __cplusplus
59 extern "C" {
60 #endif
61 
62 #include <stdint.h>
63 #include <ti/sysbios/knl/Swi.h>
64 
65 #ifndef _INCLUDE_NIMU_CODE
66 #define _INCLUDE_NIMU_CODE
67 #endif
68 #include <ti/ndk/inc/stkmain.h>
69 
71 extern const EMAC_FxnTable EMACTiva_fxnTable;
72 
86 typedef struct EMACTiva_HWAttrs {
87  unsigned int intNum;
88  unsigned int intPriority;
89  uint8_t *macAddress;
91 
99 typedef struct EMACTiva_Object {
100  Swi_Handle swi;
101  Hwi_Handle hwi;
102  uint32_t rxCount;
103  uint32_t rxDropped;
104  uint32_t txSent;
105  uint32_t txDropped;
106  uint32_t linkUp;
107  PBMQ PBMQ_tx;
108  PBMQ PBMQ_rx;
109  STKEVENT_Handle hEvent;
111 
120 extern void EMACTiva_init(uint32_t index);
121 
127 extern bool EMACTiva_isLinkUp(uint32_t index);
128 
133 extern int EMACTiva_NIMUInit(STKEVENT_Handle hEvent);
134 
135 #ifdef __cplusplus
136 }
137 #endif
138 
139 #endif /* ti_drivers_emac_EMACTiva__include */
EMACTiva Object.
Definition: EMACTiva.h:99
struct EMACTiva_Object EMACTiva_Object
EMACTiva Object.
uint32_t txSent
Definition: EMACTiva.h:104
EMAC Function table structure.
Definition: EMAC.h:161
bool EMACTiva_isLinkUp(uint32_t index)
This function returns if the link is up.
uint32_t linkUp
Definition: EMACTiva.h:106
int EMACTiva_NIMUInit(STKEVENT_Handle hEvent)
This function is needed in the NIMUDeviceTable that is required by the NDK.
Swi_Handle swi
Definition: EMACTiva.h:100
unsigned int intPriority
Definition: EMACTiva.h:88
PBMQ PBMQ_rx
Definition: EMACTiva.h:108
uint32_t rxDropped
Definition: EMACTiva.h:103
unsigned int intNum
Definition: EMACTiva.h:87
uint8_t * macAddress
Definition: EMACTiva.h:89
PBMQ PBMQ_tx
Definition: EMACTiva.h:107
STKEVENT_Handle hEvent
Definition: EMACTiva.h:109
const EMAC_FxnTable EMACTiva_fxnTable
EMACTiva function table.
struct EMACTiva_HWAttrs EMACTiva_HWAttrs
EMACTiva Hardware attributes.
uint32_t txDropped
Definition: EMACTiva.h:105
Hwi_Handle hwi
Definition: EMACTiva.h:101
EMACTiva Hardware attributes.
Definition: EMACTiva.h:86
uint32_t rxCount
Definition: EMACTiva.h:102
void EMACTiva_init(uint32_t index)
This function sets the EMACTiva driver.
Copyright 2016, Texas Instruments Incorporated