123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520 |
- /*====================================================================*
- * Copyright (c) 2018 Qualcomm Technologies, Inc.
- * All Rights Reserved.
- * Confidential and Proprietary - Qualcomm Technologies, Inc.
- *--------------------------------------------------------------------*/
- /*====================================================================*
- *
- * backoff.c
- *
- * Contributor(s):
- * Nisha K <nishk@qti.qualcomm.com>
- *
- *--------------------------------------------------------------------*/
- #include <stdio.h>
- #include <unistd.h>
- #include <stdlib.h>
- #include <stdint.h>
- #include <limits.h>
- #include <sys/time.h>
- /*====================================================================*
- * custom header files;
- *--------------------------------------------------------------------*/
- #include "../tools/getoptv.h"
- #include "../tools/putoptv.h"
- #include "../tools/memory.h"
- #include "../tools/symbol.h"
- #include "../tools/number.h"
- #include "../tools/timer.h"
- #include "../tools/endian.h"
- #include "../tools/types.h"
- #include "../tools/flags.h"
- #include "../tools/files.h"
- #include "../tools/error.h"
- #include "../tools/tlv.h"
- #include "../plc/plc.h"
- /*====================================================================*
- * custom source files;
- *--------------------------------------------------------------------*/
- #ifndef MAKEFILE
- #include "../plc/Devices.c"
- #include "../plc/Failure.c"
- #include "../plc/ReadMME.c"
- #include "../plc/SendMME.c"
- #endif
- #ifndef MAKEFILE
- #include "../tools/error.c"
- #include "../tools/getoptv.c"
- #include "../tools/putoptv.c"
- #include "../tools/version.c"
- #include "../tools/uintspec.c"
- #include "../tools/hexload.c"
- #include "../tools/timer.h"
- #include "../tools/hexdump.c"
- #include "../tools/hexencode.c"
- #include "../tools/hexdecode.c"
- #include "../tools/hexstring.c"
- #include "../tools/todigit.c"
- #include "../tools/synonym.c"
- #endif
- #ifndef MAKEFILE
- #include "../ether/openchannel.c"
- #include "../ether/closechannel.c"
- #include "../ether/readpacket.c"
- #include "../ether/sendpacket.c"
- #include "../ether/channel.c"
- #endif
- #ifndef MAKEFILE
- #include "../mme/EthernetHeader.c"
- #include "../mme/QualcommHeader.c"
- #include "../mme/UnwantedMessage.c"
- #include "../mme/MMECode.c"
- #endif
- /*====================================================================*
- *
- * signed getprescalervalues (struct plc * plc, uint8_t numofbands);
- *
- *===================================================================*/
- static signed getprescalervalues (struct plc * plc)
- {
- struct channel * channel = (struct channel *) (plc->channel);
- struct message * message = (struct message *) (plc->message);
-
- #ifndef __GNUC__
- #pragma pack (push,1)
- #endif
- typedef struct __packed {
- uint16_t startidx;
- uint8_t startbackoffdB;
- uint16_t endidx;
- uint8_t endbackoffdB;
- } banddesc;
-
- struct __packed vs_get_prescaler_backoff_request
- {
- struct ethernet_hdr ethernet;
- struct qualcomm_hdr qualcomm;
- uint8_t RESERVED[4];
- }
- * request = (struct vs_get_prescaler_backoff_request *) (message);
-
- struct __packed vs_get_prescaler_backoff_confirm
- {
- struct ethernet_hdr ethernet;
- struct qualcomm_hdr qualcomm;
- uint8_t MSTATUS;
- uint8_t NUMOFBANDSPRIMARY;
- banddesc BANDDESC_PRI[16];
- uint8_t NUMOFBANDSALTERNATE;
- banddesc BANDDESC_ALT[16];
- }
- * confirm = (struct vs_get_prescaler_backoff_confirm *) (message);
- #ifndef __GNUC__
- #pragma pack (pop)
- #endif
- uint8_t i;
-
- memset (message, 0, sizeof (* message));
- EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
- QualcommHeader (& request->qualcomm, 0, (VS_GET_PRESCALER_BACKOFF | MMTYPE_REQ));
- plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
-
- if (SendMME (plc) <= 0)
- {
- error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
- return (-1);
- }
-
- if (ReadMME (plc, 0, (VS_GET_PRESCALER_BACKOFF | MMTYPE_CNF)) <= 0)
- {
- error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
- return (-1);
- }
- if (confirm->MSTATUS)
- {
- Failure (plc, PLC_WONTDOIT);
- return (-1);
- }
-
- if (confirm->NUMOFBANDSPRIMARY) {
- printf("Frequency bands in Primary chain\n");
- printf("Band | Start index | Start back off(dB) | End index | End back off(dB)\n");
- for (i=0; i<confirm->NUMOFBANDSPRIMARY; i++)
- {
- printf("%d", i);
- printf("%10d", confirm->BANDDESC_PRI[i].startidx);
- printf("%#15x", confirm->BANDDESC_PRI[i].startbackoffdB);
- printf("%20d", confirm->BANDDESC_PRI[i].endidx);
- printf("%#15x\n", confirm->BANDDESC_PRI[i].endbackoffdB);
- }
- } else
- printf("No frequency bands in Primary chain\n");
-
- if (confirm->NUMOFBANDSALTERNATE) {
- printf("Frequency bands in Alternate chain\n");
- printf("Band | Start index | Start back off(dB) | End index | End back off(dB)\n");
- for (i=0; i<confirm->NUMOFBANDSALTERNATE; i++)
- {
- printf("%d", i);
- printf("%10d", confirm->BANDDESC_ALT[i].startidx);
- printf("%#15x", confirm->BANDDESC_ALT[i].startbackoffdB);
- printf("%20d", confirm->BANDDESC_ALT[i].endidx);
- printf("%#15x\n", confirm->BANDDESC_ALT[i].endbackoffdB);
- }
- } else
- printf("No frequency bands in Alternate chain\n");
- return 0;
- }
- /*====================================================================*
- *
- * signed setprescalervalues (struct plc * plc, uint8_t numofbands);
- *
- *===================================================================*/
- static signed setprescalervalues (struct plc * plc, void* memory, uint8_t numofbands)
- {
- struct channel * channel = (struct channel *) (plc->channel);
- struct message * message = (struct message *) (plc->message);
- struct timeval ts;
- struct timeval tc;
- unsigned timer = 0;
- #ifndef __GNUC__
- #pragma pack (push,1)
- #endif
- typedef struct {
- uint16_t startidx;
- uint8_t startbackoffdB;
- uint16_t endidx;
- uint8_t endbackoffdB;
- } banddesc;
-
- struct __packed vs_set_prescaler_backoff_request
- {
- struct ethernet_hdr ethernet;
- struct qualcomm_hdr qualcomm;
- uint8_t COUPLING;
- uint8_t NUMOFFREQBANDS;
- banddesc BANDDESCRIPTOR[16];
- uint8_t RESERVED[4];
- }
- * request = (struct vs_set_prescaler_backoff_request *) (message);
- struct __packed vs_set_prescaler_backoff_confirm
- {
- struct ethernet_hdr ethernet;
- struct qualcomm_hdr qualcomm;
- uint8_t MSTATUS;
- }
- * confirm = (struct vs_set_prescaler_backoff_confirm *) (message);
- struct __packed vs_set_prescaler_backoff_ind
- {
- struct ethernet_hdr ethernet;
- struct qualcomm_hdr qualcomm;
- uint8_t MSTATUS;
- uint8_t NUMOFBANDSPRIMARY;
- banddesc BANDDESC_PRI[16];
- uint8_t NUMOFBANDSALTERNATE;
- banddesc BANDDESC_ALT[16];
- }
- * indicate = (struct vs_set_prescaler_backoff_ind *) (message);
- #ifndef __GNUC__
- #pragma pack (pop)
- #endif
-
- uint8_t i;
- int length = numofbands * 6;
- bool rcvd = 0;
- memset (message, 0, sizeof (* message));
- EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
- QualcommHeader (& request->qualcomm, 0, (VS_SET_PRESCALER_BACKOFF | MMTYPE_REQ));
- plc->packetsize = sizeof (struct vs_set_prescaler_backoff_request);
- request->COUPLING = plc->coupling;
- request->NUMOFFREQBANDS = numofbands;
- memcpy (request->BANDDESCRIPTOR, (byte *)memory, length);
-
- if (SendMME (plc) <= 0)
- {
- error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
- return (-1);
- }
- if (ReadMME (plc, 0, (VS_SET_PRESCALER_BACKOFF | MMTYPE_CNF)) <= 0)
- {
- error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
- return (-1);
- }
- if (confirm->MSTATUS)
- {
- Failure (plc, PLC_WONTDOIT);
- return (-1);
- }
- if (gettimeofday (& ts, NULL) == -1)
- {
- error (1, errno, CANT_START_TIMER);
- }
- for (timer = 0; timer < 30; timer = SECONDS (ts, tc)) //wait 30 secs for indication
- {
- if (ReadMME (plc, 0, (VS_SET_PRESCALER_BACKOFF | MMTYPE_IND)) > 0)
- {
- rcvd = 1;
- break;
- }
- if (gettimeofday (& tc, NULL) == -1)
- {
- error (1, errno, CANT_RESET_TIMER);
- }
- }
- if(!rcvd)
- {
- error (PLC_EXIT (plc), errno, "IND MME not received");
- return (-1);
- }
-
- if (indicate->MSTATUS == 0x00)
- {
- printf("Back-off Applied Successfully\n");
- } else if(indicate->MSTATUS == 0x05) {
- printf("Previous Backoff Restored\n");
- } else if (indicate->MSTATUS == 0x07) {
- error (PLC_EXIT (plc), errno, "Backoff Request Failed");
- return (-1);
- }
- if (indicate->NUMOFBANDSPRIMARY) {
- printf("Frequency bands in Primary chain\n");
- printf("Band | Start index | Start back off(dB) | End index | End back off(dB)\n");
- for (i=0; i<indicate->NUMOFBANDSPRIMARY; i++)
- {
- printf("%d", i);
- printf("%10d", indicate->BANDDESC_PRI[i].startidx);
- printf("%#15x", indicate->BANDDESC_PRI[i].startbackoffdB);
- printf("%20d", indicate->BANDDESC_PRI[i].endidx);
- printf("%#15x\n", indicate->BANDDESC_PRI[i].endbackoffdB);
- }
- } else
- printf("No frequency bands in Primary chain\n");
-
- if (indicate->NUMOFBANDSALTERNATE) {
- printf("Frequency bands in Alternate chain\n");
- printf("Band | Start index | Start back off(dB) | End index | End back off(dB)\n");
- for (i=0; i<indicate->NUMOFBANDSALTERNATE; i++)
- {
- printf("%d", i);
- printf("%10d", indicate->BANDDESC_ALT[i].startidx);
- printf("%#15x", indicate->BANDDESC_ALT[i].startbackoffdB);
- printf("%20d", indicate->BANDDESC_ALT[i].endidx);
- printf("%#15x\n", indicate->BANDDESC_ALT[i].endbackoffdB);
- }
- } else
- printf("No frequency bands in Alternate chain\n");
- return (0);
- }
- /*====================================================================*
- *
- * void manager (struct plc * plc, uint8_t numofbands);
- *
- *===================================================================*/
-
- void manager (struct plc * plc, void* memory, uint8_t numofbands)
- {
- if (_anyset (plc->flags, PLC_SET_PRESCALER))
- {
- setprescalervalues (plc, memory, numofbands);
- } else {
- getprescalervalues (plc);
- }
- return;
- }
- /*====================================================================*
- *
- * int main (int argc, char const * argv[]);
- *
- *--------------------------------------------------------------------*/
- int main (int argc, char const * argv [])
- {
- extern struct channel channel;
- static char const * optv [] =
- {
- "c:egi:n:qs:t:vx",
- "device [device] [...]",
- "Qualcomm QCA75xx prescaler control MME utility",
- "c n\tcoupling [" LITERAL (PLCOUPLING) "]",
- "e\tredirect stderr to stdout",
- "g\tget prescaler values",
- #if defined (WINPCAP) || defined (LIBPCAP)
- "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
- #else
- "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
- #endif
- "n\tnumber of frequency bands",
- "q\tquiet mode",
- "s f\tset prescaler values from input file (f)\n\tinput file should contain only desriptor values",
- "t n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
- "v\tverbose mode",
- "x\texit on error",
- (char const *) (0)
- };
- static const struct _term_ coupling [] =
- {
- {
- "alt",
- "1"
- },
- {
- "mimo",
- "2"
- },
- {
- "pri",
- "0"
- }
- };
- #include "../plc/plc.c"
- FILE * fp;
- byte memory [96];
- uint8_t numofbands = 0;
- signed c;
- if (getenv (PLCDEVICE))
- {
- #if defined (WINPCAP) || defined (LIBPCAP)
- channel.ifindex = atoi (getenv (PLCDEVICE));
- #else
- channel.ifname = strdup (getenv (PLCDEVICE));
- #endif
- }
- optind = 1;
- memset (memory, 0, sizeof (memory));
- while (~ (c = getoptv (argc, argv, optv)))
- {
- switch (c)
- {
- case 'c':
- plc.coupling = (byte) (uintspec (synonym (optarg, coupling, SIZEOF (coupling)), 0, UCHAR_MAX));
- break;
- case 'e':
- dup2 (STDOUT_FILENO, STDERR_FILENO);
- break;
- case 'g':
- _setbits (plc.flags, PLC_GET_PRESCALER);
- break;
- case 'i':
- #if defined (WINPCAP) || defined (LIBPCAP)
- channel.ifindex = atoi (optarg);
- #else
- channel.ifname = optarg;
- #endif
- break;
- case 'n':
- numofbands = (signed) (uintspec (optarg, 0, UINT_MAX));
- break;
- case 'q':
- _setbits (channel.flags, CHANNEL_SILENCE);
- _setbits (plc.flags, PLC_SILENCE);
- break;
- case 's':
- if (! (fp = fopen (optarg, "rb")))
- {
- error (1, errno, "%s", optarg);
- }
- hexload (memory, sizeof (memory), fp);
- fclose (fp);
- _setbits (plc.flags, PLC_SET_PRESCALER);
- break;
- case 't':
- channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
- break;
- case 'v':
- _setbits (channel.flags, CHANNEL_VERBOSE);
- _setbits (plc.flags, PLC_VERBOSE);
- break;
- case 'x':
- _setbits (plc.flags, PLC_BAILOUT);
- break;
- default:
- break;
- }
- }
- if (optind == 1)
- exit (0);
- if (_anyset (plc.flags, PLC_SET_PRESCALER))
- {
- if (!numofbands)
- error (1, errno, "missing mandatory arguments");
- }
- argc -= optind;
- argv += optind;
-
- openchannel (& channel);
-
- if (!(plc.message = malloc (sizeof (* plc.message))))
- {
- error (1, errno, PLC_NOMEMORY);
- }
- if (! argc)
- {
- manager (& plc, memory, numofbands);
- }
- while ((argc) && (* argv))
- {
- if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
- {
- error (1, errno, PLC_BAD_MAC, * argv);
- }
- manager (& plc, memory, numofbands);
- argc--;
- argv++;
- }
- free (plc.message);
- closechannel (& channel);
- exit (0);
-
- return (0);
- }
|