EmulateHost.c 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed EmulateHost (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * wait indefinitely for VS_HOST_ACTION messages; service requests
  15. * as they arrive; this function is for demonstration and testing
  16. * only; it stops dead - like a bug! - on error;
  17. *
  18. * Contributor(s):
  19. * Charles Maier <cmaier@qca.qualcomm.com>
  20. *
  21. *--------------------------------------------------------------------*/
  22. #ifndef EMULATEHOST_SOURCE
  23. #define EMULATEHOST_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 EmulateHost (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. struct lightning_nvm_header nvm_header;
  72. struct pib_header pib_header;
  73. uint32_t offset;
  74. char const * PIB = plc->PIB.name;
  75. char const * NVM = plc->NVM.name;
  76. signed timer = channel->timeout;
  77. signed status = 0;
  78. Request (plc, "Waiting for Host Action");
  79. while (1)
  80. {
  81. channel->timeout = plc->timer;
  82. status = ReadMME (plc, 0, (VS_HOST_ACTION | MMTYPE_IND));
  83. channel->timeout = timer;
  84. if (status < 0)
  85. {
  86. break;
  87. }
  88. if (status > 0)
  89. {
  90. printf ("\n");
  91. if (indicate->MACTION < (sizeof (actions) / sizeof (char const *)))
  92. {
  93. Confirm (plc, "Host Action Request is (%d) %s.", indicate->MACTION, actions [indicate->MACTION]);
  94. }
  95. else
  96. {
  97. error (0, ENOTSUP, "Host Action 0x%0X", indicate->MACTION);
  98. continue;
  99. }
  100. memcpy (channel->peer, indicate->ethernet.OSA, sizeof (channel->peer));
  101. channel->timeout = timer;
  102. if (indicate->MACTION == 0x00)
  103. {
  104. unsigned module = 0;
  105. char firmware [PLC_VERSION_STRING];
  106. if (HostActionResponse (plc))
  107. {
  108. return (-1);
  109. }
  110. if (lseek (plc->PIB.file, 0, SEEK_SET))
  111. {
  112. error (1, errno, FILE_CANTHOME, plc->PIB.name);
  113. }
  114. if (read (plc->PIB.file, & pib_header, sizeof (pib_header)) != sizeof (pib_header))
  115. {
  116. error (1, errno, FILE_CANTREAD, plc->PIB.name);
  117. }
  118. if (lseek (plc->PIB.file, 0, SEEK_SET))
  119. {
  120. error (1, errno, FILE_CANTHOME, plc->PIB.name);
  121. }
  122. if (BE16TOH (* (uint16_t *) (& pib_header)) < 0x0305)
  123. {
  124. offset = LEGACY_PIBOFFSET;
  125. }
  126. else if (BE16TOH (* (uint16_t *) (& pib_header)) < 0x0500)
  127. {
  128. offset = INT6x00_PIBOFFSET;
  129. }
  130. else
  131. {
  132. offset = AR7x00_PIBOFFSET;
  133. }
  134. if (WriteMEM (plc, & plc->PIB, 0, offset, LE16TOH (pib_header.PIBLENGTH)))
  135. {
  136. return (-1);
  137. }
  138. if (lseek (plc->NVM.file, 0, SEEK_SET))
  139. {
  140. error (1, errno, FILE_CANTHOME, plc->NVM.name);
  141. }
  142. if (read (plc->NVM.file, & nvm_header, sizeof (nvm_header)) != sizeof (nvm_header))
  143. {
  144. error (1, errno, FILE_CANTREAD, plc->NVM.name);
  145. }
  146. while (nvm_header.NEXTHEADER)
  147. {
  148. lseek (plc->NVM.file, LE32TOH (nvm_header.NEXTHEADER), SEEK_SET);
  149. if (read (plc->NVM.file, & nvm_header, sizeof (nvm_header)) != sizeof (nvm_header))
  150. {
  151. error (1, errno, FILE_CANTREAD, plc->NVM.name);
  152. }
  153. module++;
  154. }
  155. if (WriteFirmware1 (plc, module, & nvm_header))
  156. {
  157. return (-1);
  158. }
  159. if (StartFirmware1 (plc, module, & nvm_header))
  160. {
  161. return (-1);
  162. }
  163. if (WaitForStart (plc, firmware, sizeof (firmware)))
  164. {
  165. return (-1);
  166. }
  167. if (_anyset (plc->flags, PLC_FLASH_DEVICE))
  168. {
  169. if (WriteNVM (plc))
  170. {
  171. return (-1);
  172. }
  173. if (WritePIB (plc))
  174. {
  175. return (-1);
  176. }
  177. if (FlashNVM (plc))
  178. {
  179. return (-1);
  180. }
  181. }
  182. continue;
  183. }
  184. if (indicate->MACTION == 0x01)
  185. {
  186. if (HostActionResponse (plc))
  187. {
  188. return (-1);
  189. }
  190. close (plc->NVM.file);
  191. if (ReadFirmware1 (plc))
  192. {
  193. return (-1);
  194. }
  195. if ((plc->NVM.file = open (plc->NVM.name = plc->nvm.name, O_BINARY | O_RDONLY)) == -1)
  196. {
  197. error (1, errno, "%s", plc->NVM.name);
  198. }
  199. if (ResetDevice (plc))
  200. {
  201. return (-1);
  202. }
  203. continue;
  204. }
  205. if (indicate->MACTION == 0x02)
  206. {
  207. if (HostActionResponse (plc))
  208. {
  209. return (-1);
  210. }
  211. close (plc->PIB.file);
  212. if (ReadParameters1 (plc))
  213. {
  214. return (-1);
  215. }
  216. if ((plc->PIB.file = open (plc->PIB.name = plc->pib.name, O_BINARY | O_RDONLY)) == -1)
  217. {
  218. error (1, errno, "%s", plc->PIB.name);
  219. }
  220. if (ResetDevice (plc))
  221. {
  222. return (-1);
  223. }
  224. continue;
  225. }
  226. if (indicate->MACTION == 0x03)
  227. {
  228. if (HostActionResponse (plc))
  229. {
  230. return (-1);
  231. }
  232. close (plc->NVM.file);
  233. if (ReadFirmware1 (plc))
  234. {
  235. return (-1);
  236. }
  237. if ((plc->NVM.file = open (plc->NVM.name = plc->nvm.name, O_BINARY | O_RDONLY)) == -1)
  238. {
  239. error (1, errno, "%s", plc->NVM.name);
  240. }
  241. close (plc->PIB.file);
  242. if (ReadParameters1 (plc))
  243. {
  244. return (-1);
  245. }
  246. if ((plc->PIB.file = open (plc->PIB.name = plc->pib.name, O_BINARY | O_RDONLY)) == -1)
  247. {
  248. error (1, errno, "%s", plc->PIB.name);
  249. }
  250. if (ResetDevice (plc))
  251. {
  252. return (-1);
  253. }
  254. continue;
  255. }
  256. if (indicate->MACTION == 0x04)
  257. {
  258. #if 0
  259. /*
  260. * Due to an omission in the INT6300 BootLoader, responding to this VS_HOST_ACTION
  261. * indication will suppress subsequent VS_HOST_ACTION messages and the device will
  262. * not request firmware and parameters; this may be corrected on the INT6400;
  263. */
  264. if (HostActionResponse (plc))
  265. {
  266. return (-1);
  267. }
  268. #endif
  269. if (WriteCFG (plc))
  270. {
  271. return (-1);
  272. }
  273. /*
  274. * At this point, one could download firmware and parameters without waiting for
  275. * further requests from the device; however, we elect to wait for them since it
  276. * is 'good form'; a device should send code 0x00 within 10 seconds of this one;
  277. */
  278. continue;
  279. }
  280. if (indicate->MACTION == 0x05)
  281. {
  282. if (HostActionResponse (plc))
  283. {
  284. return (-1);
  285. }
  286. close (plc->NVM.file);
  287. if ((plc->NVM.file = open (plc->NVM.name = NVM, O_BINARY | O_RDONLY)) == -1)
  288. {
  289. error (1, errno, "%s", plc->NVM.name);
  290. }
  291. close (plc->PIB.file);
  292. if ((plc->PIB.file = open (plc->PIB.name = PIB, O_BINARY | O_RDONLY)) == -1)
  293. {
  294. error (1, errno, "%s", plc->PIB.name);
  295. }
  296. if (ResetDevice (plc))
  297. {
  298. return (-1);
  299. }
  300. continue;
  301. }
  302. if (indicate->MACTION == 0x06)
  303. {
  304. close (plc->PIB.file);
  305. if (ReadParameters1 (plc))
  306. {
  307. return (-1);
  308. }
  309. if ((plc->PIB.file = open (plc->PIB.name = plc->pib.name, O_BINARY | O_RDONLY)) == -1)
  310. {
  311. error (1, errno, "%s", plc->PIB.name);
  312. }
  313. continue;
  314. }
  315. if (indicate->MACTION == 0x07)
  316. {
  317. error (0, 0, "Host has rebooted.");
  318. continue;
  319. }
  320. error (0, ENOSYS, "Host Action 0x%0X", indicate->MACTION);
  321. }
  322. }
  323. return (0);
  324. }
  325. #endif