chg: LF t55xx trace
new: LF t55xx info
This commit is contained in:
@@ -21,7 +21,8 @@
|
||||
#include "util.h"
|
||||
#include "data.h"
|
||||
|
||||
#define LF_TRACE_BUFF_SIZE 16000
|
||||
|
||||
#define LF_TRACE_BUFF_SIZE 12000 // 32 x 32 x 10 (32 bit times numofblock (7), times clock skip..)
|
||||
static int CmdHelp(const char *Cmd);
|
||||
|
||||
|
||||
@@ -50,33 +51,25 @@ int CmdReadBlk(const char *Cmd)
|
||||
SendCommand(&c);
|
||||
WaitForResponse(CMD_ACK, NULL);
|
||||
|
||||
uint8_t data[LF_TRACE_BUFF_SIZE];
|
||||
memset(data, 0x00, LF_TRACE_BUFF_SIZE);
|
||||
uint8_t data[LF_TRACE_BUFF_SIZE] = {0x00};
|
||||
|
||||
GetFromBigBuf(data,LF_TRACE_BUFF_SIZE,3560); //3560 -- should be offset..
|
||||
WaitForResponseTimeout(CMD_ACK,NULL, 1500);
|
||||
|
||||
for (int j = 0; j < LF_TRACE_BUFF_SIZE; j++) {
|
||||
GraphBuffer[j] = ((int)data[j]) - 128;
|
||||
GraphBuffer[j] = ((int)data[j]) ;
|
||||
}
|
||||
GraphTraceLen = LF_TRACE_BUFF_SIZE;
|
||||
|
||||
// BiDirectional
|
||||
//CmdDirectionalThreshold("70 60");
|
||||
|
||||
// Askdemod
|
||||
//Cmdaskdemod("1");
|
||||
|
||||
uint8_t bits[1000];
|
||||
uint8_t bits[1000] = {0x00};
|
||||
uint8_t * bitstream = bits;
|
||||
memset(bitstream, 0x00, sizeof(bits));
|
||||
|
||||
manchester_decode(GraphBuffer, LF_TRACE_BUFF_SIZE, bitstream);
|
||||
|
||||
RepaintGraphWindow();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int CmdReadBlkPWD(const char *Cmd)
|
||||
{
|
||||
int Block = -1; //default to invalid block
|
||||
@@ -100,8 +93,7 @@ int CmdReadBlkPWD(const char *Cmd)
|
||||
SendCommand(&c);
|
||||
WaitForResponse(CMD_ACK, NULL);
|
||||
|
||||
uint8_t data[LF_TRACE_BUFF_SIZE];
|
||||
memset(data, 0x00, LF_TRACE_BUFF_SIZE);
|
||||
uint8_t data[LF_TRACE_BUFF_SIZE] = {0x00};
|
||||
|
||||
GetFromBigBuf(data,LF_TRACE_BUFF_SIZE,3560); //3560 -- should be offset..
|
||||
WaitForResponseTimeout(CMD_ACK,NULL, 1500);
|
||||
@@ -111,21 +103,14 @@ int CmdReadBlkPWD(const char *Cmd)
|
||||
}
|
||||
GraphTraceLen = LF_TRACE_BUFF_SIZE;
|
||||
|
||||
// BiDirectional
|
||||
//CmdDirectionalThreshold("70 -60");
|
||||
|
||||
// Askdemod
|
||||
//Cmdaskdemod("1");
|
||||
|
||||
uint8_t bits[1000];
|
||||
uint8_t bits[1000] = {0x00};
|
||||
uint8_t * bitstream = bits;
|
||||
memset(bitstream, 0x00, sizeof(bits));
|
||||
|
||||
manchester_decode(GraphBuffer, LF_TRACE_BUFF_SIZE, bitstream);
|
||||
manchester_decode(GraphBuffer, LF_TRACE_BUFF_SIZE, bitstream);
|
||||
RepaintGraphWindow();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int CmdWriteBlk(const char *Cmd)
|
||||
{
|
||||
int Block = 8; //default to invalid block
|
||||
@@ -177,39 +162,251 @@ int CmdWriteBlkPWD(const char *Cmd)
|
||||
|
||||
int CmdReadTrace(const char *Cmd)
|
||||
{
|
||||
PrintAndLog(" Reading page 1 - tracedata");
|
||||
|
||||
UsbCommand c = {CMD_T55XX_READ_TRACE, {0, 0, 0}};
|
||||
SendCommand(&c);
|
||||
UsbCommand c = {CMD_T55XX_READ_TRACE, {0, 0, 0}};
|
||||
SendCommand(&c);
|
||||
WaitForResponse(CMD_ACK, NULL);
|
||||
|
||||
uint8_t data[LF_TRACE_BUFF_SIZE];
|
||||
memset(data, 0x00, LF_TRACE_BUFF_SIZE);
|
||||
uint8_t data[LF_TRACE_BUFF_SIZE] = {0x00};
|
||||
|
||||
GetFromBigBuf(data,LF_TRACE_BUFF_SIZE,3560); //3560 -- should be offset..
|
||||
WaitForResponseTimeout(CMD_ACK,NULL, 1500);
|
||||
|
||||
for (int j = 0; j < LF_TRACE_BUFF_SIZE; j++) {
|
||||
GraphBuffer[j] = ((int)data[j]) - 128;
|
||||
GraphBuffer[j] = ((int)data[j]);
|
||||
//GraphBuffer[j] = ((int)data[j]) - 128;
|
||||
}
|
||||
GraphTraceLen = LF_TRACE_BUFF_SIZE;
|
||||
|
||||
// BiDirectional
|
||||
//CmdDirectionalThreshold("70 -60");
|
||||
|
||||
// Askdemod
|
||||
//Cmdaskdemod("1");
|
||||
|
||||
|
||||
uint8_t bits[1000];
|
||||
uint8_t bits[1000] = {0x00};
|
||||
uint8_t * bitstream = bits;
|
||||
memset(bitstream, 0x00, sizeof(bits));
|
||||
|
||||
manchester_decode(GraphBuffer, LF_TRACE_BUFF_SIZE, bitstream);
|
||||
|
||||
RepaintGraphWindow();
|
||||
|
||||
uint8_t si = 5;
|
||||
uint32_t bl0 = PackBits(si, 32, bitstream);
|
||||
uint32_t bl1 = PackBits(si+32, 32, bitstream);
|
||||
|
||||
uint32_t acl = PackBits(si, 8, bitstream);
|
||||
si += 8;
|
||||
uint32_t mfc = PackBits(si, 8, bitstream);
|
||||
si += 8;
|
||||
uint32_t cid = PackBits(si, 5, bitstream);
|
||||
si += 5;
|
||||
uint32_t icr = PackBits(si, 3, bitstream);
|
||||
si += 3;
|
||||
uint32_t year = PackBits(si, 4, bitstream);
|
||||
si += 4;
|
||||
uint32_t quarter = PackBits(si, 2, bitstream);
|
||||
si += 2;
|
||||
uint32_t num = PackBits(si, 12, bitstream);
|
||||
si += 12;
|
||||
uint32_t wafer = PackBits(si, 5, bitstream);
|
||||
si += 5;
|
||||
uint32_t dw = PackBits(si, 15, bitstream);
|
||||
|
||||
PrintAndLog("");
|
||||
PrintAndLog("-- T55xx Trace Information ----------------------------------");
|
||||
PrintAndLog("-------------------------------------------------------------");
|
||||
PrintAndLog(" ACL Allocation class (ISO/IEC 15963-1) : 0x%02X (%d)", acl, acl);
|
||||
PrintAndLog(" MFC Manufacturer ID (ISO/IEC 7816-6) : 0x%02X (%d)", mfc, mfc);
|
||||
PrintAndLog(" CID : 0x%02X (%d)", cid, cid);
|
||||
PrintAndLog(" ICR IC Revision : %d",icr );
|
||||
PrintAndLog(" Manufactured");
|
||||
PrintAndLog(" Year/Quarter : %d/%d",2000+year, quarter );
|
||||
PrintAndLog(" Number : %d", num );
|
||||
PrintAndLog(" Wafer number : %d", wafer);
|
||||
PrintAndLog(" Die Number : %d", dw);
|
||||
PrintAndLog("-------------------------------------------------------------");
|
||||
PrintAndLog(" Raw Data");
|
||||
PrintAndLog(" Block 0 : %08X", bl0);
|
||||
PrintAndLog(" Block 1 : %08X", bl1);
|
||||
PrintAndLog("-------------------------------------------------------------");
|
||||
/*
|
||||
TRACE - BLOCK O
|
||||
Bits Definition HEX
|
||||
1-8 ACL Allocation class (ISO/IEC 15963-1) 0xE0
|
||||
9-16 MFC Manufacturer ID (ISO/IEC 7816-6) 0x15 Atmel Corporation
|
||||
17-21 CID 0x1 = Atmel ATA5577M1 0x2 = Atmel ATA5577M2
|
||||
22-24 ICR IC revision
|
||||
25-28 YEAR (BCD encoded) 9 (= 2009)
|
||||
29-30 QUARTER 1,2,3,4
|
||||
31-32 Number
|
||||
|
||||
TRACE - BLOCK 1
|
||||
1-12 Number
|
||||
13-17 Wafer number
|
||||
18-32 DW, die number sequential
|
||||
*/
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int CmdInfo(const char *Cmd){
|
||||
/*
|
||||
Page 0 Block 0 Configuration data.
|
||||
Normal mode
|
||||
Extended mode
|
||||
*/
|
||||
// läs block 0 - data finns i graphbuff
|
||||
CmdReadBlk("0");
|
||||
|
||||
uint8_t bits[1000] = {0x00};
|
||||
uint8_t * bitstream = bits;
|
||||
|
||||
manchester_decode(GraphBuffer, LF_TRACE_BUFF_SIZE, bitstream);
|
||||
|
||||
uint8_t si = 5;
|
||||
uint32_t bl0 = PackBits(si, 32, bitstream);
|
||||
|
||||
uint32_t safer = PackBits(si, 4, bitstream); si += 4;
|
||||
uint32_t resv = PackBits(si, 7, bitstream); si += 7;
|
||||
uint32_t dbr = PackBits(si, 3, bitstream); si += 3;
|
||||
uint32_t extend = PackBits(si, 1, bitstream); si += 1;
|
||||
uint32_t datamodulation = PackBits(si, 5, bitstream); si += 5;
|
||||
uint32_t pskcf = PackBits(si, 2, bitstream); si += 2;
|
||||
uint32_t aor = PackBits(si, 1, bitstream); si += 1;
|
||||
uint32_t otp = PackBits(si, 1, bitstream); si += 1;
|
||||
uint32_t maxblk = PackBits(si, 3, bitstream); si += 3;
|
||||
uint32_t pwd = PackBits(si, 1, bitstream); si += 1;
|
||||
uint32_t sst = PackBits(si, 1, bitstream); si += 1;
|
||||
uint32_t fw = PackBits(si, 1, bitstream); si += 1;
|
||||
uint32_t inv = PackBits(si, 1, bitstream); si += 1;
|
||||
uint32_t por = PackBits(si, 1, bitstream); si += 1;
|
||||
|
||||
PrintAndLog("");
|
||||
PrintAndLog("-- T55xx Configuration --------------------------------------");
|
||||
PrintAndLog("-------------------------------------------------------------");
|
||||
PrintAndLog(" Safer key : %s", GetSaferStr(safer));
|
||||
PrintAndLog(" reserved : %d", resv);
|
||||
PrintAndLog(" Data bit rate : %s", GetBitRateStr(dbr));
|
||||
PrintAndLog(" eXtended mode : %s", (extend) ? "Yes - Warning":"No");
|
||||
PrintAndLog(" Modulation : %s", GetModulationStr(datamodulation) );
|
||||
PrintAndLog(" PSK clock freq : %d", pskcf);
|
||||
PrintAndLog(" AOR - Answer on Request : %s", (aor) ? "Yes":"No");
|
||||
PrintAndLog(" OTP - One Time Pad : %s", (otp) ? "Yes - Warning":"No" );
|
||||
PrintAndLog(" Max block : %d", maxblk);
|
||||
PrintAndLog(" Password mode : %s", (pwd) ? "Yes":"No");
|
||||
PrintAndLog(" Sequence Start Terminator : %s", (sst) ? "Yes":"No");
|
||||
PrintAndLog(" Fast Write : %s", (fw) ? "Yes":"No");
|
||||
PrintAndLog(" Inverse data : %s", (inv) ? "Yes":"No");
|
||||
PrintAndLog(" POR-Delay : %s", (por) ? "Yes":"No");
|
||||
PrintAndLog("-------------------------------------------------------------");
|
||||
PrintAndLog(" Raw Data");
|
||||
PrintAndLog(" Block 0 : 0x%08X", bl0);
|
||||
PrintAndLog("-------------------------------------------------------------");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
char * GetBitRateStr(uint32_t id){
|
||||
static char buf[40];
|
||||
char *retStr = buf;
|
||||
switch (id){
|
||||
case 0:
|
||||
sprintf(retStr,"%d - RF/8",id);
|
||||
break;
|
||||
case 1:
|
||||
sprintf(retStr,"%d - RF/16",id);
|
||||
break;
|
||||
case 2:
|
||||
sprintf(retStr,"%d - RF/32",id);
|
||||
break;
|
||||
case 3:
|
||||
sprintf(retStr,"%d - RF/40",id);
|
||||
break;
|
||||
case 4:
|
||||
sprintf(retStr,"%d - RF/50",id);
|
||||
break;
|
||||
case 5:
|
||||
sprintf(retStr,"%d - RF/64",id);
|
||||
break;
|
||||
case 6:
|
||||
sprintf(retStr,"%d - RF/100",id);
|
||||
break;
|
||||
case 7:
|
||||
sprintf(retStr,"%d - RF/128",id);
|
||||
break;
|
||||
default:
|
||||
sprintf(retStr,"%d - (Unknown)",id);
|
||||
break;
|
||||
}
|
||||
|
||||
return buf;
|
||||
}
|
||||
|
||||
|
||||
char * GetSaferStr(uint32_t id){
|
||||
static char buf[40];
|
||||
char *retStr = buf;
|
||||
|
||||
sprintf(retStr,"%d",id);
|
||||
if (id == 6) {
|
||||
sprintf(retStr,"%d - pasdwd",id);
|
||||
}
|
||||
if (id == 9 ){
|
||||
sprintf(retStr,"%d - testmode ",id);
|
||||
}
|
||||
|
||||
return buf;
|
||||
}
|
||||
char * GetModulationStr( uint32_t id){
|
||||
static char buf[40];
|
||||
char *retStr = buf;
|
||||
|
||||
switch (id){
|
||||
case 0:
|
||||
sprintf(retStr,"%d - direct",id);
|
||||
break;
|
||||
case 1:
|
||||
sprintf(retStr,"%d - PSK 1 phase change when input changes",id);
|
||||
break;
|
||||
case 2:
|
||||
sprintf(retStr,"%d - PSK 2 phase change on bitclk if input high",id);
|
||||
break;
|
||||
case 3:
|
||||
sprintf(retStr,"%d - PSK 3 phase change on rising edge of input",id);
|
||||
break;
|
||||
case 4:
|
||||
sprintf(retStr,"%d - FSK 1 RF/8 RF/5",id);
|
||||
break;
|
||||
case 5:
|
||||
sprintf(retStr,"%d - FSK 2 RF/8 RF/10",id);
|
||||
break;
|
||||
case 6:
|
||||
sprintf(retStr,"%d - FSK 1a RF/5 RF/8",id);
|
||||
break;
|
||||
case 7:
|
||||
sprintf(retStr,"%d - FSK 2a RF/10 RF/8",id);
|
||||
break;
|
||||
case 8:
|
||||
sprintf(retStr,"%d - Manschester",id);
|
||||
break;
|
||||
case 16:
|
||||
sprintf(retStr,"%d - Biphase",id);
|
||||
break;
|
||||
case 17:
|
||||
sprintf(retStr,"%d - Reserved",id);
|
||||
break;
|
||||
default:
|
||||
sprintf(retStr,"0x%02X (Unknown)",id);
|
||||
break;
|
||||
}
|
||||
return buf;
|
||||
}
|
||||
|
||||
|
||||
uint32_t PackBits(uint8_t start, uint8_t len, uint8_t* bits){
|
||||
|
||||
int i = start;
|
||||
int j = len-1;
|
||||
uint32_t tmp = 0;
|
||||
for (; j >= 0; --j, ++i){
|
||||
tmp |= bits[i] << j;
|
||||
}
|
||||
return tmp;
|
||||
}
|
||||
|
||||
static command_t CommandTable[] =
|
||||
{
|
||||
{"help", CmdHelp, 1, "This help"},
|
||||
@@ -218,6 +415,7 @@ static command_t CommandTable[] =
|
||||
{"wr", CmdWriteBlk, 0, "<Data> <Block> -- Write T55xx block data (page 0)"},
|
||||
{"wrPWD", CmdWriteBlkPWD, 0, "<Data> <Block> <Password> -- Write T55xx block data in password mode(page 0)"},
|
||||
{"trace", CmdReadTrace, 0, "Read T55xx traceability data (page 1)"},
|
||||
{"info", CmdInfo, 0, "Read T55xx configuration data (page 0 / block 0"},
|
||||
{NULL, NULL, 0, NULL}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user