NVRAMInfo.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*====================================================================*
  2. Copyright (c) 2013,2019 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 NVRAMInfo (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * This plugin for program plc requests a device NVRAM parameter
  15. * block using a VS_GET_NVM message; the information is displayed
  16. * and can be used to determine the flash memory characteristics
  17. * before downloading firmware;
  18. *
  19. * Contributor(s):
  20. * Charles Maier <cmaier@qca.qualcomm.com>
  21. * Kalaivani Somasundaram <kalaivan@qti.qualcomm.com>
  22. *
  23. *--------------------------------------------------------------------*/
  24. #ifndef NVRAMINFO_SOURCE
  25. #define NVRAMINFO_SOURCE
  26. #include <stdint.h>
  27. #include <memory.h>
  28. #include "../plc/plc.h"
  29. #include "../tools/error.h"
  30. #include "../tools/memory.h"
  31. #include "../tools/symbol.h"
  32. #include "../ram/nvram.h"
  33. signed NVRAMInfo (struct plc * plc)
  34. {
  35. struct channel * channel = (struct channel *) (plc->channel);
  36. struct message * message = (struct message *) (plc->message);
  37. #ifndef __GNUC__
  38. #pragma pack (push,1)
  39. #endif
  40. struct __packed vs_get_nvm_request
  41. {
  42. struct ethernet_hdr ethernet;
  43. struct qualcomm_hdr qualcomm;
  44. }
  45. * request = (struct vs_get_nvm_request *) (message);
  46. struct __packed vs_get_nvm_confirm
  47. {
  48. struct ethernet_hdr ethernet;
  49. struct qualcomm_hdr qualcomm;
  50. uint8_t MSTATUS;
  51. struct config_nvram config_nvram;
  52. }
  53. * confirm = (struct vs_get_nvm_confirm *) (message);
  54. #ifndef __GNUC__
  55. #pragma pack (pop)
  56. #endif
  57. struct config_nvram * config_nvram = (struct config_nvram *) (& confirm->config_nvram);
  58. Request (plc, "Fetch NVRAM Configuration");
  59. memset (message, 0, sizeof (* message));
  60. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  61. QualcommHeader (& request->qualcomm, 0, (VS_GET_NVM | MMTYPE_REQ));
  62. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  63. if (SendMME (plc) <= 0)
  64. {
  65. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  66. return (-1);
  67. }
  68. while (ReadMME (plc, 0, (VS_GET_NVM | MMTYPE_CNF)) > 0)
  69. {
  70. if (confirm->MSTATUS)
  71. {
  72. Failure (plc, PLC_WONTDOIT);
  73. continue;
  74. }
  75. Display (plc, "TYPE=0x%02X (%s) PAGE=0x%04X (%d) BLOCK=0x%04X (%d) SIZE=0x%04X (%d)", LE32TOH (config_nvram->NVRAMTYPE), NVRAMName (LE32TOH (config_nvram->NVRAMTYPE)), LE32TOH (config_nvram->NVRAMPAGE), LE32TOH (config_nvram->NVRAMPAGE), LE32TOH (config_nvram->NVRAMBLOCK), LE32TOH (config_nvram->NVRAMBLOCK), LE32TOH (config_nvram->NVRAMSIZE), LE32TOH (config_nvram->NVRAMSIZE));
  76. }
  77. return (0);
  78. }
  79. signed IsFlashExists (struct plc * plc)
  80. {
  81. struct channel * channel = (struct channel *) (plc->channel);
  82. struct message * message = (struct message *) (plc->message);
  83. #ifndef __GNUC__
  84. #pragma pack (push,1)
  85. #endif
  86. struct __packed vs_get_nvm_request
  87. {
  88. struct ethernet_hdr ethernet;
  89. struct qualcomm_hdr qualcomm;
  90. }
  91. * request = (struct vs_get_nvm_request *) (message);
  92. struct __packed vs_get_nvm_confirm
  93. {
  94. struct ethernet_hdr ethernet;
  95. struct qualcomm_hdr qualcomm;
  96. uint8_t MSTATUS;
  97. struct config_nvram config_nvram;
  98. }
  99. * confirm = (struct vs_get_nvm_confirm *) (message);
  100. #ifndef __GNUC__
  101. #pragma pack (pop)
  102. #endif
  103. memset (message, 0, sizeof (* message));
  104. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  105. QualcommHeader (& request->qualcomm, 0, (VS_GET_NVM | MMTYPE_REQ));
  106. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  107. if (SendMME (plc) <= 0)
  108. {
  109. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  110. return (-1);
  111. }
  112. while (ReadMME (plc, 0, (VS_GET_NVM | MMTYPE_CNF)) > 0)
  113. {
  114. if (confirm->MSTATUS == 0x00)
  115. {
  116. return (1);
  117. }
  118. }
  119. return (0);
  120. }
  121. #endif