SDRAMInfo.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed SDRAMInfo (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * read the flash resident NVM header and SDRAM configuration block
  15. * with VS_RD_CBLOCK;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef SDRAMINFO_SOURCE
  22. #define SDRAMINFO_SOURCE
  23. #include <stdint.h>
  24. #include <memory.h>
  25. #include "../plc/plc.h"
  26. #include "../tools/error.h"
  27. #include "../tools/memory.h"
  28. #include "../ram/sdram.h"
  29. #include "../nvm/nvm.h"
  30. signed SDRAMInfo (struct plc * plc)
  31. {
  32. struct channel * channel = (struct channel *) (plc->channel);
  33. struct message * message = (struct message *) (plc->message);
  34. #ifndef __GNUC__
  35. #pragma pack (push,1)
  36. #endif
  37. struct __packed vs_rd_cblock_request
  38. {
  39. struct ethernet_hdr ethernet;
  40. struct qualcomm_hdr qualcomm;
  41. }
  42. * request = (struct vs_rd_cblock_request *) (message);
  43. struct __packed vs_rd_cblock_confirm
  44. {
  45. struct ethernet_hdr ethernet;
  46. struct qualcomm_hdr qualcomm;
  47. uint8_t MSTATUS;
  48. uint8_t CONFIGLENGTH;
  49. struct lightning_nvm_header nvm_header;
  50. struct config_ram config_ram;
  51. }
  52. * confirm = (struct vs_rd_cblock_confirm *) (message);
  53. #ifndef __GNUC__
  54. #pragma pack (pop)
  55. #endif
  56. struct config_ram * config_ram = (struct config_ram *) (& confirm->config_ram);
  57. Request (plc, "Fetch SDRAM Parameters");
  58. memset (message, 0, sizeof (* message));
  59. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  60. QualcommHeader (& request->qualcomm, 0, (VS_RD_CBLOCK | MMTYPE_REQ));
  61. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  62. if (SendMME (plc) <= 0)
  63. {
  64. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  65. return (-1);
  66. }
  67. while (ReadMME (plc, 0, (VS_RD_CBLOCK | MMTYPE_CNF)) > 0)
  68. {
  69. if (confirm->MSTATUS)
  70. {
  71. Failure (plc, PLC_WONTDOIT);
  72. continue;
  73. }
  74. Confirm (plc, "-------");
  75. sdrampeek (config_ram);
  76. }
  77. return (0);
  78. }
  79. #endif