VersionInfo1.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed VersionInfo (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * read hardware and software version information from an INT6x00
  15. * using a VS_SW_VER Request Message;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef VERSIONINFO1_SOURCE
  22. #define VERSIONINFO1_SOURCE
  23. #include <stdint.h>
  24. #include <memory.h>
  25. #include "../tools/error.h"
  26. #include "../tools/memory.h"
  27. #include "../tools/symbol.h"
  28. #include "../plc/plc.h"
  29. signed VersionInfo1 (struct plc * plc)
  30. {
  31. struct channel * channel = (struct channel *) (plc->channel);
  32. struct message * message = (struct message *) (plc->message);
  33. #ifndef __GNUC__
  34. #pragma pack (push,1)
  35. #endif
  36. struct __packed vs_sw_ver_request
  37. {
  38. struct ethernet_hdr ethernet;
  39. struct qualcomm_hdr qualcomm;
  40. }
  41. * request = (struct vs_sw_ver_request *) (message);
  42. struct __packed vs_sw_ver_confirm
  43. {
  44. struct ethernet_hdr ethernet;
  45. struct qualcomm_hdr qualcomm;
  46. uint8_t MSTATUS;
  47. uint8_t MDEVICEID;
  48. uint8_t MVERLENGTH;
  49. char MVERSION [PLC_VERSION_STRING];
  50. }
  51. * confirm = (struct vs_sw_ver_confirm *) (message);
  52. #ifndef __GNUC__
  53. #pragma pack (pop)
  54. #endif
  55. Request (plc, "Request Version Information");
  56. memset (message, 0, sizeof (* message));
  57. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  58. QualcommHeader (& request->qualcomm, 0, (VS_SW_VER | MMTYPE_REQ));
  59. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  60. if (SendMME (plc) <= 0)
  61. {
  62. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  63. return (-1);
  64. }
  65. while (ReadMME (plc, 0, (VS_SW_VER | MMTYPE_CNF)) > 0)
  66. {
  67. if (confirm->MSTATUS)
  68. {
  69. Failure (plc, PLC_WONTDOIT);
  70. continue;
  71. }
  72. chipset (confirm);
  73. Display (plc, "%s %s", chipsetname (confirm->MDEVICEID), confirm->MVERSION);
  74. }
  75. return (0);
  76. }
  77. #endif