int6kboot.c 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * int6kboot.c - Qualcomm Atheros INT6x00 Powerline Device Bootstrapper
  11. *
  12. * Contributor(s):
  13. * Charles Maier <cmaier@qca.qualcomm.com>
  14. *
  15. *--------------------------------------------------------------------*/
  16. /*====================================================================*
  17. * system header files;
  18. *--------------------------------------------------------------------*/
  19. #include <unistd.h>
  20. #include <stdlib.h>
  21. #include <string.h>
  22. #include <limits.h>
  23. #include <fcntl.h>
  24. #include <ctype.h>
  25. #include <sys/stat.h>
  26. /*====================================================================*
  27. * custom header files;
  28. *--------------------------------------------------------------------*/
  29. #include "../tools/getoptv.h"
  30. #include "../tools/putoptv.h"
  31. #include "../tools/memory.h"
  32. #include "../tools/symbol.h"
  33. #include "../tools/number.h"
  34. #include "../tools/types.h"
  35. #include "../tools/flags.h"
  36. #include "../tools/files.h"
  37. #include "../tools/error.h"
  38. #include "../plc/plc.h"
  39. #include "../ram/nvram.h"
  40. #include "../ram/sdram.h"
  41. #include "../nvm/nvm.h"
  42. #include "../pib/pib.h"
  43. /*====================================================================*
  44. * custom source files;
  45. *--------------------------------------------------------------------*/
  46. #ifndef MAKEFILE
  47. #include "../plc/chipset.c"
  48. #include "../plc/Confirm.c"
  49. #include "../plc/Devices.c"
  50. #include "../plc/Display.c"
  51. #include "../plc/Failure.c"
  52. #include "../plc/FlashNVM.c"
  53. #include "../plc/ReadMME.c"
  54. #include "../plc/Request.c"
  55. #include "../plc/SendMME.c"
  56. #include "../plc/WriteMEM.c"
  57. #include "../plc/WriteNVM.c"
  58. #include "../plc/WritePIB.c"
  59. #include "../plc/WaitForReset.c"
  60. #include "../plc/WaitForStart.c"
  61. #include "../plc/WaitForRestart.c"
  62. #include "../plc/InitDevice1.c"
  63. #include "../plc/BootDevice1.c"
  64. #include "../plc/BootFirmware1.c"
  65. #include "../plc/BootParameters1.c"
  66. #include "../plc/WriteFirmware1.c"
  67. #include "../plc/WriteExecuteFirmware1.c"
  68. #include "../plc/WriteExecutePIB.c"
  69. #include "../plc/StartFirmware1.c"
  70. #include "../plc/FlashDevice1.c"
  71. #endif
  72. #ifndef MAKEFILE
  73. #include "../tools/getoptv.c"
  74. #include "../tools/putoptv.c"
  75. #include "../tools/version.c"
  76. #include "../tools/uintspec.c"
  77. #include "../tools/checkfilename.c"
  78. #include "../tools/hexdecode.c"
  79. #include "../tools/hexstring.c"
  80. #include "../tools/todigit.c"
  81. #include "../tools/hexdump.c"
  82. #include "../tools/checksum32.c"
  83. #include "../tools/fdchecksum32.c"
  84. #include "../tools/error.c"
  85. #include "../tools/strfbits.c"
  86. #include "../tools/typename.c"
  87. #endif
  88. #ifndef MAKEFILE
  89. // #include "../ram/sdramfile.c"// #include "../ram/sdrampeek.c"
  90. #endif
  91. #ifndef MAKEFILE
  92. #include "../nvm/lightning_nvm_file.c"
  93. #endif
  94. #ifndef MAKEFILE
  95. #include "../pib/lightning_pib_file.c"
  96. #include "../pib/lightning_pib_peek.c"
  97. #endif
  98. #ifndef MAKEFILE
  99. #include "../ether/openchannel.c"
  100. #include "../ether/closechannel.c"
  101. #include "../ether/readpacket.c"
  102. #include "../ether/sendpacket.c"
  103. #include "../ether/channel.c"
  104. #endif
  105. #ifndef MAKEFILE
  106. #include "../mme/MMECode.c"
  107. #include "../mme/EthernetHeader.c"
  108. #include "../mme/QualcommHeader.c"
  109. #include "../mme/UnwantedMessage.c"
  110. #endif
  111. #ifndef MAKEFILE
  112. #include "../key/keys.c"
  113. #endif
  114. /*====================================================================*
  115. *
  116. * int main (int argc, char const * argv[]);
  117. *
  118. * parse command line, populate plc structure and perform selected
  119. * operations; show help summary when asked; see getoptv and putoptv
  120. * to understand command line parsing and help summary display; see
  121. * plc.h for the definition of struct plc;
  122. *
  123. * the default interface is eth1 because most people use eth0 as
  124. * their principle network connection; you can specify another
  125. * interface with -i or define environment string PLC to make
  126. * that the default interface and save typing;
  127. *
  128. *--------------------------------------------------------------------*/
  129. int main (int argc, char const * argv [])
  130. {
  131. extern struct channel channel;
  132. static char const * optv [] =
  133. {
  134. "ei:FN:p:P:qt:vx",
  135. "-N file -P file [device] [device] [...]",
  136. "Qualcomm Atheros INT6x00 Powerline Device Bootstrapper",
  137. "e\tredirect stderr to stdout",
  138. "F[F]\tflash [force] NVRAM after firmware start using VS_MOD_NVM",
  139. #if defined (WINPCAP) || defined (LIBPCAP)
  140. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  141. #else
  142. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  143. #endif
  144. "N f\twrite NVM file to device using VS_WR_MEM",
  145. "P f\twrite PIB file to device using VS_WR_MEM",
  146. "q\tquiet mode",
  147. "t n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
  148. "v\tverbose mode",
  149. "x\texit on error",
  150. (char const *) (0)
  151. };
  152. #include "../plc/plc.c"
  153. char firmware [PLC_VERSION_STRING];
  154. signed c;
  155. if (getenv (PLCDEVICE))
  156. {
  157. #if defined (WINPCAP) || defined (LIBPCAP)
  158. channel.ifindex = atoi (getenv (PLCDEVICE));
  159. #else
  160. channel.ifname = strdup (getenv (PLCDEVICE));
  161. #endif
  162. }
  163. optind = 1;
  164. while (~ (c = getoptv (argc, argv, optv)))
  165. {
  166. switch (c)
  167. {
  168. case 'i':
  169. #if defined (WINPCAP) || defined (LIBPCAP)
  170. channel.ifindex = atoi (optarg);
  171. #else
  172. channel.ifname = optarg;
  173. #endif
  174. break;
  175. case 'e':
  176. dup2 (STDOUT_FILENO, STDERR_FILENO);
  177. break;
  178. case 'F':
  179. _setbits (plc.module, (VS_MODULE_MAC | VS_MODULE_PIB));
  180. if (_anyset (plc.flags, PLC_FLASH_DEVICE))
  181. {
  182. _setbits (plc.module, VS_MODULE_FORCE);
  183. }
  184. _setbits (plc.flags, PLC_FLASH_DEVICE);
  185. break;
  186. case 'N':
  187. if (! checkfilename (optarg))
  188. {
  189. error (1, EINVAL, "%s", optarg);
  190. }
  191. if ((plc.NVM.file = open (plc.NVM.name = optarg, O_BINARY | O_RDONLY)) == -1)
  192. {
  193. error (1, errno, "%s", plc.NVM.name);
  194. }
  195. if (lightning_nvm_file (& plc.NVM))
  196. {
  197. error (1, errno, "Bad thunderbolt file: %s", plc.NVM.name);
  198. }
  199. _setbits (plc.flags, PLC_WRITE_MAC);
  200. break;
  201. case 'P':
  202. if (! checkfilename (optarg))
  203. {
  204. error (1, EINVAL, "%s", optarg);
  205. }
  206. if ((plc.PIB.file = open (plc.PIB.name = optarg, O_BINARY | O_RDONLY)) == -1)
  207. {
  208. error (1, errno, "%s", plc.PIB.name);
  209. }
  210. if (lightning_pib_file (& plc.PIB))
  211. {
  212. error (1, errno, "Bad thunderbolt parameter file: %s", plc.PIB.name);
  213. }
  214. _setbits (plc.flags, PLC_WRITE_PIB);
  215. break;
  216. case 'q':
  217. _setbits (channel.flags, CHANNEL_SILENCE);
  218. _setbits (plc.flags, PLC_SILENCE);
  219. break;
  220. case 't':
  221. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  222. break;
  223. case 'v':
  224. _setbits (channel.flags, CHANNEL_VERBOSE);
  225. _setbits (plc.flags, PLC_VERBOSE);
  226. break;
  227. case 'x':
  228. _setbits (plc.flags, PLC_BAILOUT);
  229. break;
  230. default:
  231. break;
  232. }
  233. }
  234. argc -= optind;
  235. argv += optind;
  236. if (argc)
  237. {
  238. error (1, ENOTSUP, ERROR_TOOMANY);
  239. }
  240. if (plc.PIB.file == -1)
  241. {
  242. error (1, ECANCELED, "No PIB file specified");
  243. }
  244. if (plc.NVM.file == -1)
  245. {
  246. error (1, ECANCELED, "No NVM file specified");
  247. }
  248. openchannel (& channel);
  249. if (! (plc.message = malloc (sizeof (* plc.message))))
  250. {
  251. error (1, errno, PLC_NOMEMORY);
  252. }
  253. if (WaitForStart (& plc, firmware, sizeof (firmware)))
  254. {
  255. Failure (& plc, PLC_NODETECT);
  256. exit (1);
  257. }
  258. if (plc.hardwareID < CHIPSET_INT6300)
  259. {
  260. Failure (& plc, "Device must be %s or later. Try program int6kf instead.", chipsetname (CHIPSET_INT6300));
  261. exit (1);
  262. }
  263. if (plc.hardwareID >= CHIPSET_AR7400)
  264. {
  265. Failure (& plc, "Program does not support %s or later; try program ampboot instead.", chipsetname (CHIPSET_AR7400));
  266. exit (1);
  267. }
  268. if (strcmp (firmware, "BootLoader"))
  269. {
  270. Failure (& plc, "Bootloader must be running");
  271. exit (1);
  272. }
  273. if (! InitDevice1 (& plc))
  274. {
  275. if (! BootDevice1 (& plc))
  276. {
  277. if (_anyset (plc.flags, PLC_FLASH_DEVICE))
  278. {
  279. FlashDevice1 (& plc);
  280. }
  281. }
  282. }
  283. free (plc.message);
  284. closechannel (& channel);
  285. exit (0);
  286. }