emac.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /**
  2. * \file emac.h
  3. *
  4. * \brief EMAC APIs and macros.
  5. *
  6. * This file contains the driver API prototypes and macro definitions.
  7. */
  8. /*
  9. * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
  10. */
  11. /*
  12. * Redistribution and use in source and binary forms, with or without
  13. * modification, are permitted provided that the following conditions
  14. * are met:
  15. *
  16. * Redistributions of source code must retain the above copyright
  17. * notice, this list of conditions and the following disclaimer.
  18. *
  19. * Redistributions in binary form must reproduce the above copyright
  20. * notice, this list of conditions and the following disclaimer in the
  21. * documentation and/or other materials provided with the
  22. * distribution.
  23. *
  24. * Neither the name of Texas Instruments Incorporated nor the names of
  25. * its contributors may be used to endorse or promote products derived
  26. * from this software without specific prior written permission.
  27. *
  28. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  29. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  30. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  31. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  32. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  33. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  34. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  35. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  36. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  37. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  38. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  39. *
  40. */
  41. #ifndef __EMAC_H__
  42. #define __EMAC_H__
  43. #include "hw_emac.h"
  44. #ifdef __cplusplus
  45. extern "C" {
  46. #endif
  47. /*****************************************************************************/
  48. /*
  49. ** Macros which can be used as speed parameter to the API EMACRMIISpeedSet
  50. */
  51. #define EMAC_RMIISPEED_10MBPS (0x00000000u)
  52. #define EMAC_RMIISPEED_100MBPS (0x00008000u)
  53. /*
  54. ** Macros which can be used as duplexMode parameter to the API
  55. ** EMACDuplexSet
  56. */
  57. #define EMAC_DUPLEX_FULL (0x00000001u)
  58. #define EMAC_DUPLEX_HALF (0x00000000u)
  59. /*
  60. ** Macros which can be used as matchFilt parameters to the API
  61. ** EMACMACAddrSet
  62. */
  63. /* Address not used to match/filter incoming packets */
  64. #define EMAC_MACADDR_NO_MATCH_NO_FILTER (0x00000000u)
  65. /* Address will be used to filter incoming packets */
  66. #define EMAC_MACADDR_FILTER (0x00100000u)
  67. /* Address will be used to match incoming packets */
  68. #define EMAC_MACADDR_MATCH (0x00180000u)
  69. /*
  70. ** Macros which can be passed as eoiFlag to EMACRxIntAckToClear API
  71. */
  72. #define EMAC_INT_CORE0_RX (0x1u)
  73. #define EMAC_INT_CORE1_RX (0x5u)
  74. #define EMAC_INT_CORE2_RX (0x9u)
  75. /*
  76. ** Macros which can be passed as eoiFlag to EMACTxIntAckToClear API
  77. */
  78. #define EMAC_INT_CORE0_TX (0x2u)
  79. #define EMAC_INT_CORE1_TX (0x6u)
  80. #define EMAC_INT_CORE2_TX (0xAu)
  81. /*****************************************************************************/
  82. /*
  83. ** Prototypes for the APIs
  84. */
  85. extern void EMACTxIntPulseEnable(unsigned int emacBase, unsigned int emacCtrlBase,
  86. unsigned int ctrlCore, unsigned int channel);
  87. extern void EMACTxIntPulseDisable(unsigned int emacBase, unsigned int emacCtrlBase,
  88. unsigned int ctrlCore, unsigned int channel);
  89. extern void EMACRxIntPulseEnable(unsigned int emacBase, unsigned int emacCtrlBase,
  90. unsigned int ctrlCore, unsigned int channel);
  91. extern void EMACRxIntPulseDisable(unsigned int emacBase, unsigned int emacCtrlBase,
  92. unsigned int ctrlCore, unsigned int channel);
  93. extern void EMACRMIISpeedSet(unsigned int emacBase, unsigned int speed);
  94. extern void EMACDuplexSet(unsigned int emacBase, unsigned int duplexMode);
  95. extern void EMACTxEnable(unsigned int emacBase);
  96. extern void EMACRxEnable(unsigned int emacBase);
  97. extern void EMACTxHdrDescPtrWrite(unsigned int emacBase, unsigned int descHdr,
  98. unsigned int channel);
  99. extern void EMACRxHdrDescPtrWrite(unsigned int emacBase, unsigned int descHdr,
  100. unsigned int channel);
  101. extern void EMACInit(unsigned int emacCtrlBase, unsigned int emacBase);
  102. extern void EMACMACSrcAddrSet(unsigned int emacBase, unsigned char *macAddr);
  103. extern void EMACMACAddrSet(unsigned int emacBase, unsigned int channel,
  104. unsigned char *macAddr, unsigned int matchFilt);
  105. extern void EMACMIIEnable(unsigned int emacBase);
  106. extern void EMACRxUnicastSet(unsigned int emacBase, unsigned int channel);
  107. extern void EMACCoreIntAck(unsigned int emacBase, unsigned int eoiFlag);
  108. extern void EMACTxCPWrite(unsigned int emacBase, unsigned int channel,
  109. unsigned int comPtr);
  110. extern void EMACRxCPWrite(unsigned int emacBase, unsigned int channel,
  111. unsigned int comPtr);
  112. extern void EMACRxBroadCastEnable(unsigned int emacBase, unsigned int channel);
  113. extern void EMACNumFreeBufSet(unsigned int emacBase, unsigned int channel,
  114. unsigned int nBuf);
  115. extern unsigned int EMACIntVectorGet(unsigned int emacBase);
  116. #ifdef __cplusplus
  117. }
  118. #endif
  119. #endif /* __EMAC_H__ */