123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- /****************************************************************************
- Copyright (c) 2013, 2020, 2022 Qualcomm Technologies, Inc.
- All Rights Reserved.
- Confidential and Proprietary - Qualcomm Technologies, Inc.
- **********************************************************************
- 2013 Qualcomm Atheros, Inc.
- ****************************************************************************/
- /*====================================================================*
- *
- * signed panther_nvm_revision (void const * memory, size_t extent);
- *
- * print the firmware revision string on stdout in human readable
- * format; although a revision string appears within the manifest,
- * the format does not match that returned by the firmware with a
- * VS_SW_VER request; this function walks the manifest and builds
- * a string that matches the firmware;
- *
- * Contributor(s):
- * Charles Maier <cmaier@qca.qualcomm.com>
- *
- *--------------------------------------------------------------------*/
- #ifndef PANTHER_NVM_REVISION_SOURCE
- #define PANTHER_NVM_REVISION_SOURCE
- #include <stdio.h>
- #include <stdlib.h>
- #include <stdint.h>
- #include <errno.h>
- #include "../tools/format.h"
- #include "../tools/memory.h"
- #include "../tools/endian.h"
- #include "../tools/error.h"
- #include "../tools/files.h"
- #include "../tools/tlv.h"
- #include "../nvm/nvm.h"
- /*
- * strings must appear in order of hardware types;
- */
- #ifndef PANTHER_NVM_MANIFEST_SOURCE
- static char const * compatibility [] =
- {
- "QCA7420",
- "QCA700X",
- (char const *) (0)
- };
- #endif
- signed panther_nvm_revision (void const * memory, size_t extent)
- {
- struct
- {
- char const * hardware;
- uint32_t device_type;
- char software [4];
- uint16_t build;
- uint32_t date;
- char const * type;
- }
- revision;
- uint8_t * offset = (uint8_t *) (memory);
- uint32_t length = (uint32_t) (extent);
- while (length > 0)
- {
- struct TLVNode * node = (struct TLVNode *) (offset);
- uint32_t type = LE32TOH (node->type);
- uint32_t data = LE32TOH (node->data);
- if (type == NVM_FIELD_HARDWARE_COMPAT)
- {
- static char string [1024];
- strfbits (string, sizeof (string), compatibility, "|", data);
- revision.hardware = string;
- }
- else if (type == NVM_FIELD_DEVICE_TYPE)
- {
- revision.device_type = data;
- }
- else if (type == NVM_FIELD_BUILD_MAJOR_VERSION)
- {
- revision.software [0] = data;
- }
- else if (type == NVM_FIELD_BUILD_MINOR_VERSION)
- {
- revision.software [1] = data;
- }
- else if (type == NVM_FIELD_BUILD_MAJOR_SUBVERSION)
- {
- revision.software [2] = data;
- }
- else if (type == NVM_FIELD_BUILD_NUMBER)
- {
- revision.build = data;
- }
- else if (type == NVM_FIELD_BUILD_SUSTAINING_RELEASE)
- {
- revision.software [3] = data;
- }
- else if (type == NVM_FIELD_BUILD_DATE)
- {
- revision.date = data;
- }
- else if (type == NVM_FIELD_BUILD_TYPE)
- {
- revision.type = (char const *) (& node->data);
- }
- length -= TLVSPAN (node);
- offset += TLVSPAN (node);
- }
- //printf ("%s-", revision.hardware);
- printf ("%s", "QCA");
- if(revision.device_type == 0x7000)
- {
- printf ("%s-", "700x");
- } else {
- printf ("%04X-", revision.device_type);
- }
- printf ("%d.", revision.software [0]);
- printf ("%d.", revision.software [1]);
- printf ("%d.", revision.software [2]);
- printf ("%d-", revision.build);
- printf ("%02d-", revision.software [3]);
- printf ("%08X-", revision.date);
- printf ("%s\n", revision.type);
- return (0);
- }
- signed panther_nvm_revision_forChkpib (void const * memory, size_t extent, struct Revision *PIBRevision)
- {
- uint8_t * offset = (uint8_t *) (memory);
- uint32_t length = (uint32_t) (extent);
- while (length > 0)
- {
- struct TLVNode * node = (struct TLVNode *) (offset);
- uint32_t type = LE32TOH (node->type);
- uint32_t data = LE32TOH (node->data);
- if (type == NVM_FIELD_HARDWARE_COMPAT)
- {
- static char string [1024];
- strfbits (string, sizeof (string), compatibility, "|", data);
- PIBRevision->hardware = string;
- }
- else if (type == NVM_FIELD_DEVICE_TYPE)
- {
- PIBRevision->device_type = data;
- }
- else if (type == NVM_FIELD_BUILD_MAJOR_VERSION)
- {
- PIBRevision->software [0] = data;
- }
- else if (type == NVM_FIELD_BUILD_MINOR_VERSION)
- {
- PIBRevision->software [1] = data;
- }
- else if (type == NVM_FIELD_BUILD_MAJOR_SUBVERSION)
- {
- PIBRevision->software [2] = data;
- }
- else if (type == NVM_FIELD_BUILD_NUMBER)
- {
- PIBRevision->build = data;
- }
- else if (type == NVM_FIELD_BUILD_SUSTAINING_RELEASE)
- {
- PIBRevision->software [3] = data;
- }
- else if (type == NVM_FIELD_BUILD_DATE)
- {
- PIBRevision->date = data;
- }
- else if (type == NVM_FIELD_BUILD_TYPE)
- {
- PIBRevision->type = (char const *) (& node->data);
- }
- length -= TLVSPAN (node);
- offset += TLVSPAN (node);
- }
- return (0);
- }
- #endif
|