ohomeplug.hpp 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * ohomeplug.hpp - interface for the ohomeplug class.
  11. *
  12. * this class implements a standard Ethernet header consisting of
  13. * a peer address, host address and ether type; these correspond
  14. * to ODA, OSA and MTYPE fields defined in the Intellon Firmware
  15. * Technical Reference Manual;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <charles.maier@intellon.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef oHOMEPLUG_HEADER
  22. #define oHOMEPLUG_HEADER
  23. /*====================================================================*
  24. * custom header files;
  25. *--------------------------------------------------------------------*/
  26. #include "../classes/stdafx.hpp"
  27. #include "../classes/oethernet.hpp"
  28. /*====================================================================*
  29. * class constants;
  30. *--------------------------------------------------------------------*/
  31. #define oHOMEPLUG_MTYPE 0x88E1
  32. #define oHOMEPLUG_MMV 0x00
  33. #define oHOMEPLUG_MMTYPE 0x0000
  34. #define oHOMEPLUG_FMI 0x0000
  35. /*====================================================================*
  36. * HomePlug Management Message Ranges for Information Only;
  37. *--------------------------------------------------------------------*/
  38. #if 0
  39. #define CC_MMTYPE_MIN 0x0000
  40. #define CC_MMTYPE_MAX 0x1FFC
  41. #define CP_MMTYPE_MIN 0x2000
  42. #define CP_MMTYPE_MAX 0x3FFC
  43. #define NN_MMTYPE_MIN 0x4000
  44. #define NN_MMTYPE_MAX 0x5FFC
  45. #define CM_MMTYPE_MIN 0x6000
  46. #define CM_MMTYPE_MAX 0x7FFC
  47. #define MS_MMTYPE_MIN 0x8000
  48. #define MS_MMTYPE_MAX 0x9FFC
  49. #define VS_MMTYPE_MIN 0xA000
  50. #define VS_MMTYPE_MAX 0xBFFC
  51. #define XX_MMTYPE_MIN 0xC000
  52. #define XX_MMTYPE_MAX 0xFFFC
  53. #endif
  54. /*====================================================================*
  55. * HomePlug AV MMEs have 4 variants indicated by the 2 MMTYPE LSBs;
  56. *--------------------------------------------------------------------*/
  57. #define MMTYPE_CC 0x0000
  58. #define MMTYPE_CP 0x2000
  59. #define MMTYPE_NN 0x4000
  60. #define MMTYPE_CM 0x6000
  61. #define MMTYPE_MS 0x8000
  62. #define MMTYPE_VS 0xA000
  63. #define MMTYPE_XX 0xC000
  64. #define MMTYPE_REQ 0x0000
  65. #define MMTYPE_CNF 0x0001
  66. #define MMTYPE_IND 0x0002
  67. #define MMTYPE_RSP 0x0003
  68. #define MMTYPE_MODE (MMTYPE_REQ|MMTYPE_CNF|MMTYPE_IND|MMTYPE_RSP)
  69. /*====================================================================*
  70. * HomePlug AV Management Message Types;
  71. *--------------------------------------------------------------------*/
  72. #define CC_CCO_APPOINT 0x0000
  73. #define CC_BACKUP_APPOINT 0x0004
  74. #define CC_LINK_INFO 0x0008
  75. #define CC_HANDOVER 0x000C
  76. #define CC_HANDOVER_INFO 0x0010
  77. #define CC_DISCOVER_LIST 0x0014
  78. #define CC_LINK_NEW 0x0018
  79. #define CC_LINK_MOD 0x001C
  80. #define CC_LINK_SQZ 0x0020
  81. #define CC_LINK_REL 0x0024
  82. #define CC_DETECT_REPORT 0x0028
  83. #define CC_WHO_RU 0x002C
  84. #define CC_ASSOC 0x0030
  85. #define CC_LEAVE 0x0034
  86. #define CC_SET_TEI_MAP 0x0038
  87. #define CC_RELAY 0x003C
  88. #define CC_BEACON_RELIABILITY 0x0040
  89. #define CC_CC_ALLOC_MOVE 0x0044
  90. #define CC_ACCESS_NEW 0x0048
  91. #define CC_ACCESS_REL 0x004C
  92. #define CC_DCPPC 0x0050
  93. #define CC_HP1_DET 0x0054
  94. #define CC_BLE_UPDATE 0x0058
  95. #define CP_PROXY_APPOINT 0x2000
  96. #define PH_PROXY_APPOINT 0x2004
  97. #define CP_PROXY_WAKE 0x2008
  98. #define NN_INL 0x4000
  99. #define NN_NEW_NET 0x4004
  100. #define NN_ADD_ALLOC 0x4008
  101. #define NN_REL_ALLOC 0x400C
  102. #define NN_REL_NET 0x4010
  103. #define CM_ASSOCIATED_STA 0x6000
  104. #define CM_ENCRYPTED_PAYLOAD 0x6004
  105. #define CM_SET_KEY 0x6008
  106. #define CM_GET_KEY 0x600C
  107. #define CM_SC_JOIN 0x6010
  108. #define CM_CHAN_EST 0x6014
  109. #define CM_TM_UPDATE 0x6018
  110. #define CM_AMP_MAP 0x601C
  111. #define CM_BRG_INFO 0x6020
  112. #define CM_CONN_NEW 0x6024
  113. #define CM_CONN_REL 0x6028
  114. #define CM_CONN_MOD 0x602C
  115. #define CM_CONN_INFO 0x6030
  116. #define CM_STA_CAP 0x6034
  117. #define CM_NW_INFO 0x6038
  118. #define CM_GET_BEACON 0x603C
  119. #define CM_HFID 0x6040
  120. #define CM_MME_ERROR 0x6044
  121. #define CM_NW_STATS 0x6048
  122. /*====================================================================*
  123. * class datatypes;
  124. *--------------------------------------------------------------------*/
  125. typedef unsigned char byte;
  126. /*====================================================================*
  127. * class declaration;
  128. *--------------------------------------------------------------------*/
  129. class __declspec (dllexport) ohomeplug: public oethernet
  130. {
  131. public:
  132. ohomeplug ();
  133. virtual ~ ohomeplug ();
  134. size_t HeaderLength () const;
  135. void * ExportHeader (void * memory) const;
  136. void const * ImportHeader (void const * memory);
  137. uint8_t MessageVersion () const;
  138. uint16_t MessageType () const;
  139. uint16_t MessageFragment () const;
  140. bool IsMessageType (uint8_t version, uint16_t message);
  141. char const * MessageTypeString () const;
  142. char const * MessageFragmentString () const;
  143. ohomeplug & SetMessageVersion (byte version);
  144. ohomeplug & SetMessageType (uint16_t message);
  145. ohomeplug & SetMessageFragment (uint16_t fragment);
  146. ohomeplug & SetHeader (void const * memory);
  147. static size_t const MessageTypeLength;
  148. private:
  149. uint8_t mversion;
  150. uint16_t mmessage;
  151. uint16_t mfragment;
  152. };
  153. /*====================================================================*
  154. * end definition;
  155. *--------------------------------------------------------------------*/
  156. #endif