EmulateHost64.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * int EmulateHost64 (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * wait indefinitely for VS_HOST_ACTION messages; service the device
  15. * as directed; this function is for demonstration and experimentation
  16. * only; it will stop dead - like a bug! - on error;
  17. *
  18. * Contributor(s):
  19. * Charles Maier <cmaier@qca.qualcomm.com>
  20. *
  21. *--------------------------------------------------------------------*/
  22. #ifndef EMULATEHOST64_SOURCE
  23. #define EMULATEHOST64_SOURCE
  24. #include <unistd.h>
  25. #include <memory.h>
  26. #include "../plc/plc.h"
  27. #include "../ether/channel.h"
  28. #include "../tools/error.h"
  29. #include "../tools/flags.h"
  30. #include "../tools/files.h"
  31. #include "../nvm/nvm.h"
  32. #include "../pib/pib.h"
  33. signed EmulateHost64 (struct plc * plc)
  34. {
  35. struct channel * channel = (struct channel *) (plc->channel);
  36. struct message * message = (struct message *) (plc->message);
  37. static char const * actions [] =
  38. {
  39. "start device",
  40. "store firmware",
  41. "store parameters",
  42. "update host",
  43. "config memory",
  44. "restore defaults",
  45. "unknown"
  46. };
  47. #ifndef __GNUC__
  48. #pragma pack (push,1)
  49. #endif
  50. struct __packed vs_host_action_ind
  51. {
  52. struct ethernet_hdr ethernet;
  53. struct qualcomm_hdr qualcomm;
  54. uint8_t MACTION;
  55. uint8_t MAJOR_VERSION;
  56. uint8_t MINOR_VERSION;
  57. }
  58. * indicate = (struct vs_host_action_ind *) (message);
  59. #if 0
  60. struct __packed vs_host_action_rsp
  61. {
  62. struct ethernet_hdr ethernet;
  63. struct qualcomm_hdr qualcomm;
  64. uint8_t MSTATUS;
  65. }
  66. * response = (struct vs_host_action_rsp *) (message);
  67. #endif
  68. #ifndef __GNUC__
  69. #pragma pack (pop)
  70. #endif
  71. char const * NVM = plc->NVM.name;
  72. char const * PIB = plc->PIB.name;
  73. signed status;
  74. signed action;
  75. Request (plc, "Waiting for Host Action");
  76. while (1)
  77. {
  78. status = ReadMME (plc, 0, (VS_HOST_ACTION | MMTYPE_IND));
  79. if (status < 0)
  80. {
  81. break;
  82. }
  83. if (status > 0)
  84. {
  85. printf ("\n");
  86. if (indicate->MACTION < (sizeof (actions) / sizeof (char const *)))
  87. {
  88. Confirm (plc, "Host Action Request is (%d) %s.", indicate->MACTION, actions [indicate->MACTION]);
  89. }
  90. else
  91. {
  92. error (0, ENOTSUP, "Host Action 0x%0X", indicate->MACTION);
  93. continue;
  94. }
  95. action = indicate->MACTION;
  96. memcpy (channel->peer, indicate->ethernet.OSA, sizeof (channel->peer));
  97. if (HostActionResponse (plc))
  98. {
  99. return (-1);
  100. }
  101. if (action == 0x00)
  102. {
  103. if (BootDevice1 (plc))
  104. {
  105. return (-1);
  106. }
  107. if (_anyset (plc->flags, PLC_FLASH_DEVICE))
  108. {
  109. if (WriteNVM (plc))
  110. {
  111. return (-1);
  112. }
  113. if (WritePIB (plc))
  114. {
  115. return (-1);
  116. }
  117. if (FlashNVM (plc))
  118. {
  119. return (-1);
  120. }
  121. }
  122. continue;
  123. }
  124. if (action == 0x01)
  125. {
  126. close (plc->NVM.file);
  127. if (ReadFirmware1 (plc))
  128. {
  129. return (-1);
  130. }
  131. if ((plc->NVM.file = open (plc->NVM.name = plc->nvm.name, O_BINARY | O_RDONLY)) == -1)
  132. {
  133. error (1, errno, "%s", plc->NVM.name);
  134. }
  135. if (ResetDevice (plc))
  136. {
  137. return (-1);
  138. }
  139. continue;
  140. }
  141. if (action == 0x02)
  142. {
  143. close (plc->PIB.file);
  144. if (ReadParameters1 (plc))
  145. {
  146. return (-1);
  147. }
  148. if ((plc->PIB.file = open (plc->PIB.name = plc->pib.name, O_BINARY | O_RDONLY)) == -1)
  149. {
  150. error (1, errno, "%s", plc->PIB.name);
  151. }
  152. if (ResetDevice (plc))
  153. {
  154. return (-1);
  155. }
  156. continue;
  157. }
  158. if (action == 0x03)
  159. {
  160. close (plc->PIB.file);
  161. if (ReadParameters1 (plc))
  162. {
  163. return (-1);
  164. }
  165. if ((plc->PIB.file = open (plc->PIB.name = plc->pib.name, O_BINARY | O_RDONLY)) == -1)
  166. {
  167. error (1, errno, "%s", plc->PIB.name);
  168. }
  169. close (plc->NVM.file);
  170. if (ReadFirmware1 (plc))
  171. {
  172. return (-1);
  173. }
  174. if ((plc->NVM.file = open (plc->NVM.name = plc->nvm.name, O_BINARY | O_RDONLY)) == -1)
  175. {
  176. error (1, errno, "%s", plc->NVM.name);
  177. }
  178. if (ResetDevice (plc))
  179. {
  180. return (-1);
  181. }
  182. continue;
  183. }
  184. if (action == 0x04)
  185. {
  186. if (InitDevice1 (plc))
  187. {
  188. return (-1);
  189. }
  190. continue;
  191. }
  192. if (action == 0x05)
  193. {
  194. close (plc->NVM.file);
  195. if ((plc->NVM.file = open (plc->NVM.name = NVM, O_BINARY | O_RDONLY)) == -1)
  196. {
  197. error (1, errno, "%s", plc->NVM.name);
  198. }
  199. close (plc->PIB.file);
  200. if ((plc->PIB.file = open (plc->PIB.name = PIB, O_BINARY | O_RDONLY)) == -1)
  201. {
  202. error (1, errno, "%s", plc->PIB.name);
  203. }
  204. if (ResetDevice (plc))
  205. {
  206. return (-1);
  207. }
  208. continue;
  209. }
  210. if (action == 0x06)
  211. {
  212. close (plc->PIB.file);
  213. if (ReadParameters1 (plc))
  214. {
  215. return (-1);
  216. }
  217. if ((plc->PIB.file = open (plc->PIB.name = plc->pib.name, O_BINARY | O_RDONLY)) == -1)
  218. {
  219. error (1, errno, "%s", plc->PIB.name);
  220. }
  221. continue;
  222. }
  223. if (action == 0x07)
  224. {
  225. error (0, 0, "Host has rebooted.");
  226. continue;
  227. }
  228. error (0, ENOSYS, "Host Action 0x%02X", action);
  229. }
  230. }
  231. return (0);
  232. }
  233. #endif