123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413 |
- #ifndef CHIPSET_SOURCE
- #define CHIPSET_SOURCE
- #include "../plc/plc.h"
- #include "../tools/types.h"
- #include "../tools/symbol.h"
- char const * chipsetname (uint8_t MDEVICE_CLASS)
- {
- static const struct _type_ chipname [] =
- {
- {
- CHIPSET_UNKNOWN,
- "UNKNOWN"
- },
- {
- CHIPSET_INT6000A1,
- "INT6000"
- },
- {
- CHIPSET_INT6300A0,
- "INT6300"
- },
- {
- CHIPSET_INT6400A0,
- "INT6400"
- },
- {
- CHIPSET_AR7400A0,
- " AR7400"
- },
- {
- CHIPSET_AR6405A0,
- " AR6405"
- },
- {
- CHIPSET_PANTHER_LYNX,
- "PANTHER/LYNX"
- },
- {
- CHIPSET_QCA7450A0,
- "QCA7450"
- },
- {
- CHIPSET_QCA7451A0,
- "QCA7451"
- },
- {
- CHIPSET_QCA7420A0,
- "QCA7420"
- },
- {
- CHIPSET_QCA6410A0,
- "QCA6410"
- },
- {
- CHIPSET_QCA7000A0,
- "QCA7000"
- },
- {
- CHIPSET_QCA7005A0,
- "QCA7005"
- },
- {
- CHIPSET_QCA7500A0,
- "QCA7500"
- }
- };
- return (typename (chipname, SIZEOF (chipname), MDEVICE_CLASS, chipname [0].name));
- }
- void chipset (void const * memory)
- {
- #ifndef __GNUC__
- #pragma pack (push,1)
- #endif
- struct __packed vs_sw_ver_confirm
- {
- struct ethernet_hdr ethernet;
- struct qualcomm_hdr qualcomm;
- uint8_t MSTATUS;
- uint8_t MDEVICE_CLASS;
- uint8_t MVERLENGTH;
- char MVERSION [254];
- }
- * confirm = (struct vs_sw_ver_confirm *) (memory);
- struct __packed chipinfo
- {
- uint8_t RESVD;
- uint32_t STRAP;
- uint32_t STEP_NUMBER;
- }
- * chipinfo = (struct chipinfo *) (& confirm->MVERSION [64]);
- typedef struct __packed
- {
- uint32_t STRAP;
- uint8_t CLASS;
- uint8_t DEVICE;
- }
- chipdata;
- #ifndef __GNUC__
- #pragma pack (pop)
- #endif
- chipdata bootrom [] =
- {
- {
- 0x00000042,
- 0x01,
- CHIPSET_INT6000A1
- },
- {
- 0x00006300,
- 0x01,
- CHIPSET_INT6300A0
- },
- {
- 0x00006400,
- 0x03,
- CHIPSET_INT6400A0
- },
- {
- 0x00007400,
- 0x03,
- CHIPSET_AR7400A0
- },
- {
- 0x0F001D1A,
- 0x03,
- CHIPSET_QCA7450A0
- },
- {
- 0x0E001D1A,
- 0x03,
- CHIPSET_QCA7451A0
- },
- {
- 0x001CFC00,
- 0x05,
- CHIPSET_QCA7420A0
- },
- {
- 0x001CFCFC,
- 0x05,
- CHIPSET_QCA7420A0
- },
- {
- 0x001CFCFC,
- 0x06,
- CHIPSET_QCA7420A0
- },
- {
- 0x001B58EC,
- 0x06,
- CHIPSET_QCA6410A0
- },
- {
- 0x001B58BC,
- 0x06,
- CHIPSET_QCA6411A0
- },
- {
- 0x001B58DC,
- 0x06,
- CHIPSET_QCA7000A0
- },
- {
- 0x001B587C,
- 0x06,
- CHIPSET_QCA7005A0
- },
- {
- 0x001D4C00,
- 0x06,
- CHIPSET_QCA7500A0
- },
- {
- 0x001D4C0F,
- 0x06,
- CHIPSET_QCA7500A0
- }
- };
- chipdata firmware [] =
- {
- {
- 0x00000000,
- 0x01,
- CHIPSET_INT6000A1
- },
- {
- 0x00000000,
- 0x02,
- CHIPSET_INT6300A0
- },
- {
- 0x00000000,
- 0x03,
- CHIPSET_INT6400A0
- },
- {
- 0x00000000,
- 0x05,
- CHIPSET_AR6405A0
- },
- {
- 0x00000000,
- 0x04,
- CHIPSET_AR7400A0
- },
- {
- 0x0F001D1A,
- 0x20,
- CHIPSET_QCA7450A0
- },
- {
- 0x0E001D1A,
- 0x20,
- CHIPSET_QCA7451A0
- },
- {
- 0x001CFCFC,
- 0x20,
- CHIPSET_QCA7420A0
- },
- {
- 0x001B58EC,
- 0x21,
- CHIPSET_QCA6410A0
- },
- {
- 0x001B58BC,
- 0x21,
- CHIPSET_QCA6411A0
- },
- {
- 0x001B58DC,
- 0x22,
- CHIPSET_QCA7000A0
- },
- {
- 0x001D4C00,
- 0x30,
- CHIPSET_QCA7500A0
- },
- {
- 0x001D4C0F,
- 0x30,
- CHIPSET_QCA7500A0
- }
- };
- unsigned chip;
- if (! strcmp (confirm->MVERSION, "BootLoader"))
- {
- for (chip = 0; chip < SIZEOF (bootrom); chip++)
- {
- if (bootrom [chip].CLASS != confirm->MDEVICE_CLASS)
- {
- continue;
- }
- if (bootrom [chip].STRAP != LE32TOH (chipinfo->STRAP))
- {
- continue;
- }
- confirm->MDEVICE_CLASS = bootrom [chip].DEVICE;
- return;
- }
- }
- else
- {
- for (chip = 0; chip < SIZEOF (firmware); chip++)
- {
- if (firmware [chip].CLASS != confirm->MDEVICE_CLASS)
- {
- continue;
- }
- if (firmware [chip].STRAP < CHIPSET_PANTHER_LYNX)
- {
- confirm->MDEVICE_CLASS = firmware [chip].DEVICE;
- return;
- }
- chipinfo = (struct chipinfo *) (& confirm->MVERSION [64]);
- if (firmware [chip].STRAP == LE32TOH (chipinfo->STRAP))
- {
- confirm->MDEVICE_CLASS = firmware [chip].DEVICE;
- return;
- }
- chipinfo = (struct chipinfo *) (& confirm->MVERSION [128]);
- if (firmware [chip].STRAP == LE32TOH (chipinfo->STRAP))
- {
- confirm->MDEVICE_CLASS = firmware [chip].DEVICE;
- return;
- }
- chipinfo = (struct chipinfo *) (& confirm->MVERSION [253]);
- if (firmware [chip].STRAP == LE32TOH (chipinfo->STRAP))
- {
- confirm->MDEVICE_CLASS = firmware [chip].DEVICE;
- return;
- }
- }
- }
- return;
- }
- #endif
|