HostActionIndicate.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed HostActionIndicate (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * This test plugin requests come action from a local host using a
  15. * VS_HOST_ACTION indication message; the message must be sent to a
  16. * host, not a device; it can be used to verify that your host
  17. * application correctly responds to device requests;
  18. *
  19. * this function is provided so that you can emulate a device boot
  20. * sequence by prompting a listening host to download firmware; it
  21. * has no practical purpose other than development and test;
  22. *
  23. * Contributor(s):
  24. * Charles Maier <cmaier@qca.qualcomm.com>
  25. *
  26. *--------------------------------------------------------------------*/
  27. #ifndef HOSTACTIONINDICATE_SOURCE
  28. #define HOSTACTIONINDICATE_SOURCE
  29. #include <stdint.h>
  30. #include <memory.h>
  31. #include "../plc/plc.h"
  32. #include "../tools/error.h"
  33. #include "../tools/memory.h"
  34. signed HostActionIndicate (struct plc * plc)
  35. {
  36. struct channel * channel = (struct channel *) (plc->channel);
  37. struct message * message = (struct message *) (plc->message);
  38. #ifndef __GNUC__
  39. #pragma pack (push,1)
  40. #endif
  41. struct __packed vs_host_action_ind
  42. {
  43. struct ethernet_hdr ethernet;
  44. struct qualcomm_hdr qualcomm;
  45. uint8_t MACTION;
  46. uint8_t MAJOR_VERSION;
  47. uint8_t MINOR_VERSION;
  48. }
  49. * indicate = (struct vs_host_action_ind *) (message);
  50. struct __packed vs_host_action_rsp
  51. {
  52. struct ethernet_hdr ethernet;
  53. struct qualcomm_hdr qualcomm;
  54. uint8_t MSTATUS;
  55. }
  56. * response = (struct vs_host_action_rsp *) (message);
  57. #ifndef __GNUC__
  58. #pragma pack (pop)
  59. #endif
  60. Request (plc, "Start Host Action");
  61. memset (message, 0, sizeof (* message));
  62. EthernetHeader (& indicate->ethernet, channel->peer, channel->host, channel->type);
  63. QualcommHeader (& indicate->qualcomm, 0, (VS_HOST_ACTION | MMTYPE_IND));
  64. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  65. indicate->MACTION = plc->action;
  66. if (SendMME (plc) <= 0)
  67. {
  68. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  69. return (-1);
  70. }
  71. while (ReadMME (plc, 0, (VS_HOST_ACTION | MMTYPE_RSP)) > 0)
  72. {
  73. if (response->MSTATUS)
  74. {
  75. Failure (plc, PLC_WONTDOIT);
  76. continue;
  77. }
  78. Confirm (plc, "Start.");
  79. }
  80. return (0);
  81. }
  82. #endif