plc.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * plc.c - Qualcomm Atheros Powerline Data Structure;
  11. *
  12. * this structure contains information needed to perform various
  13. * operations on Qualcomm Atheros powerline devices; it represents
  14. * one instance of a device and could easily be converted to an
  15. * object in the future;
  16. *
  17. * this structure points to a channel and a message structure;
  18. *
  19. * Contributor(s):
  20. * Charles Maier <cmaier@qca.qualcomm.com>
  21. * Alex Vasquez <alex.vasquez@qca.qualcomm.com>
  22. *
  23. *--------------------------------------------------------------------*/
  24. #ifndef PLC_SOURCE
  25. #define PLC_SOURCE
  26. #include "../plc/plc.h"
  27. #include "../ether/channel.h"
  28. extern struct channel channel;
  29. extern struct channel channel1;
  30. struct plc plc =
  31. {
  32. (struct channel *) (& channel),
  33. (struct channel *) (& channel1),
  34. (struct message *) (0),
  35. (void *) (0),
  36. 0,
  37. /*
  38. * Local Device Address (LDA) buffer needed by all operations;
  39. */
  40. {
  41. 0x00,
  42. 0x00,
  43. 0x00,
  44. 0x00,
  45. 0x00,
  46. 0x00
  47. },
  48. /*
  49. * Remote Device Address (RDA) buffer needed by selected operations;
  50. */
  51. {
  52. 0x00,
  53. 0x00,
  54. 0x00,
  55. 0x00,
  56. 0x00,
  57. 0x00
  58. },
  59. /*
  60. * Network Membership Key (NMK) needed by VS_SET_KEY operations;
  61. * The default is an encrypted version of password "HomePlugAV";
  62. */
  63. {
  64. 0x50,
  65. 0xD3,
  66. 0xE4,
  67. 0x93,
  68. 0x3F,
  69. 0x85,
  70. 0x5B,
  71. 0x70,
  72. 0x40,
  73. 0x78,
  74. 0x4D,
  75. 0xF8,
  76. 0x15,
  77. 0xAA,
  78. 0x8D,
  79. 0xB7
  80. },
  81. /*
  82. * Device Access Key (DAK) needed for VS_SET_KEY operations;
  83. * The default is an encrypted version of password "HomePlugAV";
  84. */
  85. {
  86. 0x68,
  87. 0x9F,
  88. 0x07,
  89. 0x4B,
  90. 0x8B,
  91. 0x02,
  92. 0x75,
  93. 0xA2,
  94. 0x71,
  95. 0x0B,
  96. 0x0B,
  97. 0x57,
  98. 0x79,
  99. 0xAD,
  100. 0x16,
  101. 0x30
  102. },
  103. /*
  104. * struct _file_ CFG; MAC software will be read from this file and
  105. * written to RAM for each device specified on the command line;
  106. * some tools use this file for the panther/lynx softloader;
  107. */
  108. {
  109. (file_t) (-1),
  110. (char const *) (0)
  111. },
  112. /*
  113. * struct _file_ cfg; SDRAM configuration will be read from flash
  114. * on the specified device and written to this file;
  115. */
  116. {
  117. (file_t) (-1),
  118. (char const *) (0)
  119. },
  120. /*
  121. * struct _file_ SFT; softloader file to be written to flash
  122. * memory;
  123. */
  124. {
  125. (file_t) (-1),
  126. (char const *) (0)
  127. },
  128. /*
  129. * struct _file_ sft; softloader file to be read from flash
  130. * memory;
  131. */
  132. {
  133. (file_t) (-1),
  134. (char const *) (0)
  135. },
  136. /*
  137. * struct _file_ NVM; runtime firmware will be read from this file
  138. * and written to RAM for each device specified on the command line;
  139. */
  140. {
  141. (file_t) (-1),
  142. (char const *) (0)
  143. },
  144. /*
  145. * struct _file_ nvm; MAC software will be read from SDRAM on the
  146. * specified device and written to this file; interlocks elsewhere
  147. * in the code should prevent this file from being overwritten
  148. * multiple times, by accident, and ensure that it is created before
  149. * and new MAC software is written to device RAM;
  150. */
  151. {
  152. (file_t) (-1),
  153. (char const *) (0)
  154. },
  155. /*
  156. * struct _file_ PIB; PIB information will be read from this file
  157. * and written to RAM for each device specified on the command line;
  158. */
  159. {
  160. (file_t) (-1),
  161. (char const *) (0)
  162. },
  163. /*
  164. * struct _file_ pib; PIB information will be read from SDRAM on
  165. * the specified device and written to this file; interlocks elsewhere
  166. * in the code should prevent this file from being overwritten
  167. * multiple times, by accident, and ensure that it is created before
  168. * any new PIB software is written to device RAM;
  169. */
  170. {
  171. (file_t) (-1),
  172. (char const *) (0)
  173. },
  174. /*
  175. * struct _file_ XML; optional XML PIB edit instructions; this is an
  176. * advanced feature;
  177. */
  178. {
  179. (file_t) (-1),
  180. (char const *) (0)
  181. },
  182. /*
  183. * struct _file_ rpt; Watchdog Report data will be read from the device
  184. * and written to this file;
  185. */
  186. {
  187. (file_t) (-1),
  188. (char const *) (0)
  189. },
  190. /*
  191. * struct _file_ socket;
  192. */
  193. {
  194. (file_t) (-1),
  195. (char const *) (0)
  196. },
  197. {
  198. (file_t) (-1),
  199. (char const *) (0)
  200. },
  201. /*
  202. * miscellaneous small integers used as needed when arguments
  203. * are required for an MME; these are shamelessly reused such
  204. * that names may have nothing to do with content;
  205. */
  206. HARDWAREID,
  207. SOFTWAREID,
  208. PLCSESSION,
  209. HOSTACTION,
  210. SECTORCODE,
  211. MODULECODE,
  212. PUSHBUTTON,
  213. READACTION,
  214. PLCOUPLING,
  215. FLASH_SIZE,
  216. /*
  217. * various boolean flags; bailout causes exit on first failure;
  218. * timeout indicates a real timeout; count is the loop counter;
  219. * pause is a loop wait timer; values are declared as constants
  220. * above;
  221. */
  222. PLC_STATE,
  223. PLC_TIMER,
  224. PLC_SLEEP,
  225. PLC_COUNT,
  226. PLC_INDEX,
  227. PLC_FLAGS,
  228. PLC_FLAGS,
  229. 0
  230. };
  231. #endif