Platform.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*====================================================================*
  2. Copyright (c) 2020 Qualcomm Technologies, Inc.
  3. All Rights Reserved.
  4. Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. ******************************************************************
  6. 2013 Qualcomm Atheros, Inc.
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed Platform (struct channel * channel, const uint8_t device []);
  11. *
  12. * plc.h
  13. *
  14. * Contributor(s):
  15. * Charles Maier <cmaier@qca.qualcomm.com>
  16. * Matthieu Poullet <m.poullet@avm.de>
  17. *
  18. *--------------------------------------------------------------------*/
  19. #ifndef PLATFORM_SOURCE
  20. #define PLATFORM_SOURCE
  21. #include <memory.h>
  22. #include <errno.h>
  23. #include <sys/time.h>
  24. #include "../tools/timer.h"
  25. #include "../ether/channel.h"
  26. #include "../tools/memory.h"
  27. #include "../tools/symbol.h"
  28. #include "../tools/error.h"
  29. #include "../tools/flags.h"
  30. #include "../plc/plc.h"
  31. signed Platform (struct channel * channel, const uint8_t device [])
  32. {
  33. struct message message;
  34. ssize_t packetsize;
  35. #ifndef __GNUC__
  36. #pragma pack (push,1)
  37. #endif
  38. struct __packed vs_sw_ver_request
  39. {
  40. struct ethernet_hdr ethernet;
  41. struct qualcomm_hdr qualcomm;
  42. }
  43. * request = (struct vs_sw_ver_request *) (& message);
  44. struct __packed vs_sw_ver_confirm
  45. {
  46. struct ethernet_hdr ethernet;
  47. struct qualcomm_hdr qualcomm;
  48. uint8_t MSTATUS;
  49. uint8_t MDEVICE_CLASS;
  50. uint8_t MVERLENGTH;
  51. char MVERSION [254];
  52. uint32_t IDENT;
  53. uint32_t STEPPING_NUM;
  54. uint32_t COOKIE;
  55. uint32_t RSVD [6];
  56. }
  57. * confirm = (struct vs_sw_ver_confirm *) (& message);
  58. #ifndef __GNUC__
  59. #pragma pack (pop)
  60. #endif
  61. memset (& message, 0, sizeof (message));
  62. EthernetHeader (& request->ethernet, device, channel->host, channel->type);
  63. QualcommHeader (& request->qualcomm, 0, (VS_SW_VER | MMTYPE_REQ));
  64. if (sendpacket (channel, & message, (ETHER_MIN_LEN - ETHER_CRC_LEN)) > 0)
  65. {
  66. struct timeval ts;
  67. struct timeval tc;
  68. if (gettimeofday (& ts, NULL) == -1)
  69. {
  70. error (1, errno, CANT_START_TIMER);
  71. }
  72. while ((packetsize = readpacket (channel, & message, sizeof (message))) >= 0)
  73. {
  74. if(UnwantedMessage (& message, packetsize, 0, (VS_SW_VER | MMTYPE_CNF)))
  75. {
  76. if (gettimeofday (& tc, NULL) == -1)
  77. {
  78. error (1, errno, CANT_RESET_TIMER);
  79. }
  80. if (channel->timeout < 0)
  81. {
  82. continue;
  83. }
  84. if (channel->timeout > MILLISECONDS (ts, tc))
  85. {
  86. continue;
  87. }
  88. break;
  89. }
  90. else if (memcmp (&confirm->ethernet.OSA[0],&device[0],ETHER_ADDR_LEN))
  91. {
  92. continue;
  93. }
  94. chipset (confirm);
  95. if( (enum tDeviceClass)confirm->MDEVICE_CLASS == eClass_30 )
  96. {
  97. printf (" %s", ConvertChipSignatureId2ProductIdStr((enum tChipSignature)confirm->IDENT));
  98. }
  99. else
  100. {
  101. printf (" %s", chipsetname (confirm->MDEVICE_CLASS));
  102. }
  103. printf (" %s", confirm->MVERSION);
  104. return (0);
  105. }
  106. }
  107. return (-1);
  108. }
  109. #endif