ointellon.hpp 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * ointellon.hpp - ointellon class declaration;
  11. *
  12. * implement an Intellon vendor specific HomePlug AV message header
  13. * consisting of an Ethernet header, message version, message type
  14. * and vendor OUI; provide methods to encode and decode external
  15. * memory;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <charles.maier@intellon.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef oINTELLON_HEADER
  22. #define oINTELLON_HEADER
  23. /*====================================================================*
  24. * system header files;
  25. *--------------------------------------------------------------------*/
  26. #include <stdint.h>
  27. /*====================================================================*
  28. * custom header files;
  29. *--------------------------------------------------------------------*/
  30. #include "../classes/stdafx.hpp"
  31. #include "../classes/oethernet.hpp"
  32. #include "../classes/ohomeplug.hpp"
  33. /*====================================================================*
  34. * header constants;
  35. *--------------------------------------------------------------------*/
  36. #define oINTELLON_MTYPE 0x88E1
  37. #define oINTELLON_MMV 0x00
  38. #define oINTELLON_MMTYPE 0xA000
  39. #define oINTELLON_FMI 0x0000
  40. #define oINTELLON_LOCALCAST "00:B0:52:00:00:01"
  41. #define oINTELLON_BLOCKSIZE 1024
  42. #define oINTELLON_BAD_OFFSET "Bad Offset"
  43. #define oINTELLON_BAD_LENGTH "Bad Length"
  44. /*====================================================================*
  45. * Intellon Manufacturer Specific Management Message Types;
  46. *--------------------------------------------------------------------*/
  47. #define MS_PB_ENC 0x8000
  48. /*====================================================================*
  49. * Intellon Vendor Specific Management Message Types;
  50. *--------------------------------------------------------------------*/
  51. #define VS_SW_VER 0xA000
  52. #define VS_WR_MEM 0xA004
  53. #define VS_RD_MEM 0xA008
  54. #define VS_ST_MAC 0xA00C
  55. #define VS_GET_NVM 0xA010
  56. #define VS_RSVD_1 0xA014
  57. #define VS_RSVD_2 0xA018
  58. #define VS_RS_DEV 0xA01C
  59. #define VS_WR_MOD 0xA020
  60. #define VS_RD_MOD 0xA024
  61. #define VS_MOD_NVM 0xA028
  62. #define VS_WD_RPT 0xA02C
  63. #define VS_LNK_STATS 0xA030
  64. #define VS_SNIFFER 0xA034
  65. #define VS_NW_INFO 0xA038
  66. #define VS_RSVD_3 0xA03C
  67. #define VS_CP_RPT 0xA040
  68. #define VS_ARPC 0xA044
  69. #define VS_RSVD_4 0xA044
  70. #define VS_FR_LBK 0xA048
  71. #define VS_LBK_STAT 0xA04C
  72. #define VS_SET_KEY 0xA050
  73. #define VS_MFG_STRING 0xA054
  74. #define VS_RD_CBLOCK 0xA058
  75. #define VS_SET_SDRAM 0xA05C
  76. #define VS_HST_ACTION 0xA060
  77. #define VS_RSVD_7 0xA064
  78. #define VS_OP_ATTRIBUTES 0xA068
  79. #define VS_ENET_SETTINGS 0xA06C
  80. #define VS_TONE_MAP_CHAR 0xA070
  81. #define VS_NW_INFO_STATS 0xA074
  82. #define VS_RSVD_8 0xA078
  83. #define VS_FAC_DEFAULT 0xA07C
  84. #define VS_RSVD_9 0xA080
  85. #define VS_RSVD_10 0xA084
  86. #define VS_CLASSIFICATION 0xA088
  87. #define VS_RSVD_11 0xA08C
  88. #define VS_RX_TONE_MAP_CHAR 0xA090
  89. #define VS_SET_LED_BEHAVIOR 0xA094
  90. #define VS_RSVD_12 0xA098
  91. #define VS_RSVD_13 0xA09C
  92. #define VS_RSVD_14 0xA0A0
  93. #define VS_RSVD_15 0xA0A4
  94. #define VS_RSVD_16 0xA0A8
  95. #define VS_NN_MITIGATE 0xA0AC
  96. #define VS_MODULE_OPERATION 0xA0B0
  97. #define VS_DIAG_NETWORK_PROBE 0xA0B4
  98. #define VS_PL_LINK_STATUS 0xA0B8
  99. #define VS_GPIO_STATE_CHANGE 0xA0BC
  100. #define VS_ADD_CONN 0xA0C0
  101. #define VS_MOD_CONN 0xA0C4
  102. #define VS_REL_CONN 0xA0C8
  103. #define VS_CON_INFO 0xA0CC
  104. /*====================================================================*
  105. * module codes for VS_RD_MOD, VS_WR_MOD and VS_MOD_NVM;
  106. *--------------------------------------------------------------------*/
  107. #define VS_MODULE_MAC (1 << 0)
  108. #define VS_MODULE_PIB (1 << 1)
  109. #define VS_MODULE_ALL (VS_MODULE_MAC|VS_MODULE_PIB)
  110. #define VS_MODULE_FORCE (1 << 4)
  111. #define VS_MODULE_OPERATION_MDIO 0x1000
  112. #define VS_MODULE_OPERATION_SL 0x8000
  113. #define VS_MODULE_OPERATION_MAC 0x8001
  114. #define VS_MODULE_OPERATION_PIB 0x8002
  115. /*====================================================================*
  116. * class datatypes;
  117. *--------------------------------------------------------------------*/
  118. typedef unsigned char byte;
  119. /*====================================================================*
  120. * class declaration;
  121. *--------------------------------------------------------------------*/
  122. class __declspec (dllexport) ointellon: public ohomeplug
  123. {
  124. public:
  125. ointellon (void);
  126. virtual ~ ointellon (void);
  127. size_t HeaderLength (void) const;
  128. size_t BufferLength (size_t extent) const;
  129. void * ExportHeader (void * memory) const;
  130. void const * ImportHeader (void const * memory);
  131. uint8_t const * VendorOUI (void) const;
  132. char const * VendorOUIString (void) const;
  133. ointellon & Print ();
  134. static const byte LocalcastAddress [ETHER_ADDR_LEN];
  135. private:
  136. uint8_t moui [ETHER_ADDR_LEN >> 1];
  137. };
  138. /*====================================================================*
  139. * end declaration;
  140. *--------------------------------------------------------------------*/
  141. #endif