LinkStatus.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed LinkStatus (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * read powerline link status from an INT6x00
  15. * using a VS_PL_LINK_STATUS Request Message;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef LINKSTATUS_SOURCE
  22. #define LINKSTATUS_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 LinkStatus (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_link_status_request
  37. {
  38. struct ethernet_hdr ethernet;
  39. struct qualcomm_hdr qualcomm;
  40. }
  41. * request = (struct vs_link_status_request *) (message);
  42. struct __packed vs_link_status_confirm
  43. {
  44. struct ethernet_hdr ethernet;
  45. struct qualcomm_hdr qualcomm;
  46. uint8_t MSTATUS;
  47. uint8_t LINKSTATUS;
  48. }
  49. * confirm = (struct vs_link_status_confirm *) (message);
  50. #ifndef __GNUC__
  51. #pragma pack (pop)
  52. #endif
  53. Request (plc, "Request Link Status");
  54. memset (message, 0, sizeof (* message));
  55. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  56. QualcommHeader (& request->qualcomm, 0, (VS_PL_LINK_STATUS | MMTYPE_REQ));
  57. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  58. if (SendMME (plc) <= 0)
  59. {
  60. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  61. return (-1);
  62. }
  63. while (ReadMME (plc, 0, (VS_PL_LINK_STATUS | MMTYPE_CNF)) > 0)
  64. {
  65. if (confirm->MSTATUS)
  66. {
  67. Failure (plc, PLC_WONTDOIT);
  68. continue;
  69. }
  70. Display (plc, "%d", confirm->LINKSTATUS);
  71. }
  72. return (0);
  73. }
  74. #endif