]> git.zerfleddert.de Git - proxmark3-svn/blame - armsrc/iso15693.c
Merge branch 'master' into fix_iso15693_fpga
[proxmark3-svn] / armsrc / iso15693.c
CommitLineData
15c4dc5a 1//-----------------------------------------------------------------------------
bd20f8f4 2// Jonathan Westhues, split Nov 2006
3// Modified by Greg Jones, Jan 2009
e6304bca 4// Modified by Adrian Dabrowski "atrox", Mar-Sept 2010,Oct 2011
a66f26da 5// Modified by piwi, Oct 2018
bd20f8f4 6//
7// This code is licensed to you under the terms of the GNU GPL, version 2 or,
8// at your option, any later version. See the LICENSE.txt file for the text of
9// the license.
10//-----------------------------------------------------------------------------
15c4dc5a 11// Routines to support ISO 15693. This includes both the reader software and
8c6cca0b 12// the `fake tag' modes.
15c4dc5a 13//-----------------------------------------------------------------------------
8c6cca0b 14
15// The ISO 15693 describes two transmission modes from reader to tag, and four
16// transmission modes from tag to reader. As of Oct 2018 this code supports
17// both reader modes and the high speed variant with one subcarrier from card to reader.
18// As long as the card fully support ISO 15693 this is no problem, since the
a66f26da 19// reader chooses both data rates, but some non-standard tags do not.
8c6cca0b 20// For card simulation, the code supports both high and low speed modes with one subcarrier.
9455b51c 21//
22// VCD (reader) -> VICC (tag)
23// 1 out of 256:
a66f26da 24// data rate: 1,66 kbit/s (fc/8192)
25// used for long range
9455b51c 26// 1 out of 4:
a66f26da 27// data rate: 26,48 kbit/s (fc/512)
28// used for short range, high speed
8c6cca0b 29//
9455b51c 30// VICC (tag) -> VCD (reader)
31// Modulation:
a66f26da 32// ASK / one subcarrier (423,75 khz)
33// FSK / two subcarriers (423,75 khz && 484,28 khz)
9455b51c 34// Data Rates / Modes:
a66f26da 35// low ASK: 6,62 kbit/s
36// low FSK: 6.67 kbit/s
37// high ASK: 26,48 kbit/s
38// high FSK: 26,69 kbit/s
9455b51c 39//-----------------------------------------------------------------------------
9455b51c 40
41
42// Random Remarks:
43// *) UID is always used "transmission order" (LSB), which is reverse to display order
44
45// TODO / BUGS / ISSUES:
8c6cca0b 46// *) signal decoding is unable to detect collisions.
47// *) add anti-collision support for inventory-commands
e6304bca 48// *) read security status of a block
8c6cca0b 49// *) sniffing and simulation do not support two subcarrier modes.
d9de20fa 50// *) remove or refactor code under "deprecated"
9455b51c 51// *) document all the functions
52
d9de20fa 53#include "iso15693.h"
bd20f8f4 54
e30c654b 55#include "proxmark3.h"
f7e3ed82 56#include "util.h"
15c4dc5a 57#include "apps.h"
9ab7a6c7 58#include "string.h"
9455b51c 59#include "iso15693tools.h"
8c6cca0b 60#include "protocols.h"
867e10a5 61#include "usb_cdc.h"
d9de20fa 62#include "BigBuf.h"
fc52fbd4 63#include "fpgaloader.h"
15c4dc5a 64
15c4dc5a 65#define arraylen(x) (sizeof(x)/sizeof((x)[0]))
66
c41dd5f9 67// Delays in SSP_CLK ticks.
68// SSP_CLK runs at 13,56MHz / 32 = 423.75kHz when simulating a tag
69#define DELAY_READER_TO_ARM 8
70#define DELAY_ARM_TO_READER 0
71//SSP_CLK runs at 13.56MHz / 4 = 3,39MHz when acting as reader. All values should be multiples of 16
c41dd5f9 72#define DELAY_ARM_TO_TAG 16
1ce68968 73#define DELAY_TAG_TO_ARM 32
74//SSP_CLK runs at 13.56MHz / 4 = 3,39MHz when snooping. All values should be multiples of 16
75#define DELAY_TAG_TO_ARM_SNOOP 32
76#define DELAY_READER_TO_ARM_SNOOP 32
c41dd5f9 77
1f4789fe 78// times in samples @ 212kHz when acting as reader
79//#define ISO15693_READER_TIMEOUT 80 // 80/212kHz = 378us, nominal t1_max=313,9us
80#define ISO15693_READER_TIMEOUT 330 // 330/212kHz = 1558us, should be even enough for iClass tags responding to ACTALL
81#define ISO15693_READER_TIMEOUT_WRITE 4700 // 4700/212kHz = 22ms, nominal 20ms
82
83
70b2fc0a 84static int DEBUG = 0;
85
c41dd5f9 86
9455b51c 87///////////////////////////////////////////////////////////////////////
88// ISO 15693 Part 2 - Air Interface
3d2c9c9b 89// This section basically contains transmission and receiving of bits
9455b51c 90///////////////////////////////////////////////////////////////////////
91
8c6cca0b 92// buffers
cd028159 93#define ISO15693_DMA_BUFFER_SIZE 256 // must be a power of 2
d9de20fa 94#define ISO15693_MAX_RESPONSE_LENGTH 36 // allows read single block with the maximum block size of 256bits. Read multiple blocks not supported yet
95#define ISO15693_MAX_COMMAND_LENGTH 45 // allows write single block with the maximum block size of 256bits. Write multiple blocks not supported yet
8c6cca0b 96
be09ea86 97
98// specific LogTrace function for ISO15693: the duration needs to be scaled because otherwise it won't fit into a uint16_t
99bool LogTrace_ISO15693(const uint8_t *btBytes, uint16_t iLen, uint32_t timestamp_start, uint32_t timestamp_end, uint8_t *parity, bool readerToTag) {
100 uint32_t duration = timestamp_end - timestamp_start;
101 duration /= 32;
102 timestamp_end = timestamp_start + duration;
103 return LogTrace(btBytes, iLen, timestamp_start, timestamp_end, parity, readerToTag);
104}
105
106
9455b51c 107// ---------------------------
8c6cca0b 108// Signal Processing
9455b51c 109// ---------------------------
110
111// prepare data using "1 out of 4" code for later transmission
8c6cca0b 112// resulting data rate is 26.48 kbit/s (fc/512)
9455b51c 113// cmd ... data
114// n ... length of data
c41dd5f9 115void CodeIso15693AsReader(uint8_t *cmd, int n) {
15c4dc5a 116
117 ToSendReset();
118
9455b51c 119 // SOF for 1of4
c41dd5f9 120 ToSend[++ToSendMax] = 0x84; //10000100
121
122 // data
123 for (int i = 0; i < n; i++) {
124 for (int j = 0; j < 8; j += 2) {
125 int these = (cmd[i] >> j) & 0x03;
15c4dc5a 126 switch(these) {
127 case 0:
c41dd5f9 128 ToSend[++ToSendMax] = 0x40; //01000000
15c4dc5a 129 break;
130 case 1:
c41dd5f9 131 ToSend[++ToSendMax] = 0x10; //00010000
15c4dc5a 132 break;
133 case 2:
c41dd5f9 134 ToSend[++ToSendMax] = 0x04; //00000100
15c4dc5a 135 break;
136 case 3:
c41dd5f9 137 ToSend[++ToSendMax] = 0x01; //00000001
15c4dc5a 138 break;
139 }
140 }
141 }
a66f26da 142
c41dd5f9 143 // EOF
144 ToSend[++ToSendMax] = 0x20; //0010 + 0000 padding
ece38ef3 145
bdf96aae 146 ToSendMax++;
15c4dc5a 147}
148
1f4789fe 149
150// Encode EOF only
151static void CodeIso15693AsReaderEOF() {
152 ToSendReset();
153 ToSend[++ToSendMax] = 0x20;
154 ToSendMax++;
155}
156
157
70b2fc0a 158// encode data using "1 out of 256" scheme
8c6cca0b 159// data rate is 1,66 kbit/s (fc/8192)
9455b51c 160// is designed for more robust communication over longer distances
161static void CodeIso15693AsReader256(uint8_t *cmd, int n)
15c4dc5a 162{
9455b51c 163 ToSendReset();
164
9455b51c 165 // SOF for 1of256
c41dd5f9 166 ToSend[++ToSendMax] = 0x81; //10000001
167
168 // data
169 for(int i = 0; i < n; i++) {
170 for (int j = 0; j <= 255; j++) {
171 if (cmd[i] == j) {
9455b51c 172 ToSendStuffBit(0);
9455b51c 173 ToSendStuffBit(1);
c41dd5f9 174 } else {
175 ToSendStuffBit(0);
176 ToSendStuffBit(0);
8c6cca0b 177 }
178 }
15c4dc5a 179 }
c41dd5f9 180
9455b51c 181 // EOF
c41dd5f9 182 ToSend[++ToSendMax] = 0x20; //0010 + 0000 padding
8c6cca0b 183
184 ToSendMax++;
185}
186
187
3d2c9c9b 188// static uint8_t encode4Bits(const uint8_t b) {
189 // uint8_t c = b & 0xF;
190 // // OTA, the least significant bits first
191 // // The columns are
192 // // 1 - Bit value to send
193 // // 2 - Reversed (big-endian)
194 // // 3 - Manchester Encoded
195 // // 4 - Hex values
196
197 // switch(c){
198 // // 1 2 3 4
199 // case 15: return 0x55; // 1111 -> 1111 -> 01010101 -> 0x55
200 // case 14: return 0x95; // 1110 -> 0111 -> 10010101 -> 0x95
201 // case 13: return 0x65; // 1101 -> 1011 -> 01100101 -> 0x65
202 // case 12: return 0xa5; // 1100 -> 0011 -> 10100101 -> 0xa5
203 // case 11: return 0x59; // 1011 -> 1101 -> 01011001 -> 0x59
204 // case 10: return 0x99; // 1010 -> 0101 -> 10011001 -> 0x99
205 // case 9: return 0x69; // 1001 -> 1001 -> 01101001 -> 0x69
206 // case 8: return 0xa9; // 1000 -> 0001 -> 10101001 -> 0xa9
207 // case 7: return 0x56; // 0111 -> 1110 -> 01010110 -> 0x56
208 // case 6: return 0x96; // 0110 -> 0110 -> 10010110 -> 0x96
209 // case 5: return 0x66; // 0101 -> 1010 -> 01100110 -> 0x66
210 // case 4: return 0xa6; // 0100 -> 0010 -> 10100110 -> 0xa6
211 // case 3: return 0x5a; // 0011 -> 1100 -> 01011010 -> 0x5a
212 // case 2: return 0x9a; // 0010 -> 0100 -> 10011010 -> 0x9a
213 // case 1: return 0x6a; // 0001 -> 1000 -> 01101010 -> 0x6a
214 // default: return 0xaa; // 0000 -> 0000 -> 10101010 -> 0xaa
215
216 // }
217// }
218
8efd0b80 219static const uint8_t encode_4bits[16] = { 0xaa, 0x6a, 0x9a, 0x5a, 0xa6, 0x66, 0x96, 0x56, 0xa9, 0x69, 0x99, 0x59, 0xa5, 0x65, 0x95, 0x55 };
220
3d2c9c9b 221void CodeIso15693AsTag(uint8_t *cmd, size_t len) {
222 /*
223 * SOF comprises 3 parts;
224 * * An unmodulated time of 56.64 us
225 * * 24 pulses of 423.75 kHz (fc/32)
226 * * A logic 1, which starts with an unmodulated time of 18.88us
227 * followed by 8 pulses of 423.75kHz (fc/32)
228 *
229 * EOF comprises 3 parts:
230 * - A logic 0 (which starts with 8 pulses of fc/32 followed by an unmodulated
231 * time of 18.88us.
232 * - 24 pulses of fc/32
233 * - An unmodulated time of 56.64 us
234 *
235 * A logic 0 starts with 8 pulses of fc/32
236 * followed by an unmodulated time of 256/fc (~18,88us).
237 *
238 * A logic 0 starts with unmodulated time of 256/fc (~18,88us) followed by
239 * 8 pulses of fc/32 (also 18.88us)
240 *
241 * A bit here becomes 8 pulses of fc/32. Therefore:
242 * The SOF can be written as 00011101 = 0x1D
243 * The EOF can be written as 10111000 = 0xb8
244 * A logic 1 is 01
245 * A logic 0 is 10
246 *
247 * */
248
8c6cca0b 249 ToSendReset();
250
251 // SOF
3d2c9c9b 252 ToSend[++ToSendMax] = 0x1D; // 00011101
8c6cca0b 253
254 // data
8efd0b80 255 for (int i = 0; i < len; i++) {
256 ToSend[++ToSendMax] = encode_4bits[cmd[i] & 0xF];
257 ToSend[++ToSendMax] = encode_4bits[cmd[i] >> 4];
8c6cca0b 258 }
259
260 // EOF
3d2c9c9b 261 ToSend[++ToSendMax] = 0xB8; // 10111000
8c6cca0b 262
263 ToSendMax++;
15c4dc5a 264}
265
9455b51c 266
70b2fc0a 267// Transmit the command (to the tag) that was placed in cmd[].
c41dd5f9 268void TransmitTo15693Tag(const uint8_t *cmd, int len, uint32_t *start_time) {
269
5ea2a248 270 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER | FPGA_HF_READER_MODE_SEND_FULL_MOD);
ece38ef3 271
272 if (*start_time < DELAY_ARM_TO_TAG) {
273 *start_time = DELAY_ARM_TO_TAG;
274 }
275
c41dd5f9 276 *start_time = (*start_time - DELAY_ARM_TO_TAG) & 0xfffffff0;
277
496bb4be 278 if (GetCountSspClk() > *start_time) { // we may miss the intended time
279 *start_time = (GetCountSspClk() + 16) & 0xfffffff0; // next possible time
c41dd5f9 280 }
15c4dc5a 281
c41dd5f9 282 while (GetCountSspClk() < *start_time)
283 /* wait */ ;
d9de20fa 284
70b2fc0a 285 LED_B_ON();
c41dd5f9 286 for (int c = 0; c < len; c++) {
5ea2a248 287 uint8_t data = cmd[c];
288 for (int i = 0; i < 8; i++) {
c41dd5f9 289 uint16_t send_word = (data & 0x80) ? 0xffff : 0x0000;
5ea2a248 290 while (!(AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_TXRDY))) ;
291 AT91C_BASE_SSC->SSC_THR = send_word;
292 while (!(AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_TXRDY))) ;
293 AT91C_BASE_SSC->SSC_THR = send_word;
294 data <<= 1;
295 }
296 WDT_HIT();
297 }
70b2fc0a 298 LED_B_OFF();
ece38ef3 299
c41dd5f9 300 *start_time = *start_time + DELAY_ARM_TO_TAG;
15c4dc5a 301}
302
5ea2a248 303
15c4dc5a 304//-----------------------------------------------------------------------------
8c6cca0b 305// Transmit the tag response (to the reader) that was placed in cmd[].
15c4dc5a 306//-----------------------------------------------------------------------------
8efd0b80 307void TransmitTo15693Reader(const uint8_t *cmd, size_t len, uint32_t *start_time, uint32_t slot_time, bool slow) {
8c6cca0b 308 // don't use the FPGA_HF_SIMULATOR_MODULATE_424K_8BIT minor mode. It would spoil GetCountSspClk()
70b2fc0a 309 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_SIMULATOR | FPGA_HF_SIMULATOR_MODULATE_424K);
15c4dc5a 310
c41dd5f9 311 uint32_t modulation_start_time = *start_time - DELAY_ARM_TO_READER + 3 * 8; // no need to transfer the unmodulated start of SOF
ece38ef3 312
8efd0b80 313 while (GetCountSspClk() > (modulation_start_time & 0xfffffff8) + 3) { // we will miss the intended time
314 if (slot_time) {
315 modulation_start_time += slot_time; // use next available slot
316 } else {
317 modulation_start_time = (modulation_start_time & 0xfffffff8) + 8; // next possible time
318 }
319 }
320
ece38ef3 321 while (GetCountSspClk() < (modulation_start_time & 0xfffffff8))
8efd0b80 322 /* wait */ ;
8c6cca0b 323
8efd0b80 324 uint8_t shift_delay = modulation_start_time & 0x00000007;
325
c41dd5f9 326 *start_time = modulation_start_time + DELAY_ARM_TO_READER - 3 * 8;
d9de20fa 327
70b2fc0a 328 LED_C_ON();
8c6cca0b 329 uint8_t bits_to_shift = 0x00;
3d2c9c9b 330 uint8_t bits_to_send = 0x00;
8efd0b80 331 for (size_t c = 0; c < len; c++) {
332 for (int i = (c==0?4:7); i >= 0; i--) {
3d2c9c9b 333 uint8_t cmd_bits = ((cmd[c] >> i) & 0x01) ? 0xff : 0x00;
8c6cca0b 334 for (int j = 0; j < (slow?4:1); ) {
335 if (AT91C_BASE_SSC->SSC_SR & AT91C_SSC_TXRDY) {
a66f26da 336 bits_to_send = bits_to_shift << (8 - shift_delay) | cmd_bits >> shift_delay;
3d2c9c9b 337 AT91C_BASE_SSC->SSC_THR = bits_to_send;
a66f26da 338 bits_to_shift = cmd_bits;
8c6cca0b 339 j++;
340 }
8c6cca0b 341 }
a66f26da 342 }
3d2c9c9b 343 WDT_HIT();
a66f26da 344 }
3d2c9c9b 345 // send the remaining bits, padded with 0:
346 bits_to_send = bits_to_shift << (8 - shift_delay);
347 for ( ; ; ) {
348 if (AT91C_BASE_SSC->SSC_SR & AT91C_SSC_TXRDY) {
349 AT91C_BASE_SSC->SSC_THR = bits_to_send;
350 break;
351 }
352 }
70b2fc0a 353 LED_C_OFF();
15c4dc5a 354}
355
9455b51c 356
70b2fc0a 357//=============================================================================
8c6cca0b 358// An ISO 15693 decoder for tag responses (one subcarrier only).
d9de20fa 359// Uses cross correlation to identify each bit and EOF.
70b2fc0a 360// This function is called 8 times per bit (every 2 subcarrier cycles).
8c6cca0b 361// Subcarrier frequency fs is 424kHz, 1/fs = 2,36us,
70b2fc0a 362// i.e. function is called every 4,72us
363// LED handling:
364// LED C -> ON once we have received the SOF and are expecting the rest.
365// LED C -> OFF once we have received EOF or are unsynced
366//
367// Returns: true if we received a EOF
368// false if we are still waiting for some more
369//=============================================================================
370
c41dd5f9 371#define NOISE_THRESHOLD 160 // don't try to correlate noise
372#define MAX_PREVIOUS_AMPLITUDE (-1 - NOISE_THRESHOLD)
70b2fc0a 373
8c6cca0b 374typedef struct DecodeTag {
70b2fc0a 375 enum {
d9de20fa 376 STATE_TAG_SOF_LOW,
c41dd5f9 377 STATE_TAG_SOF_RISING_EDGE,
d9de20fa 378 STATE_TAG_SOF_HIGH,
379 STATE_TAG_SOF_HIGH_END,
8c6cca0b 380 STATE_TAG_RECEIVING_DATA,
c41dd5f9 381 STATE_TAG_EOF,
382 STATE_TAG_EOF_TAIL
70b2fc0a 383 } state;
384 int bitCount;
385 int posCount;
386 enum {
387 LOGIC0,
388 LOGIC1,
389 SOF_PART1,
390 SOF_PART2
391 } lastBit;
392 uint16_t shiftReg;
d9de20fa 393 uint16_t max_len;
70b2fc0a 394 uint8_t *output;
395 int len;
396 int sum1, sum2;
c41dd5f9 397 int threshold_sof;
398 int threshold_half;
399 uint16_t previous_amplitude;
8c6cca0b 400} DecodeTag_t;
70b2fc0a 401
d9de20fa 402
cd028159 403static int inline __attribute__((always_inline)) Handle15693SamplesFromTag(uint16_t amplitude, DecodeTag_t *DecodeTag) {
be09ea86 404 switch (DecodeTag->state) {
a66f26da 405 case STATE_TAG_SOF_LOW:
c41dd5f9 406 // waiting for a rising edge
407 if (amplitude > NOISE_THRESHOLD + DecodeTag->previous_amplitude) {
d9de20fa 408 if (DecodeTag->posCount > 10) {
1ce68968 409 DecodeTag->threshold_sof = amplitude - DecodeTag->previous_amplitude; // to be divided by 2
c41dd5f9 410 DecodeTag->threshold_half = 0;
411 DecodeTag->state = STATE_TAG_SOF_RISING_EDGE;
d9de20fa 412 } else {
413 DecodeTag->posCount = 0;
414 }
c41dd5f9 415 } else {
416 DecodeTag->posCount++;
417 DecodeTag->previous_amplitude = amplitude;
15c4dc5a 418 }
d9de20fa 419 break;
a66f26da 420
c41dd5f9 421 case STATE_TAG_SOF_RISING_EDGE:
1ce68968 422 if (amplitude > DecodeTag->threshold_sof + DecodeTag->previous_amplitude) { // edge still rising
423 if (amplitude > DecodeTag->threshold_sof + DecodeTag->threshold_sof) { // steeper edge, take this as time reference
c41dd5f9 424 DecodeTag->posCount = 1;
425 } else {
426 DecodeTag->posCount = 2;
427 }
428 DecodeTag->threshold_sof = (amplitude - DecodeTag->previous_amplitude) / 2;
429 } else {
430 DecodeTag->posCount = 2;
431 DecodeTag->threshold_sof = DecodeTag->threshold_sof/2;
432 }
433 // DecodeTag->posCount = 2;
434 DecodeTag->state = STATE_TAG_SOF_HIGH;
435 break;
ece38ef3 436
d9de20fa 437 case STATE_TAG_SOF_HIGH:
438 // waiting for 10 times high. Take average over the last 8
c41dd5f9 439 if (amplitude > DecodeTag->threshold_sof) {
d9de20fa 440 DecodeTag->posCount++;
441 if (DecodeTag->posCount > 2) {
c41dd5f9 442 DecodeTag->threshold_half += amplitude; // keep track of average high value
d9de20fa 443 }
444 if (DecodeTag->posCount == 10) {
c41dd5f9 445 DecodeTag->threshold_half >>= 2; // (4 times 1/2 average)
d9de20fa 446 DecodeTag->state = STATE_TAG_SOF_HIGH_END;
447 }
448 } else { // high phase was too short
449 DecodeTag->posCount = 1;
ece38ef3 450 DecodeTag->previous_amplitude = amplitude;
d9de20fa 451 DecodeTag->state = STATE_TAG_SOF_LOW;
70b2fc0a 452 }
70b2fc0a 453 break;
454
d9de20fa 455 case STATE_TAG_SOF_HIGH_END:
c41dd5f9 456 // check for falling edge
457 if (DecodeTag->posCount == 13 && amplitude < DecodeTag->threshold_sof) {
d9de20fa 458 DecodeTag->lastBit = SOF_PART1; // detected 1st part of SOF (12 samples low and 12 samples high)
459 DecodeTag->shiftReg = 0;
460 DecodeTag->bitCount = 0;
461 DecodeTag->len = 0;
462 DecodeTag->sum1 = amplitude;
8c6cca0b 463 DecodeTag->sum2 = 0;
464 DecodeTag->posCount = 2;
465 DecodeTag->state = STATE_TAG_RECEIVING_DATA;
1ce68968 466 // FpgaDisableTracing(); // DEBUGGING
496bb4be 467 // Dbprintf("amplitude = %d, threshold_sof = %d, threshold_half/4 = %d, previous_amplitude = %d",
468 // amplitude,
469 // DecodeTag->threshold_sof,
470 // DecodeTag->threshold_half/4,
471 // DecodeTag->previous_amplitude); // DEBUGGING
70b2fc0a 472 LED_C_ON();
d9de20fa 473 } else {
474 DecodeTag->posCount++;
475 if (DecodeTag->posCount > 13) { // high phase too long
476 DecodeTag->posCount = 0;
ece38ef3 477 DecodeTag->previous_amplitude = amplitude;
d9de20fa 478 DecodeTag->state = STATE_TAG_SOF_LOW;
479 LED_C_OFF();
480 }
70b2fc0a 481 }
70b2fc0a 482 break;
15c4dc5a 483
8c6cca0b 484 case STATE_TAG_RECEIVING_DATA:
1ce68968 485 // FpgaDisableTracing(); // DEBUGGING
486 // Dbprintf("amplitude = %d, threshold_sof = %d, threshold_half/4 = %d, previous_amplitude = %d",
487 // amplitude,
488 // DecodeTag->threshold_sof,
489 // DecodeTag->threshold_half/4,
490 // DecodeTag->previous_amplitude); // DEBUGGING
8c6cca0b 491 if (DecodeTag->posCount == 1) {
492 DecodeTag->sum1 = 0;
493 DecodeTag->sum2 = 0;
70b2fc0a 494 }
8c6cca0b 495 if (DecodeTag->posCount <= 4) {
d9de20fa 496 DecodeTag->sum1 += amplitude;
70b2fc0a 497 } else {
d9de20fa 498 DecodeTag->sum2 += amplitude;
70b2fc0a 499 }
8c6cca0b 500 if (DecodeTag->posCount == 8) {
c41dd5f9 501 if (DecodeTag->sum1 > DecodeTag->threshold_half && DecodeTag->sum2 > DecodeTag->threshold_half) { // modulation in both halves
d9de20fa 502 if (DecodeTag->lastBit == LOGIC0) { // this was already part of EOF
503 DecodeTag->state = STATE_TAG_EOF;
504 } else {
505 DecodeTag->posCount = 0;
ece38ef3 506 DecodeTag->previous_amplitude = amplitude;
d9de20fa 507 DecodeTag->state = STATE_TAG_SOF_LOW;
508 LED_C_OFF();
509 }
c41dd5f9 510 } else if (DecodeTag->sum1 < DecodeTag->threshold_half && DecodeTag->sum2 > DecodeTag->threshold_half) { // modulation in second half
70b2fc0a 511 // logic 1
8c6cca0b 512 if (DecodeTag->lastBit == SOF_PART1) { // still part of SOF
d9de20fa 513 DecodeTag->lastBit = SOF_PART2; // SOF completed
70b2fc0a 514 } else {
8c6cca0b 515 DecodeTag->lastBit = LOGIC1;
516 DecodeTag->shiftReg >>= 1;
517 DecodeTag->shiftReg |= 0x80;
518 DecodeTag->bitCount++;
519 if (DecodeTag->bitCount == 8) {
520 DecodeTag->output[DecodeTag->len] = DecodeTag->shiftReg;
521 DecodeTag->len++;
c41dd5f9 522 // if (DecodeTag->shiftReg == 0x12 && DecodeTag->len == 1) FpgaDisableTracing(); // DEBUGGING
d9de20fa 523 if (DecodeTag->len > DecodeTag->max_len) {
524 // buffer overflow, give up
d9de20fa 525 LED_C_OFF();
c41dd5f9 526 return true;
d9de20fa 527 }
8c6cca0b 528 DecodeTag->bitCount = 0;
529 DecodeTag->shiftReg = 0;
70b2fc0a 530 }
531 }
c41dd5f9 532 } else if (DecodeTag->sum1 > DecodeTag->threshold_half && DecodeTag->sum2 < DecodeTag->threshold_half) { // modulation in first half
70b2fc0a 533 // logic 0
8c6cca0b 534 if (DecodeTag->lastBit == SOF_PART1) { // incomplete SOF
d9de20fa 535 DecodeTag->posCount = 0;
ece38ef3 536 DecodeTag->previous_amplitude = amplitude;
d9de20fa 537 DecodeTag->state = STATE_TAG_SOF_LOW;
70b2fc0a 538 LED_C_OFF();
539 } else {
8c6cca0b 540 DecodeTag->lastBit = LOGIC0;
541 DecodeTag->shiftReg >>= 1;
542 DecodeTag->bitCount++;
543 if (DecodeTag->bitCount == 8) {
544 DecodeTag->output[DecodeTag->len] = DecodeTag->shiftReg;
545 DecodeTag->len++;
c41dd5f9 546 // if (DecodeTag->shiftReg == 0x12 && DecodeTag->len == 1) FpgaDisableTracing(); // DEBUGGING
d9de20fa 547 if (DecodeTag->len > DecodeTag->max_len) {
548 // buffer overflow, give up
549 DecodeTag->posCount = 0;
ece38ef3 550 DecodeTag->previous_amplitude = amplitude;
d9de20fa 551 DecodeTag->state = STATE_TAG_SOF_LOW;
552 LED_C_OFF();
553 }
8c6cca0b 554 DecodeTag->bitCount = 0;
555 DecodeTag->shiftReg = 0;
70b2fc0a 556 }
557 }
c41dd5f9 558 } else { // no modulation
559 if (DecodeTag->lastBit == SOF_PART2) { // only SOF (this is OK for iClass)
560 LED_C_OFF();
561 return true;
562 } else {
563 DecodeTag->posCount = 0;
564 DecodeTag->state = STATE_TAG_SOF_LOW;
565 LED_C_OFF();
566 }
70b2fc0a 567 }
8c6cca0b 568 DecodeTag->posCount = 0;
70b2fc0a 569 }
8c6cca0b 570 DecodeTag->posCount++;
70b2fc0a 571 break;
8c6cca0b 572
d9de20fa 573 case STATE_TAG_EOF:
574 if (DecodeTag->posCount == 1) {
575 DecodeTag->sum1 = 0;
576 DecodeTag->sum2 = 0;
577 }
578 if (DecodeTag->posCount <= 4) {
579 DecodeTag->sum1 += amplitude;
70b2fc0a 580 } else {
d9de20fa 581 DecodeTag->sum2 += amplitude;
70b2fc0a 582 }
d9de20fa 583 if (DecodeTag->posCount == 8) {
c41dd5f9 584 if (DecodeTag->sum1 > DecodeTag->threshold_half && DecodeTag->sum2 < DecodeTag->threshold_half) { // modulation in first half
d9de20fa 585 DecodeTag->posCount = 0;
c41dd5f9 586 DecodeTag->state = STATE_TAG_EOF_TAIL;
587 } else {
588 DecodeTag->posCount = 0;
ece38ef3 589 DecodeTag->previous_amplitude = amplitude;
d9de20fa 590 DecodeTag->state = STATE_TAG_SOF_LOW;
591 LED_C_OFF();
c41dd5f9 592 }
593 }
594 DecodeTag->posCount++;
595 break;
596
597 case STATE_TAG_EOF_TAIL:
598 if (DecodeTag->posCount == 1) {
599 DecodeTag->sum1 = 0;
600 DecodeTag->sum2 = 0;
601 }
602 if (DecodeTag->posCount <= 4) {
603 DecodeTag->sum1 += amplitude;
604 } else {
605 DecodeTag->sum2 += amplitude;
606 }
607 if (DecodeTag->posCount == 8) {
608 if (DecodeTag->sum1 < DecodeTag->threshold_half && DecodeTag->sum2 < DecodeTag->threshold_half) { // no modulation in both halves
d9de20fa 609 LED_C_OFF();
610 return true;
c41dd5f9 611 } else {
612 DecodeTag->posCount = 0;
ece38ef3 613 DecodeTag->previous_amplitude = amplitude;
c41dd5f9 614 DecodeTag->state = STATE_TAG_SOF_LOW;
615 LED_C_OFF();
d9de20fa 616 }
617 }
618 DecodeTag->posCount++;
70b2fc0a 619 break;
15c4dc5a 620 }
15c4dc5a 621
70b2fc0a 622 return false;
623}
15c4dc5a 624
15c4dc5a 625
ece38ef3 626static void DecodeTagInit(DecodeTag_t *DecodeTag, uint8_t *data, uint16_t max_len) {
c41dd5f9 627 DecodeTag->previous_amplitude = MAX_PREVIOUS_AMPLITUDE;
d9de20fa 628 DecodeTag->posCount = 0;
629 DecodeTag->state = STATE_TAG_SOF_LOW;
8c6cca0b 630 DecodeTag->output = data;
d9de20fa 631 DecodeTag->max_len = max_len;
632}
633
634
ece38ef3 635static void DecodeTagReset(DecodeTag_t *DecodeTag) {
d9de20fa 636 DecodeTag->posCount = 0;
637 DecodeTag->state = STATE_TAG_SOF_LOW;
c41dd5f9 638 DecodeTag->previous_amplitude = MAX_PREVIOUS_AMPLITUDE;
70b2fc0a 639}
640
d9de20fa 641
70b2fc0a 642/*
8c6cca0b 643 * Receive and decode the tag response, also log to tracebuffer
70b2fc0a 644 */
c41dd5f9 645int GetIso15693AnswerFromTag(uint8_t* response, uint16_t max_len, uint16_t timeout, uint32_t *eof_time) {
646
d9de20fa 647 int samples = 0;
c41dd5f9 648 int ret = 0;
70b2fc0a 649
c41dd5f9 650 uint16_t dmaBuf[ISO15693_DMA_BUFFER_SIZE];
a66f26da 651
8c6cca0b 652 // the Decoder data structure
d9de20fa 653 DecodeTag_t DecodeTag = { 0 };
654 DecodeTagInit(&DecodeTag, response, max_len);
70b2fc0a 655
656 // wait for last transfer to complete
657 while (!(AT91C_BASE_SSC->SSC_SR & AT91C_SSC_TXEMPTY));
658
659 // And put the FPGA in the appropriate mode
5ea2a248 660 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER | FPGA_HF_READER_SUBCARRIER_424_KHZ | FPGA_HF_READER_MODE_RECEIVE_AMPLITUDE);
70b2fc0a 661
662 // Setup and start DMA.
5ea2a248 663 FpgaSetupSsc(FPGA_MAJOR_MODE_HF_READER);
70b2fc0a 664 FpgaSetupSscDma((uint8_t*) dmaBuf, ISO15693_DMA_BUFFER_SIZE);
c41dd5f9 665 uint32_t dma_start_time = 0;
70b2fc0a 666 uint16_t *upTo = dmaBuf;
70b2fc0a 667
668 for(;;) {
d9de20fa 669 uint16_t behindBy = ((uint16_t*)AT91C_BASE_PDC_SSC->PDC_RPR - upTo) & (ISO15693_DMA_BUFFER_SIZE-1);
70b2fc0a 670
d9de20fa 671 if (behindBy == 0) continue;
8c6cca0b 672
c41dd5f9 673 samples++;
674 if (samples == 1) {
ece38ef3 675 // DMA has transferred the very first data
c41dd5f9 676 dma_start_time = GetCountSspClk() & 0xfffffff0;
677 }
ece38ef3 678
d9de20fa 679 uint16_t tagdata = *upTo++;
70b2fc0a 680
70b2fc0a 681 if(upTo >= dmaBuf + ISO15693_DMA_BUFFER_SIZE) { // we have read all of the DMA buffer content.
682 upTo = dmaBuf; // start reading the circular buffer from the beginning
1ce68968 683 if (behindBy > (9*ISO15693_DMA_BUFFER_SIZE/10)) {
d9de20fa 684 Dbprintf("About to blow circular buffer - aborted! behindBy=%d", behindBy);
c41dd5f9 685 ret = -1;
d9de20fa 686 break;
687 }
15c4dc5a 688 }
70b2fc0a 689 if (AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_ENDRX)) { // DMA Counter Register had reached 0, already rotated.
690 AT91C_BASE_PDC_SSC->PDC_RNPR = (uint32_t) dmaBuf; // refresh the DMA Next Buffer and
691 AT91C_BASE_PDC_SSC->PDC_RNCR = ISO15693_DMA_BUFFER_SIZE; // DMA Next Counter registers
15c4dc5a 692 }
d9de20fa 693
d9de20fa 694 if (Handle15693SamplesFromTag(tagdata, &DecodeTag)) {
c41dd5f9 695 *eof_time = dma_start_time + samples*16 - DELAY_TAG_TO_ARM; // end of EOF
696 if (DecodeTag.lastBit == SOF_PART2) {
697 *eof_time -= 8*16; // needed 8 additional samples to confirm single SOF (iCLASS)
698 }
699 if (DecodeTag.len > DecodeTag.max_len) {
700 ret = -2; // buffer overflow
701 }
70b2fc0a 702 break;
703 }
15c4dc5a 704
d9de20fa 705 if (samples > timeout && DecodeTag.state < STATE_TAG_RECEIVING_DATA) {
ece38ef3 706 ret = -1; // timeout
70b2fc0a 707 break;
708 }
8c6cca0b 709
70b2fc0a 710 }
711
712 FpgaDisableSscDma();
a66f26da 713
c41dd5f9 714 if (DEBUG) Dbprintf("samples = %d, ret = %d, Decoder: state = %d, lastBit = %d, len = %d, bitCount = %d, posCount = %d",
715 samples, ret, DecodeTag.state, DecodeTag.lastBit, DecodeTag.len, DecodeTag.bitCount, DecodeTag.posCount);
70b2fc0a 716
c41dd5f9 717 if (ret < 0) {
718 return ret;
70b2fc0a 719 }
720
c41dd5f9 721 uint32_t sof_time = *eof_time
722 - DecodeTag.len * 8 * 8 * 16 // time for byte transfers
723 - 32 * 16 // time for SOF transfer
724 - (DecodeTag.lastBit != SOF_PART2?32*16:0); // time for EOF transfer
ece38ef3 725
c41dd5f9 726 if (DEBUG) Dbprintf("timing: sof_time = %d, eof_time = %d", sof_time, *eof_time);
ece38ef3 727
c41dd5f9 728 LogTrace_ISO15693(DecodeTag.output, DecodeTag.len, sof_time*4, *eof_time*4, NULL, false);
729
8c6cca0b 730 return DecodeTag.len;
15c4dc5a 731}
732
9455b51c 733
8c6cca0b 734//=============================================================================
735// An ISO15693 decoder for reader commands.
736//
737// This function is called 4 times per bit (every 2 subcarrier cycles).
738// Subcarrier frequency fs is 848kHz, 1/fs = 1,18us, i.e. function is called every 2,36us
739// LED handling:
740// LED B -> ON once we have received the SOF and are expecting the rest.
741// LED B -> OFF once we have received EOF or are in error state or unsynced
742//
743// Returns: true if we received a EOF
744// false if we are still waiting for some more
745//=============================================================================
746
747typedef struct DecodeReader {
748 enum {
749 STATE_READER_UNSYNCD,
5b12974a 750 STATE_READER_AWAIT_1ST_FALLING_EDGE_OF_SOF,
8c6cca0b 751 STATE_READER_AWAIT_1ST_RISING_EDGE_OF_SOF,
752 STATE_READER_AWAIT_2ND_FALLING_EDGE_OF_SOF,
753 STATE_READER_AWAIT_2ND_RISING_EDGE_OF_SOF,
754 STATE_READER_AWAIT_END_OF_SOF_1_OUT_OF_4,
755 STATE_READER_RECEIVE_DATA_1_OUT_OF_4,
cd028159 756 STATE_READER_RECEIVE_DATA_1_OUT_OF_256,
757 STATE_READER_RECEIVE_JAMMING
8c6cca0b 758 } state;
759 enum {
760 CODING_1_OUT_OF_4,
761 CODING_1_OUT_OF_256
762 } Coding;
763 uint8_t shiftReg;
764 uint8_t bitCount;
765 int byteCount;
766 int byteCountMax;
767 int posCount;
a66f26da 768 int sum1, sum2;
8c6cca0b 769 uint8_t *output;
be09ea86 770 uint8_t jam_search_len;
771 uint8_t *jam_search_string;
8c6cca0b 772} DecodeReader_t;
773
774
be09ea86 775static void DecodeReaderInit(DecodeReader_t* DecodeReader, uint8_t *data, uint16_t max_len, uint8_t jam_search_len, uint8_t *jam_search_string) {
d9de20fa 776 DecodeReader->output = data;
777 DecodeReader->byteCountMax = max_len;
778 DecodeReader->state = STATE_READER_UNSYNCD;
779 DecodeReader->byteCount = 0;
780 DecodeReader->bitCount = 0;
781 DecodeReader->posCount = 1;
782 DecodeReader->shiftReg = 0;
be09ea86 783 DecodeReader->jam_search_len = jam_search_len;
784 DecodeReader->jam_search_string = jam_search_string;
d9de20fa 785}
786
787
be09ea86 788static void DecodeReaderReset(DecodeReader_t* DecodeReader) {
d9de20fa 789 DecodeReader->state = STATE_READER_UNSYNCD;
790}
791
792
cd028159 793static int inline __attribute__((always_inline)) Handle15693SampleFromReader(bool bit, DecodeReader_t *DecodeReader) {
3d2c9c9b 794 switch (DecodeReader->state) {
8c6cca0b 795 case STATE_READER_UNSYNCD:
5b12974a 796 // wait for unmodulated carrier
797 if (bit) {
798 DecodeReader->state = STATE_READER_AWAIT_1ST_FALLING_EDGE_OF_SOF;
799 }
800 break;
801
802 case STATE_READER_AWAIT_1ST_FALLING_EDGE_OF_SOF:
3d2c9c9b 803 if (!bit) {
8c6cca0b 804 // we went low, so this could be the beginning of a SOF
8c6cca0b 805 DecodeReader->posCount = 1;
d9de20fa 806 DecodeReader->state = STATE_READER_AWAIT_1ST_RISING_EDGE_OF_SOF;
8c6cca0b 807 }
808 break;
15c4dc5a 809
8c6cca0b 810 case STATE_READER_AWAIT_1ST_RISING_EDGE_OF_SOF:
811 DecodeReader->posCount++;
3d2c9c9b 812 if (bit) { // detected rising edge
813 if (DecodeReader->posCount < 4) { // rising edge too early (nominally expected at 5)
5b12974a 814 DecodeReader->state = STATE_READER_AWAIT_1ST_FALLING_EDGE_OF_SOF;
8c6cca0b 815 } else { // SOF
816 DecodeReader->state = STATE_READER_AWAIT_2ND_FALLING_EDGE_OF_SOF;
817 }
818 } else {
3d2c9c9b 819 if (DecodeReader->posCount > 5) { // stayed low for too long
d9de20fa 820 DecodeReaderReset(DecodeReader);
8c6cca0b 821 } else {
822 // do nothing, keep waiting
823 }
824 }
825 break;
826
827 case STATE_READER_AWAIT_2ND_FALLING_EDGE_OF_SOF:
828 DecodeReader->posCount++;
3d2c9c9b 829 if (!bit) { // detected a falling edge
8c6cca0b 830 if (DecodeReader->posCount < 20) { // falling edge too early (nominally expected at 21 earliest)
d9de20fa 831 DecodeReaderReset(DecodeReader);
8c6cca0b 832 } else if (DecodeReader->posCount < 23) { // SOF for 1 out of 4 coding
833 DecodeReader->Coding = CODING_1_OUT_OF_4;
834 DecodeReader->state = STATE_READER_AWAIT_2ND_RISING_EDGE_OF_SOF;
835 } else if (DecodeReader->posCount < 28) { // falling edge too early (nominally expected at 29 latest)
d9de20fa 836 DecodeReaderReset(DecodeReader);
5b12974a 837 } else { // SOF for 1 out of 256 coding
8c6cca0b 838 DecodeReader->Coding = CODING_1_OUT_OF_256;
839 DecodeReader->state = STATE_READER_AWAIT_2ND_RISING_EDGE_OF_SOF;
840 }
841 } else {
3d2c9c9b 842 if (DecodeReader->posCount > 29) { // stayed high for too long
5b12974a 843 DecodeReader->state = STATE_READER_AWAIT_1ST_FALLING_EDGE_OF_SOF;
8c6cca0b 844 } else {
845 // do nothing, keep waiting
846 }
847 }
848 break;
849
850 case STATE_READER_AWAIT_2ND_RISING_EDGE_OF_SOF:
851 DecodeReader->posCount++;
852 if (bit) { // detected rising edge
853 if (DecodeReader->Coding == CODING_1_OUT_OF_256) {
854 if (DecodeReader->posCount < 32) { // rising edge too early (nominally expected at 33)
5b12974a 855 DecodeReader->state = STATE_READER_AWAIT_1ST_FALLING_EDGE_OF_SOF;
8c6cca0b 856 } else {
857 DecodeReader->posCount = 1;
858 DecodeReader->bitCount = 0;
859 DecodeReader->byteCount = 0;
860 DecodeReader->sum1 = 1;
861 DecodeReader->state = STATE_READER_RECEIVE_DATA_1_OUT_OF_256;
862 LED_B_ON();
863 }
864 } else { // CODING_1_OUT_OF_4
865 if (DecodeReader->posCount < 24) { // rising edge too early (nominally expected at 25)
5b12974a 866 DecodeReader->state = STATE_READER_AWAIT_1ST_FALLING_EDGE_OF_SOF;
8c6cca0b 867 } else {
5b12974a 868 DecodeReader->posCount = 1;
8c6cca0b 869 DecodeReader->state = STATE_READER_AWAIT_END_OF_SOF_1_OUT_OF_4;
870 }
871 }
872 } else {
873 if (DecodeReader->Coding == CODING_1_OUT_OF_256) {
874 if (DecodeReader->posCount > 34) { // signal stayed low for too long
5b12974a 875 DecodeReaderReset(DecodeReader);
8c6cca0b 876 } else {
877 // do nothing, keep waiting
878 }
879 } else { // CODING_1_OUT_OF_4
880 if (DecodeReader->posCount > 26) { // signal stayed low for too long
5b12974a 881 DecodeReaderReset(DecodeReader);
8c6cca0b 882 } else {
883 // do nothing, keep waiting
884 }
885 }
886 }
887 break;
888
889 case STATE_READER_AWAIT_END_OF_SOF_1_OUT_OF_4:
890 DecodeReader->posCount++;
891 if (bit) {
5b12974a 892 if (DecodeReader->posCount == 9) {
8c6cca0b 893 DecodeReader->posCount = 1;
894 DecodeReader->bitCount = 0;
895 DecodeReader->byteCount = 0;
896 DecodeReader->sum1 = 1;
897 DecodeReader->state = STATE_READER_RECEIVE_DATA_1_OUT_OF_4;
898 LED_B_ON();
899 } else {
900 // do nothing, keep waiting
901 }
902 } else { // unexpected falling edge
d9de20fa 903 DecodeReaderReset(DecodeReader);
8c6cca0b 904 }
905 break;
906
907 case STATE_READER_RECEIVE_DATA_1_OUT_OF_4:
908 DecodeReader->posCount++;
909 if (DecodeReader->posCount == 1) {
be09ea86 910 DecodeReader->sum1 = bit?1:0;
8c6cca0b 911 } else if (DecodeReader->posCount <= 4) {
be09ea86 912 if (bit) DecodeReader->sum1++;
8c6cca0b 913 } else if (DecodeReader->posCount == 5) {
be09ea86 914 DecodeReader->sum2 = bit?1:0;
8c6cca0b 915 } else {
be09ea86 916 if (bit) DecodeReader->sum2++;
8c6cca0b 917 }
918 if (DecodeReader->posCount == 8) {
919 DecodeReader->posCount = 0;
e49d31c0 920 if (DecodeReader->sum1 <= 1 && DecodeReader->sum2 >= 3) { // EOF
8c6cca0b 921 LED_B_OFF(); // Finished receiving
d9de20fa 922 DecodeReaderReset(DecodeReader);
8c6cca0b 923 if (DecodeReader->byteCount != 0) {
924 return true;
925 }
be09ea86 926 } else if (DecodeReader->sum1 >= 3 && DecodeReader->sum2 <= 1) { // detected a 2bit position
8c6cca0b 927 DecodeReader->shiftReg >>= 2;
928 DecodeReader->shiftReg |= (DecodeReader->bitCount << 6);
929 }
930 if (DecodeReader->bitCount == 15) { // we have a full byte
931 DecodeReader->output[DecodeReader->byteCount++] = DecodeReader->shiftReg;
932 if (DecodeReader->byteCount > DecodeReader->byteCountMax) {
933 // buffer overflow, give up
934 LED_B_OFF();
d9de20fa 935 DecodeReaderReset(DecodeReader);
8c6cca0b 936 }
937 DecodeReader->bitCount = 0;
d9de20fa 938 DecodeReader->shiftReg = 0;
cd028159 939 if (DecodeReader->byteCount == DecodeReader->jam_search_len) {
940 if (!memcmp(DecodeReader->output, DecodeReader->jam_search_string, DecodeReader->jam_search_len)) {
941 LED_D_ON();
942 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER | FPGA_HF_READER_MODE_SEND_JAM);
943 DecodeReader->state = STATE_READER_RECEIVE_JAMMING;
944 }
945 }
8c6cca0b 946 } else {
947 DecodeReader->bitCount++;
948 }
949 }
950 break;
951
952 case STATE_READER_RECEIVE_DATA_1_OUT_OF_256:
953 DecodeReader->posCount++;
954 if (DecodeReader->posCount == 1) {
be09ea86 955 DecodeReader->sum1 = bit?1:0;
8c6cca0b 956 } else if (DecodeReader->posCount <= 4) {
be09ea86 957 if (bit) DecodeReader->sum1++;
8c6cca0b 958 } else if (DecodeReader->posCount == 5) {
be09ea86 959 DecodeReader->sum2 = bit?1:0;
960 } else if (bit) {
961 DecodeReader->sum2++;
8c6cca0b 962 }
963 if (DecodeReader->posCount == 8) {
964 DecodeReader->posCount = 0;
e49d31c0 965 if (DecodeReader->sum1 <= 1 && DecodeReader->sum2 >= 3) { // EOF
8c6cca0b 966 LED_B_OFF(); // Finished receiving
d9de20fa 967 DecodeReaderReset(DecodeReader);
8c6cca0b 968 if (DecodeReader->byteCount != 0) {
969 return true;
970 }
be09ea86 971 } else if (DecodeReader->sum1 >= 3 && DecodeReader->sum2 <= 1) { // detected the bit position
8c6cca0b 972 DecodeReader->shiftReg = DecodeReader->bitCount;
973 }
974 if (DecodeReader->bitCount == 255) { // we have a full byte
975 DecodeReader->output[DecodeReader->byteCount++] = DecodeReader->shiftReg;
976 if (DecodeReader->byteCount > DecodeReader->byteCountMax) {
977 // buffer overflow, give up
978 LED_B_OFF();
d9de20fa 979 DecodeReaderReset(DecodeReader);
8c6cca0b 980 }
cd028159 981 if (DecodeReader->byteCount == DecodeReader->jam_search_len) {
982 if (!memcmp(DecodeReader->output, DecodeReader->jam_search_string, DecodeReader->jam_search_len)) {
983 LED_D_ON();
984 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER | FPGA_HF_READER_MODE_SEND_JAM);
985 DecodeReader->state = STATE_READER_RECEIVE_JAMMING;
986 }
987 }
8c6cca0b 988 }
989 DecodeReader->bitCount++;
990 }
991 break;
992
cd028159 993 case STATE_READER_RECEIVE_JAMMING:
994 DecodeReader->posCount++;
995 if (DecodeReader->Coding == CODING_1_OUT_OF_4) {
996 if (DecodeReader->posCount == 7*16) { // 7 bits jammed
997 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER | FPGA_HF_READER_MODE_SNOOP_AMPLITUDE); // stop jamming
998 // FpgaDisableTracing();
999 LED_D_OFF();
1000 } else if (DecodeReader->posCount == 8*16) {
1001 DecodeReader->posCount = 0;
1002 DecodeReader->output[DecodeReader->byteCount++] = 0x00;
1003 DecodeReader->state = STATE_READER_RECEIVE_DATA_1_OUT_OF_4;
1004 }
1005 } else {
1006 if (DecodeReader->posCount == 7*256) { // 7 bits jammend
1007 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER | FPGA_HF_READER_MODE_SNOOP_AMPLITUDE); // stop jamming
1008 LED_D_OFF();
1009 } else if (DecodeReader->posCount == 8*256) {
1010 DecodeReader->posCount = 0;
1011 DecodeReader->output[DecodeReader->byteCount++] = 0x00;
1012 DecodeReader->state = STATE_READER_RECEIVE_DATA_1_OUT_OF_256;
1013 }
1014 }
1015 break;
1016
8c6cca0b 1017 default:
1018 LED_B_OFF();
d9de20fa 1019 DecodeReaderReset(DecodeReader);
8c6cca0b 1020 break;
15c4dc5a 1021 }
8c6cca0b 1022
1023 return false;
1024}
1025
1026
8c6cca0b 1027//-----------------------------------------------------------------------------
1028// Receive a command (from the reader to us, where we are the simulated tag),
1029// and store it in the given buffer, up to the given maximum length. Keeps
1030// spinning, waiting for a well-framed command, until either we get one
3d2c9c9b 1031// (returns len) or someone presses the pushbutton on the board (returns -1).
8c6cca0b 1032//
1033// Assume that we're called with the SSC (to the FPGA) and ADC path set
1034// correctly.
1035//-----------------------------------------------------------------------------
1036
3d2c9c9b 1037int GetIso15693CommandFromReader(uint8_t *received, size_t max_len, uint32_t *eof_time) {
d9de20fa 1038 int samples = 0;
8c6cca0b 1039 bool gotFrame = false;
1040 uint8_t b;
1041
3d2c9c9b 1042 uint8_t dmaBuf[ISO15693_DMA_BUFFER_SIZE];
8c6cca0b 1043
1044 // the decoder data structure
6eeb5f1c 1045 DecodeReader_t DecodeReader = {0};
be09ea86 1046 DecodeReaderInit(&DecodeReader, received, max_len, 0, NULL);
8c6cca0b 1047
1048 // wait for last transfer to complete
1049 while (!(AT91C_BASE_SSC->SSC_SR & AT91C_SSC_TXEMPTY));
1050
70b2fc0a 1051 LED_D_OFF();
8c6cca0b 1052 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_SIMULATOR | FPGA_HF_SIMULATOR_NO_MODULATION);
15c4dc5a 1053
8c6cca0b 1054 // clear receive register and wait for next transfer
1055 uint32_t temp = AT91C_BASE_SSC->SSC_RHR;
1056 (void) temp;
1057 while (!(AT91C_BASE_SSC->SSC_SR & AT91C_SSC_RXRDY)) ;
15c4dc5a 1058
3d2c9c9b 1059 uint32_t dma_start_time = GetCountSspClk() & 0xfffffff8;
15c4dc5a 1060
8c6cca0b 1061 // Setup and start DMA.
1062 FpgaSetupSscDma(dmaBuf, ISO15693_DMA_BUFFER_SIZE);
1063 uint8_t *upTo = dmaBuf;
15c4dc5a 1064
3d2c9c9b 1065 for (;;) {
d9de20fa 1066 uint16_t behindBy = ((uint8_t*)AT91C_BASE_PDC_SSC->PDC_RPR - upTo) & (ISO15693_DMA_BUFFER_SIZE-1);
70b2fc0a 1067
d9de20fa 1068 if (behindBy == 0) continue;
15c4dc5a 1069
8c6cca0b 1070 b = *upTo++;
3d2c9c9b 1071 if (upTo >= dmaBuf + ISO15693_DMA_BUFFER_SIZE) { // we have read all of the DMA buffer content.
8c6cca0b 1072 upTo = dmaBuf; // start reading the circular buffer from the beginning
3d2c9c9b 1073 if (behindBy > (9*ISO15693_DMA_BUFFER_SIZE/10)) {
d9de20fa 1074 Dbprintf("About to blow circular buffer - aborted! behindBy=%d", behindBy);
1075 break;
1076 }
8c6cca0b 1077 }
1078 if (AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_ENDRX)) { // DMA Counter Register had reached 0, already rotated.
1079 AT91C_BASE_PDC_SSC->PDC_RNPR = (uint32_t) dmaBuf; // refresh the DMA Next Buffer and
1080 AT91C_BASE_PDC_SSC->PDC_RNCR = ISO15693_DMA_BUFFER_SIZE; // DMA Next Counter registers
1081 }
15c4dc5a 1082
8c6cca0b 1083 for (int i = 7; i >= 0; i--) {
1084 if (Handle15693SampleFromReader((b >> i) & 0x01, &DecodeReader)) {
c41dd5f9 1085 *eof_time = dma_start_time + samples - DELAY_READER_TO_ARM; // end of EOF
8c6cca0b 1086 gotFrame = true;
9455b51c 1087 break;
1088 }
8c6cca0b 1089 samples++;
15c4dc5a 1090 }
8c6cca0b 1091
1092 if (gotFrame) {
1093 break;
15c4dc5a 1094 }
8c6cca0b 1095
1096 if (BUTTON_PRESS()) {
3d2c9c9b 1097 DecodeReader.byteCount = -1;
8c6cca0b 1098 break;
15c4dc5a 1099 }
15c4dc5a 1100
8c6cca0b 1101 WDT_HIT();
1102 }
1103
8c6cca0b 1104 FpgaDisableSscDma();
a66f26da 1105
d9de20fa 1106 if (DEBUG) Dbprintf("samples = %d, gotFrame = %d, Decoder: state = %d, len = %d, bitCount = %d, posCount = %d",
a66f26da 1107 samples, gotFrame, DecodeReader.state, DecodeReader.byteCount, DecodeReader.bitCount, DecodeReader.posCount);
8c6cca0b 1108
d9de20fa 1109 if (DecodeReader.byteCount > 0) {
a66f26da 1110 uint32_t sof_time = *eof_time
3d2c9c9b 1111 - DecodeReader.byteCount * (DecodeReader.Coding==CODING_1_OUT_OF_4?128:2048) // time for byte transfers
1112 - 32 // time for SOF transfer
1113 - 16; // time for EOF transfer
c41dd5f9 1114 LogTrace_ISO15693(DecodeReader.output, DecodeReader.byteCount, sof_time*32, *eof_time*32, NULL, true);
8c6cca0b 1115 }
1116
1117 return DecodeReader.byteCount;
15c4dc5a 1118}
1119
9455b51c 1120
1f4789fe 1121// Construct an identify (Inventory) request, which is the first
d9de20fa 1122// thing that you must send to a tag to get a response.
1f4789fe 1123static void BuildIdentifyRequest(uint8_t *cmd) {
d9de20fa 1124 uint16_t crc;
1125 // one sub-carrier, inventory, 1 slot, fast rate
1f4789fe 1126 cmd[0] = ISO15693_REQ_INVENTORY | ISO15693_REQINV_SLOT1 | ISO15693_REQ_DATARATE_HIGH;
d9de20fa 1127 // inventory command code
1128 cmd[1] = 0x01;
1129 // no mask
1130 cmd[2] = 0x00;
1131 //Now the CRC
3d2c9c9b 1132 crc = Iso15693Crc(cmd, 3);
d9de20fa 1133 cmd[3] = crc & 0xff;
1134 cmd[4] = crc >> 8;
d9de20fa 1135}
1136
1137
15c4dc5a 1138//-----------------------------------------------------------------------------
1139// Start to read an ISO 15693 tag. We send an identify request, then wait
1140// for the response. The response is not demodulated, just left in the buffer
1141// so that it can be downloaded to a PC and processed there.
1142//-----------------------------------------------------------------------------
1f4789fe 1143void AcquireRawAdcSamplesIso15693(void) {
70b2fc0a 1144 LED_A_ON();
8c6cca0b 1145
117d9ec2 1146 uint8_t *dest = BigBuf_get_addr();
15c4dc5a 1147
7cc204bf 1148 FpgaDownloadAndGo(FPGA_BITSTREAM_HF);
5ea2a248 1149 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER);
ece38ef3 1150 LED_D_ON();
5ea2a248 1151 FpgaSetupSsc(FPGA_MAJOR_MODE_HF_READER);
15c4dc5a 1152 SetAdcMuxFor(GPIO_MUXSEL_HIPKD);
1153
1f4789fe 1154 uint8_t cmd[5];
1155 BuildIdentifyRequest(cmd);
1156 CodeIso15693AsReader(cmd, sizeof(cmd));
5ea2a248 1157
15c4dc5a 1158 // Give the tags time to energize
15c4dc5a 1159 SpinDelay(100);
1160
1161 // Now send the command
c41dd5f9 1162 uint32_t start_time = 0;
1163 TransmitTo15693Tag(ToSend, ToSendMax, &start_time);
70b2fc0a 1164
1165 // wait for last transfer to complete
5ea2a248 1166 while (!(AT91C_BASE_SSC->SSC_SR & AT91C_SSC_TXEMPTY)) ;
15c4dc5a 1167
5ea2a248 1168 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER | FPGA_HF_READER_SUBCARRIER_424_KHZ | FPGA_HF_READER_MODE_RECEIVE_AMPLITUDE);
15c4dc5a 1169
70b2fc0a 1170 for(int c = 0; c < 4000; ) {
15c4dc5a 1171 if(AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_RXRDY)) {
d9de20fa 1172 uint16_t r = AT91C_BASE_SSC->SSC_RHR;
1173 dest[c++] = r >> 5;
9455b51c 1174 }
1175 }
70b2fc0a 1176
1177 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
1178 LEDsoff();
9455b51c 1179}
1180
1181
be09ea86 1182void SnoopIso15693(uint8_t jam_search_len, uint8_t *jam_search_string) {
1ce68968 1183
1523527f 1184 LED_A_ON();
be09ea86 1185
d9de20fa 1186 FpgaDownloadAndGo(FPGA_BITSTREAM_HF);
8c6cca0b 1187
d9de20fa 1188 clear_trace();
1189 set_tracing(true);
3fe4ff4f 1190
d9de20fa 1191 // The DMA buffer, used to stream samples from the FPGA
1ce68968 1192 uint16_t dmaBuf[ISO15693_DMA_BUFFER_SIZE];
d9de20fa 1193
1194 // Count of samples received so far, so that we can include timing
1195 // information in the trace buffer.
1196 int samples = 0;
1197
1198 DecodeTag_t DecodeTag = {0};
1199 uint8_t response[ISO15693_MAX_RESPONSE_LENGTH];
1200 DecodeTagInit(&DecodeTag, response, sizeof(response));
9455b51c 1201
be09ea86 1202 DecodeReader_t DecodeReader = {0};
d9de20fa 1203 uint8_t cmd[ISO15693_MAX_COMMAND_LENGTH];
be09ea86 1204 DecodeReaderInit(&DecodeReader, cmd, sizeof(cmd), jam_search_len, jam_search_string);
d9de20fa 1205
1206 // Print some debug information about the buffer sizes
1207 if (DEBUG) {
1208 Dbprintf("Snooping buffers initialized:");
1209 Dbprintf(" Trace: %i bytes", BigBuf_max_traceLen());
1210 Dbprintf(" Reader -> tag: %i bytes", ISO15693_MAX_COMMAND_LENGTH);
1211 Dbprintf(" tag -> Reader: %i bytes", ISO15693_MAX_RESPONSE_LENGTH);
1212 Dbprintf(" DMA: %i bytes", ISO15693_DMA_BUFFER_SIZE * sizeof(uint16_t));
1213 }
5ea2a248 1214 Dbprintf("Snoop started. Press PM3 Button to stop.");
a66f26da 1215
5ea2a248 1216 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER | FPGA_HF_READER_MODE_SNOOP_AMPLITUDE);
1ce68968 1217 LED_D_OFF();
9455b51c 1218 SetAdcMuxFor(GPIO_MUXSEL_HIPKD);
5ea2a248 1219 FpgaSetupSsc(FPGA_MAJOR_MODE_HF_READER);
1ce68968 1220 StartCountSspClk();
d9de20fa 1221 FpgaSetupSscDma((uint8_t*) dmaBuf, ISO15693_DMA_BUFFER_SIZE);
be09ea86 1222
d9de20fa 1223 bool TagIsActive = false;
1224 bool ReaderIsActive = false;
1225 bool ExpectTagAnswer = false;
1ce68968 1226 uint32_t dma_start_time = 0;
1227 uint16_t *upTo = dmaBuf;
be09ea86 1228
1229 uint16_t max_behindBy = 0;
1ce68968 1230
d9de20fa 1231 // And now we loop, receiving samples.
1232 for(;;) {
1233 uint16_t behindBy = ((uint16_t*)AT91C_BASE_PDC_SSC->PDC_RPR - upTo) & (ISO15693_DMA_BUFFER_SIZE-1);
be09ea86 1234 if (behindBy > max_behindBy) {
1235 max_behindBy = behindBy;
1236 }
1237
d9de20fa 1238 if (behindBy == 0) continue;
1239
1ce68968 1240 samples++;
1241 if (samples == 1) {
1242 // DMA has transferred the very first data
1243 dma_start_time = GetCountSspClk() & 0xfffffff0;
1244 }
be09ea86 1245
d9de20fa 1246 uint16_t snoopdata = *upTo++;
1247
1ce68968 1248 if (upTo >= dmaBuf + ISO15693_DMA_BUFFER_SIZE) { // we have read all of the DMA buffer content.
d9de20fa 1249 upTo = dmaBuf; // start reading the circular buffer from the beginning
1ce68968 1250 if (behindBy > (9*ISO15693_DMA_BUFFER_SIZE/10)) {
cd028159 1251 // FpgaDisableTracing();
d9de20fa 1252 Dbprintf("About to blow circular buffer - aborted! behindBy=%d, samples=%d", behindBy, samples);
1253 break;
1254 }
1255 if (AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_ENDRX)) { // DMA Counter Register had reached 0, already rotated.
1256 AT91C_BASE_PDC_SSC->PDC_RNPR = (uint32_t) dmaBuf; // refresh the DMA Next Buffer and
1257 AT91C_BASE_PDC_SSC->PDC_RNCR = ISO15693_DMA_BUFFER_SIZE; // DMA Next Counter registers
1258 WDT_HIT();
1ce68968 1259 if (BUTTON_PRESS()) {
d9de20fa 1260 DbpString("Snoop stopped.");
1261 break;
1262 }
1263 }
1264 }
a66f26da 1265
be09ea86 1266 if (!TagIsActive) { // no need to try decoding reader data if the tag is sending
d9de20fa 1267 if (Handle15693SampleFromReader(snoopdata & 0x02, &DecodeReader)) {
1ce68968 1268 // FpgaDisableSscDma();
1269 uint32_t eof_time = dma_start_time + samples*16 + 8 - DELAY_READER_TO_ARM_SNOOP; // end of EOF
1270 if (DecodeReader.byteCount > 0) {
1271 uint32_t sof_time = eof_time
1272 - DecodeReader.byteCount * (DecodeReader.Coding==CODING_1_OUT_OF_4?128*16:2048*16) // time for byte transfers
1273 - 32*16 // time for SOF transfer
1274 - 16*16; // time for EOF transfer
1275 LogTrace_ISO15693(DecodeReader.output, DecodeReader.byteCount, sof_time*4, eof_time*4, NULL, true);
1276 }
d9de20fa 1277 /* And ready to receive another command. */
1278 DecodeReaderReset(&DecodeReader);
1279 /* And also reset the demod code, which might have been */
1280 /* false-triggered by the commands from the reader. */
1281 DecodeTagReset(&DecodeTag);
1ce68968 1282 ReaderIsActive = false;
d9de20fa 1283 ExpectTagAnswer = true;
1ce68968 1284 // upTo = dmaBuf;
1285 // samples = 0;
1286 // FpgaSetupSscDma((uint8_t*) dmaBuf, ISO15693_DMA_BUFFER_SIZE);
1287 // continue;
1288 } else if (Handle15693SampleFromReader(snoopdata & 0x01, &DecodeReader)) {
1289 // FpgaDisableSscDma();
1290 uint32_t eof_time = dma_start_time + samples*16 + 16 - DELAY_READER_TO_ARM_SNOOP; // end of EOF
1291 if (DecodeReader.byteCount > 0) {
1292 uint32_t sof_time = eof_time
1293 - DecodeReader.byteCount * (DecodeReader.Coding==CODING_1_OUT_OF_4?128*16:2048*16) // time for byte transfers
1294 - 32*16 // time for SOF transfer
1295 - 16*16; // time for EOF transfer
1296 LogTrace_ISO15693(DecodeReader.output, DecodeReader.byteCount, sof_time*4, eof_time*4, NULL, true);
1297 }
d9de20fa 1298 /* And ready to receive another command. */
1299 DecodeReaderReset(&DecodeReader);
1300 /* And also reset the demod code, which might have been */
1301 /* false-triggered by the commands from the reader. */
1302 DecodeTagReset(&DecodeTag);
1ce68968 1303 ReaderIsActive = false;
1304 ExpectTagAnswer = true;
1305 // upTo = dmaBuf;
1306 // samples = 0;
1307 // FpgaSetupSscDma((uint8_t*) dmaBuf, ISO15693_DMA_BUFFER_SIZE);
1308 // continue;
1309 } else {
1310 ReaderIsActive = (DecodeReader.state >= STATE_READER_RECEIVE_DATA_1_OUT_OF_4);
d9de20fa 1311 }
9455b51c 1312 }
d9de20fa 1313
a66f26da 1314 if (!ReaderIsActive && ExpectTagAnswer) { // no need to try decoding tag data if the reader is currently sending or no answer expected yet
d9de20fa 1315 if (Handle15693SamplesFromTag(snoopdata >> 2, &DecodeTag)) {
1ce68968 1316 // FpgaDisableSscDma();
1317 uint32_t eof_time = dma_start_time + samples*16 - DELAY_TAG_TO_ARM_SNOOP; // end of EOF
1318 if (DecodeTag.lastBit == SOF_PART2) {
1319 eof_time -= 8*16; // needed 8 additional samples to confirm single SOF (iCLASS)
1320 }
1321 uint32_t sof_time = eof_time
1322 - DecodeTag.len * 8 * 8 * 16 // time for byte transfers
1323 - 32 * 16 // time for SOF transfer
1324 - (DecodeTag.lastBit != SOF_PART2?32*16:0); // time for EOF transfer
1325 LogTrace_ISO15693(DecodeTag.output, DecodeTag.len, sof_time*4, eof_time*4, NULL, false);
d9de20fa 1326 // And ready to receive another response.
1327 DecodeTagReset(&DecodeTag);
1328 DecodeReaderReset(&DecodeReader);
1329 ExpectTagAnswer = false;
1ce68968 1330 TagIsActive = false;
1331 // upTo = dmaBuf;
1332 // samples = 0;
1333 // FpgaSetupSscDma((uint8_t*) dmaBuf, ISO15693_DMA_BUFFER_SIZE);
1334 // continue;
1335 } else {
1336 TagIsActive = (DecodeTag.state >= STATE_TAG_RECEIVING_DATA);
d9de20fa 1337 }
d9de20fa 1338 }
1339
9455b51c 1340 }
70b2fc0a 1341
d9de20fa 1342 FpgaDisableSscDma();
a66f26da 1343
d9de20fa 1344 DbpString("Snoop statistics:");
be09ea86 1345 Dbprintf(" ExpectTagAnswer: %d, TagIsActive: %d, ReaderIsActive: %d", ExpectTagAnswer, TagIsActive, ReaderIsActive);
d9de20fa 1346 Dbprintf(" DecodeTag State: %d", DecodeTag.state);
1347 Dbprintf(" DecodeTag byteCnt: %d", DecodeTag.len);
be09ea86 1348 Dbprintf(" DecodeTag posCount: %d", DecodeTag.posCount);
d9de20fa 1349 Dbprintf(" DecodeReader State: %d", DecodeReader.state);
1350 Dbprintf(" DecodeReader byteCnt: %d", DecodeReader.byteCount);
be09ea86 1351 Dbprintf(" DecodeReader posCount: %d", DecodeReader.posCount);
d9de20fa 1352 Dbprintf(" Trace length: %d", BigBuf_get_traceLen());
be09ea86 1353 Dbprintf(" Max behindBy: %d", max_behindBy);
9455b51c 1354}
1355
1356
8c6cca0b 1357// Initialize the proxmark as iso15k reader
7a537397 1358void Iso15693InitReader(void) {
7cc204bf 1359 FpgaDownloadAndGo(FPGA_BITSTREAM_HF);
9455b51c 1360
7a537397 1361 // switch field off and wait until tag resets
9455b51c 1362 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
7a537397 1363 LED_D_OFF();
e6304bca 1364 SpinDelay(10);
9455b51c 1365
7a537397 1366 // switch field on
1367 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER);
1368 LED_D_ON();
1369
1370 // initialize SSC and select proper AD input
5ea2a248 1371 FpgaSetupSsc(FPGA_MAJOR_MODE_HF_READER);
7a537397 1372 SetAdcMuxFor(GPIO_MUXSEL_HIPKD);
9455b51c 1373
7a537397 1374 // give tags some time to energize
e6304bca 1375 SpinDelay(250);
9455b51c 1376}
1377
1378///////////////////////////////////////////////////////////////////////
1379// ISO 15693 Part 3 - Air Interface
70b2fc0a 1380// This section basically contains transmission and receiving of bits
9455b51c 1381///////////////////////////////////////////////////////////////////////
1382
9455b51c 1383
1384// uid is in transmission order (which is reverse of display order)
1f4789fe 1385static void BuildReadBlockRequest(uint8_t *uid, uint8_t blockNumber, uint8_t *cmd) {
9455b51c 1386 uint16_t crc;
d9de20fa 1387 // If we set the Option_Flag in this request, the VICC will respond with the security status of the block
1388 // followed by the block data
a66f26da 1389 cmd[0] = ISO15693_REQ_OPTION | ISO15693_REQ_ADDRESS | ISO15693_REQ_DATARATE_HIGH;
9455b51c 1390 // READ BLOCK command code
d9de20fa 1391 cmd[1] = ISO15693_READBLOCK;
9455b51c 1392 // UID may be optionally specified here
1393 // 64-bit UID
1394 cmd[2] = uid[0];
1395 cmd[3] = uid[1];
1396 cmd[4] = uid[2];
1397 cmd[5] = uid[3];
1398 cmd[6] = uid[4];
1399 cmd[7] = uid[5];
1400 cmd[8] = uid[6];
1401 cmd[9] = uid[7]; // 0xe0; // always e0 (not exactly unique)
1402 // Block number to read
d9de20fa 1403 cmd[10] = blockNumber;
9455b51c 1404 //Now the CRC
3d2c9c9b 1405 crc = Iso15693Crc(cmd, 11); // the crc needs to be calculated over 11 bytes
9455b51c 1406 cmd[11] = crc & 0xff;
1407 cmd[12] = crc >> 8;
1408
9455b51c 1409}
1410
70b2fc0a 1411
9455b51c 1412// Now the VICC>VCD responses when we are simulating a tag
1f4789fe 1413static void BuildInventoryResponse(uint8_t *uid) {
9455b51c 1414 uint8_t cmd[12];
1415
1416 uint16_t crc;
8c6cca0b 1417
1418 cmd[0] = 0; // No error, no protocol format extension
3fe4ff4f 1419 cmd[1] = 0; // DSFID (data storage format identifier). 0x00 = not supported
9455b51c 1420 // 64-bit UID
3fe4ff4f 1421 cmd[2] = uid[7]; //0x32;
1422 cmd[3] = uid[6]; //0x4b;
1423 cmd[4] = uid[5]; //0x03;
1424 cmd[5] = uid[4]; //0x01;
1425 cmd[6] = uid[3]; //0x00;
1426 cmd[7] = uid[2]; //0x10;
1427 cmd[8] = uid[1]; //0x05;
1428 cmd[9] = uid[0]; //0xe0;
9455b51c 1429 //Now the CRC
3d2c9c9b 1430 crc = Iso15693Crc(cmd, 10);
9455b51c 1431 cmd[10] = crc & 0xff;
1432 cmd[11] = crc >> 8;
1433
8c6cca0b 1434 CodeIso15693AsTag(cmd, sizeof(cmd));
9455b51c 1435}
1436
e6304bca 1437// Universal Method for sending to and recv bytes from a tag
a66f26da 1438// init ... should we initialize the reader?
1439// speed ... 0 low speed, 1 hi speed
1440// *recv will contain the tag's answer
c41dd5f9 1441// return: length of received data, or -1 for timeout
1f4789fe 1442int SendDataTag(uint8_t *send, int sendlen, bool init, bool speed_fast, uint8_t *recv, uint16_t max_recv_len, uint32_t start_time, uint16_t timeout, uint32_t *eof_time) {
9455b51c 1443
c41dd5f9 1444 if (init) {
1445 Iso15693InitReader();
1446 StartCountSspClk();
1447 }
ece38ef3 1448
c41dd5f9 1449 int answerLen = 0;
ece38ef3 1450
1f4789fe 1451 if (speed_fast) {
9455b51c 1452 // high speed (1 out of 4)
1453 CodeIso15693AsReader(send, sendlen);
1f4789fe 1454 } else {
1455 // low speed (1 out of 256)
1456 CodeIso15693AsReader256(send, sendlen);
9455b51c 1457 }
8c6cca0b 1458
c41dd5f9 1459 TransmitTo15693Tag(ToSend, ToSendMax, &start_time);
1f4789fe 1460 uint32_t end_time = start_time + 32*(8*ToSendMax-4); // substract the 4 padding bits after EOF
1461 LogTrace_ISO15693(send, sendlen, start_time*4, end_time*4, NULL, true);
1462
1463 // Now wait for a response
1464 if (recv != NULL) {
1465 answerLen = GetIso15693AnswerFromTag(recv, max_recv_len, timeout, eof_time);
1466 }
1467
1468 return answerLen;
1469}
1470
1471
1472int SendDataTagEOF(uint8_t *recv, uint16_t max_recv_len, uint32_t start_time, uint16_t timeout, uint32_t *eof_time) {
1473
1474 int answerLen = 0;
1475
1476 CodeIso15693AsReaderEOF();
1477
1478 TransmitTo15693Tag(ToSend, ToSendMax, &start_time);
1479 uint32_t end_time = start_time + 32*(8*ToSendMax-4); // substract the 4 padding bits after EOF
1480 LogTrace_ISO15693(NULL, 0, start_time*4, end_time*4, NULL, true);
d9de20fa 1481
9455b51c 1482 // Now wait for a response
d9de20fa 1483 if (recv != NULL) {
1f4789fe 1484 answerLen = GetIso15693AnswerFromTag(recv, max_recv_len, timeout, eof_time);
9455b51c 1485 }
1486
9455b51c 1487 return answerLen;
1488}
15c4dc5a 1489
15c4dc5a 1490
9455b51c 1491// --------------------------------------------------------------------
8c6cca0b 1492// Debug Functions
9455b51c 1493// --------------------------------------------------------------------
15c4dc5a 1494
9455b51c 1495// Decodes a message from a tag and displays its metadata and content
1496#define DBD15STATLEN 48
1497void DbdecodeIso15693Answer(int len, uint8_t *d) {
1498 char status[DBD15STATLEN+1]={0};
1499 uint16_t crc;
1500
d9de20fa 1501 if (len > 3) {
1502 if (d[0] & ISO15693_RES_EXT)
1503 strncat(status,"ProtExt ", DBD15STATLEN);
1504 if (d[0] & ISO15693_RES_ERROR) {
9455b51c 1505 // error
d9de20fa 1506 strncat(status,"Error ", DBD15STATLEN);
9455b51c 1507 switch (d[1]) {
8c6cca0b 1508 case 0x01:
d9de20fa 1509 strncat(status,"01:notSupp", DBD15STATLEN);
15c4dc5a 1510 break;
8c6cca0b 1511 case 0x02:
d9de20fa 1512 strncat(status,"02:notRecog", DBD15STATLEN);
9455b51c 1513 break;
8c6cca0b 1514 case 0x03:
d9de20fa 1515 strncat(status,"03:optNotSupp", DBD15STATLEN);
9455b51c 1516 break;
8c6cca0b 1517 case 0x0f:
d9de20fa 1518 strncat(status,"0f:noInfo", DBD15STATLEN);
9455b51c 1519 break;
8c6cca0b 1520 case 0x10:
d9de20fa 1521 strncat(status,"10:doesn'tExist", DBD15STATLEN);
9455b51c 1522 break;
8c6cca0b 1523 case 0x11:
d9de20fa 1524 strncat(status,"11:lockAgain", DBD15STATLEN);
9455b51c 1525 break;
8c6cca0b 1526 case 0x12:
d9de20fa 1527 strncat(status,"12:locked", DBD15STATLEN);
9455b51c 1528 break;
8c6cca0b 1529 case 0x13:
d9de20fa 1530 strncat(status,"13:progErr", DBD15STATLEN);
9455b51c 1531 break;
8c6cca0b 1532 case 0x14:
d9de20fa 1533 strncat(status,"14:lockErr", DBD15STATLEN);
9455b51c 1534 break;
1535 default:
d9de20fa 1536 strncat(status,"unknownErr", DBD15STATLEN);
15c4dc5a 1537 }
d9de20fa 1538 strncat(status," ", DBD15STATLEN);
9455b51c 1539 } else {
d9de20fa 1540 strncat(status,"NoErr ", DBD15STATLEN);
15c4dc5a 1541 }
8c6cca0b 1542
3d2c9c9b 1543 crc=Iso15693Crc(d,len-2);
8c6cca0b 1544 if ( (( crc & 0xff ) == d[len-2]) && (( crc >> 8 ) == d[len-1]) )
9455b51c 1545 strncat(status,"CrcOK",DBD15STATLEN);
1546 else
8c6cca0b 1547 strncat(status,"CrcFail!",DBD15STATLEN);
9455b51c 1548
1549 Dbprintf("%s",status);
15c4dc5a 1550 }
1551}
1552
9455b51c 1553
1554
1555///////////////////////////////////////////////////////////////////////
1556// Functions called via USB/Client
1557///////////////////////////////////////////////////////////////////////
1558
1559void SetDebugIso15693(uint32_t debug) {
1560 DEBUG=debug;
1561 Dbprintf("Iso15693 Debug is now %s",DEBUG?"on":"off");
1562 return;
1563}
1564
d9de20fa 1565
5ea2a248 1566//---------------------------------------------------------------------------------------
1567// Simulate an ISO15693 reader, perform anti-collision and then attempt to read a sector.
15c4dc5a 1568// all demodulation performed in arm rather than host. - greg
5ea2a248 1569//---------------------------------------------------------------------------------------
ece38ef3 1570void ReaderIso15693(uint32_t parameter) {
1571
15c4dc5a 1572 LED_A_ON();
15c4dc5a 1573
7a537397 1574 Iso15693InitReader();
1575
1576 StartCountSspClk();
d9de20fa 1577 set_tracing(true);
a66f26da 1578
3fe4ff4f 1579 uint8_t TagUID[8] = {0x00};
d9de20fa 1580 uint8_t answer[ISO15693_MAX_RESPONSE_LENGTH];
15c4dc5a 1581
15c4dc5a 1582 // FIRST WE RUN AN INVENTORY TO GET THE TAG UID
1583 // THIS MEANS WE CAN PRE-BUILD REQUESTS TO SAVE CPU TIME
15c4dc5a 1584
1585 // Now send the IDENTIFY command
1f4789fe 1586 uint8_t cmd[5];
1587 BuildIdentifyRequest(cmd);
c41dd5f9 1588 uint32_t start_time = 0;
c41dd5f9 1589 uint32_t eof_time;
1f4789fe 1590 int answerLen = SendDataTag(cmd, sizeof(cmd), true, true, answer, sizeof(answer), start_time, ISO15693_READER_TIMEOUT, &eof_time);
c41dd5f9 1591 start_time = eof_time + DELAY_ISO15693_VICC_TO_VCD_READER;
15c4dc5a 1592
1f4789fe 1593 if (answerLen >= 12) { // we should do a better check than this
d9de20fa 1594 TagUID[0] = answer[2];
1595 TagUID[1] = answer[3];
1596 TagUID[2] = answer[4];
1597 TagUID[3] = answer[5];
1598 TagUID[4] = answer[6];
1599 TagUID[5] = answer[7];
1600 TagUID[6] = answer[8]; // IC Manufacturer code
1601 TagUID[7] = answer[9]; // always E0
15c4dc5a 1602 }
1603
d9de20fa 1604 Dbprintf("%d octets read from IDENTIFY request:", answerLen);
1605 DbdecodeIso15693Answer(answerLen, answer);
1606 Dbhexdump(answerLen, answer, false);
9455b51c 1607
1608 // UID is reverse
d9de20fa 1609 if (answerLen >= 12)
3fe4ff4f 1610 Dbprintf("UID = %02hX%02hX%02hX%02hX%02hX%02hX%02hX%02hX",
1611 TagUID[7],TagUID[6],TagUID[5],TagUID[4],
1612 TagUID[3],TagUID[2],TagUID[1],TagUID[0]);
9455b51c 1613
9455b51c 1614 // read all pages
d9de20fa 1615 if (answerLen >= 12 && DEBUG) {
5ea2a248 1616 for (int i = 0; i < 32; i++) { // sanity check, assume max 32 pages
1f4789fe 1617 uint8_t cmd[13];
1618 BuildReadBlockRequest(TagUID, i, cmd);
1619 answerLen = SendDataTag(cmd, sizeof(cmd), false, true, answer, sizeof(answer), start_time, ISO15693_READER_TIMEOUT, &eof_time);
c41dd5f9 1620 start_time = eof_time + DELAY_ISO15693_VICC_TO_VCD_READER;
d9de20fa 1621 if (answerLen > 0) {
1622 Dbprintf("READ SINGLE BLOCK %d returned %d octets:", i, answerLen);
1623 DbdecodeIso15693Answer(answerLen, answer);
1624 Dbhexdump(answerLen, answer, false);
1625 if ( *((uint32_t*) answer) == 0x07160101 ) break; // exit on NoPageErr
8c6cca0b 1626 }
8c6cca0b 1627 }
9455b51c 1628 }
15c4dc5a 1629
1f4789fe 1630 // for the time being, switch field off to protect RDV4
70b2fc0a 1631 // note: this prevents using hf 15 cmd with s option - which isn't implemented yet anyway
a66f26da 1632 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
15c4dc5a 1633 LED_D_OFF();
8c6cca0b 1634
70b2fc0a 1635 LED_A_OFF();
15c4dc5a 1636}
1637
8c6cca0b 1638
7a537397 1639// Initialize the proxmark as iso15k tag
1640void Iso15693InitTag(void) {
1641 FpgaDownloadAndGo(FPGA_BITSTREAM_HF);
1642 SetAdcMuxFor(GPIO_MUXSEL_HIPKD);
1643 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_SIMULATOR | FPGA_HF_SIMULATOR_NO_MODULATION);
1644 LED_D_OFF();
1645 FpgaSetupSsc(FPGA_MAJOR_MODE_HF_SIMULATOR);
1646 StartCountSspClk();
1647}
1648
1649
8c6cca0b 1650// Simulate an ISO15693 TAG.
1651// For Inventory command: print command and send Inventory Response with given UID
1652// TODO: interpret other reader commands and send appropriate response
ece38ef3 1653void SimTagIso15693(uint32_t parameter, uint8_t *uid) {
1654
15c4dc5a 1655 LED_A_ON();
15c4dc5a 1656
7a537397 1657 Iso15693InitTag();
15c4dc5a 1658
8c6cca0b 1659 // Build a suitable response to the reader INVENTORY command
1660 BuildInventoryResponse(uid);
15c4dc5a 1661
8c6cca0b 1662 // Listen to reader
1663 while (!BUTTON_PRESS()) {
7a537397 1664 uint8_t cmd[ISO15693_MAX_COMMAND_LENGTH];
8c6cca0b 1665 uint32_t eof_time = 0, start_time = 0;
1666 int cmd_len = GetIso15693CommandFromReader(cmd, sizeof(cmd), &eof_time);
1667
1668 if ((cmd_len >= 5) && (cmd[0] & ISO15693_REQ_INVENTORY) && (cmd[1] == ISO15693_INVENTORY)) { // TODO: check more flags
1669 bool slow = !(cmd[0] & ISO15693_REQ_DATARATE_HIGH);
c41dd5f9 1670 start_time = eof_time + DELAY_ISO15693_VCD_TO_VICC_SIM;
8efd0b80 1671 TransmitTo15693Reader(ToSend, ToSendMax, &start_time, 0, slow);
8c6cca0b 1672 }
3fe4ff4f 1673
8c6cca0b 1674 Dbprintf("%d bytes read from reader:", cmd_len);
1675 Dbhexdump(cmd_len, cmd, false);
1676 }
15c4dc5a 1677
a66f26da 1678 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
ece38ef3 1679 LED_D_OFF();
1680 LED_A_OFF();
15c4dc5a 1681}
9455b51c 1682
1683
1684// Since there is no standardized way of reading the AFI out of a tag, we will brute force it
1685// (some manufactures offer a way to read the AFI, though)
1f4789fe 1686void BruteforceIso15693Afi(uint32_t speed) {
70b2fc0a 1687 LED_A_ON();
8c6cca0b 1688
d9de20fa 1689 uint8_t data[6];
1690 uint8_t recv[ISO15693_MAX_RESPONSE_LENGTH];
c41dd5f9 1691 int datalen = 0, recvlen = 0;
1692 uint32_t eof_time;
a66f26da 1693
9455b51c 1694 // first without AFI
8c6cca0b 1695 // Tags should respond without AFI and with AFI=0 even when AFI is active
1696
1697 data[0] = ISO15693_REQ_DATARATE_HIGH | ISO15693_REQ_INVENTORY | ISO15693_REQINV_SLOT1;
1698 data[1] = ISO15693_INVENTORY;
1699 data[2] = 0; // mask length
3d2c9c9b 1700 datalen = Iso15693AddCrc(data,3);
c41dd5f9 1701 uint32_t start_time = GetCountSspClk();
1f4789fe 1702 recvlen = SendDataTag(data, datalen, true, speed, recv, sizeof(recv), 0, ISO15693_READER_TIMEOUT, &eof_time);
c41dd5f9 1703 start_time = eof_time + DELAY_ISO15693_VICC_TO_VCD_READER;
9455b51c 1704 WDT_HIT();
1705 if (recvlen>=12) {
3d2c9c9b 1706 Dbprintf("NoAFI UID=%s", Iso15693sprintUID(NULL, &recv[2]));
9455b51c 1707 }
8c6cca0b 1708
9455b51c 1709 // now with AFI
8c6cca0b 1710
1711 data[0] = ISO15693_REQ_DATARATE_HIGH | ISO15693_REQ_INVENTORY | ISO15693_REQINV_AFI | ISO15693_REQINV_SLOT1;
1712 data[1] = ISO15693_INVENTORY;
1713 data[2] = 0; // AFI
1714 data[3] = 0; // mask length
1715
d9de20fa 1716 for (int i = 0; i < 256; i++) {
1717 data[2] = i & 0xFF;
3d2c9c9b 1718 datalen = Iso15693AddCrc(data,4);
1f4789fe 1719 recvlen = SendDataTag(data, datalen, false, speed, recv, sizeof(recv), start_time, ISO15693_READER_TIMEOUT, &eof_time);
c41dd5f9 1720 start_time = eof_time + DELAY_ISO15693_VICC_TO_VCD_READER;
9455b51c 1721 WDT_HIT();
d9de20fa 1722 if (recvlen >= 12) {
3d2c9c9b 1723 Dbprintf("AFI=%i UID=%s", i, Iso15693sprintUID(NULL, &recv[2]));
9455b51c 1724 }
8c6cca0b 1725 }
9455b51c 1726 Dbprintf("AFI Bruteforcing done.");
8c6cca0b 1727
a66f26da 1728 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
ece38ef3 1729 LED_D_OFF();
1730 LED_A_OFF();
1731
9455b51c 1732}
1733
1734// Allows to directly send commands to the tag via the client
70b2fc0a 1735void DirectTag15693Command(uint32_t datalen, uint32_t speed, uint32_t recv, uint8_t data[]) {
9455b51c 1736
ece38ef3 1737 LED_A_ON();
1738
d9de20fa 1739 int recvlen = 0;
1740 uint8_t recvbuf[ISO15693_MAX_RESPONSE_LENGTH];
c41dd5f9 1741 uint32_t eof_time;
8c6cca0b 1742
1f4789fe 1743 uint16_t timeout;
1744 bool request_answer = false;
1745
1746 switch (data[1]) {
1747 case ISO15693_WRITEBLOCK:
1748 case ISO15693_LOCKBLOCK:
1749 case ISO15693_WRITE_MULTI_BLOCK:
1750 case ISO15693_WRITE_AFI:
1751 case ISO15693_LOCK_AFI:
1752 case ISO15693_WRITE_DSFID:
1753 case ISO15693_LOCK_DSFID:
1754 timeout = ISO15693_READER_TIMEOUT_WRITE;
1755 request_answer = data[0] & ISO15693_REQ_OPTION;
1756 break;
1757 default:
1758 timeout = ISO15693_READER_TIMEOUT;
1759 }
1760
9455b51c 1761 if (DEBUG) {
d9de20fa 1762 Dbprintf("SEND:");
8c6cca0b 1763 Dbhexdump(datalen, data, false);
9455b51c 1764 }
8c6cca0b 1765
1f4789fe 1766 recvlen = SendDataTag(data, datalen, true, speed, (recv?recvbuf:NULL), sizeof(recvbuf), 0, timeout, &eof_time);
c41dd5f9 1767
1f4789fe 1768 if (request_answer) { // send a single EOF to get the tag response
1769 recvlen = SendDataTagEOF((recv?recvbuf:NULL), sizeof(recvbuf), 0, ISO15693_READER_TIMEOUT, &eof_time);
1770 }
1771
c41dd5f9 1772 // for the time being, switch field off to protect rdv4.0
1773 // note: this prevents using hf 15 cmd with s option - which isn't implemented yet anyway
1774 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
1775 LED_D_OFF();
9455b51c 1776
8c6cca0b 1777 if (recv) {
9455b51c 1778 if (DEBUG) {
d9de20fa 1779 Dbprintf("RECV:");
c41dd5f9 1780 if (recvlen > 0) {
1781 Dbhexdump(recvlen, recvbuf, false);
1782 DbdecodeIso15693Answer(recvlen, recvbuf);
1783 }
9455b51c 1784 }
c41dd5f9 1785 if (recvlen > ISO15693_MAX_RESPONSE_LENGTH) {
1786 recvlen = ISO15693_MAX_RESPONSE_LENGTH;
1787 }
1788 cmd_send(CMD_ACK, recvlen, 0, 0, recvbuf, ISO15693_MAX_RESPONSE_LENGTH);
9455b51c 1789 }
1790
70b2fc0a 1791 LED_A_OFF();
9455b51c 1792}
1793
096dee17 1794//-----------------------------------------------------------------------------
1795// Work with "magic Chinese" card.
1796//
1797//-----------------------------------------------------------------------------
1798
1f4789fe 1799// Set the UID on Magic ISO15693 tag (based on Iceman's LUA-script).
ece38ef3 1800void SetTag15693Uid(uint8_t *uid) {
a66f26da 1801
ece38ef3 1802 LED_A_ON();
1803
be09ea86 1804 uint8_t cmd[4][9] = {
1f4789fe 1805 {ISO15693_REQ_DATARATE_HIGH, ISO15693_WRITEBLOCK, 0x3e, 0x00, 0x00, 0x00, 0x00},
1806 {ISO15693_REQ_DATARATE_HIGH, ISO15693_WRITEBLOCK, 0x3f, 0x69, 0x96, 0x00, 0x00},
1807 {ISO15693_REQ_DATARATE_HIGH, ISO15693_WRITEBLOCK, 0x38},
1808 {ISO15693_REQ_DATARATE_HIGH, ISO15693_WRITEBLOCK, 0x39}
be09ea86 1809 };
1810
a66f26da 1811 uint16_t crc;
1812
1813 int recvlen = 0;
1814 uint8_t recvbuf[ISO15693_MAX_RESPONSE_LENGTH];
c41dd5f9 1815 uint32_t eof_time;
a66f26da 1816
a66f26da 1817 // Command 3 : 022138u8u7u6u5 (where uX = uid byte X)
a66f26da 1818 cmd[2][3] = uid[7];
1819 cmd[2][4] = uid[6];
1820 cmd[2][5] = uid[5];
1821 cmd[2][6] = uid[4];
1822
1823 // Command 4 : 022139u4u3u2u1 (where uX = uid byte X)
a66f26da 1824 cmd[3][3] = uid[3];
1825 cmd[3][4] = uid[2];
1826 cmd[3][5] = uid[1];
1827 cmd[3][6] = uid[0];
1828
1f4789fe 1829 uint32_t start_time = 0;
1830
c41dd5f9 1831 for (int i = 0; i < 4; i++) {
a66f26da 1832 // Add the CRC
1833 crc = Iso15693Crc(cmd[i], 7);
1834 cmd[i][7] = crc & 0xff;
1835 cmd[i][8] = crc >> 8;
1836
1f4789fe 1837 recvlen = SendDataTag(cmd[i], sizeof(cmd[i]), i==0?true:false, true, recvbuf, sizeof(recvbuf), start_time, ISO15693_READER_TIMEOUT_WRITE, &eof_time);
1838 start_time = eof_time + DELAY_ISO15693_VICC_TO_VCD_READER;
a66f26da 1839 if (DEBUG) {
1840 Dbprintf("SEND:");
1841 Dbhexdump(sizeof(cmd[i]), cmd[i], false);
a66f26da 1842 Dbprintf("RECV:");
c41dd5f9 1843 if (recvlen > 0) {
1844 Dbhexdump(recvlen, recvbuf, false);
1845 DbdecodeIso15693Answer(recvlen, recvbuf);
1846 }
a66f26da 1847 }
1f4789fe 1848 // Note: need to know if we expect an answer from one of the magic commands
1849 // if (recvlen < 0) {
1850 // break;
1851 // }
a66f26da 1852 }
1853
1f4789fe 1854 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
1855 LED_D_OFF();
1856
1857 cmd_send(CMD_ACK, recvlen, 0, 0, recvbuf, recvlen);
a66f26da 1858 LED_A_OFF();
096dee17 1859}
9455b51c 1860
1861
1862
1863// --------------------------------------------------------------------
1864// -- Misc & deprecated functions
1865// --------------------------------------------------------------------
1866
e6304bca 1867/*
9455b51c 1868
1869// do not use; has a fix UID
1870static void __attribute__((unused)) BuildSysInfoRequest(uint8_t *uid)
1871{
1872 uint8_t cmd[12];
1873
1874 uint16_t crc;
5ea2a248 1875 // If we set the Option_Flag in this request, the VICC will respond with the security status of the block
1876 // followed by the block data
9455b51c 1877 // one sub-carrier, inventory, 1 slot, fast rate
1878 cmd[0] = (1 << 5) | (1 << 1); // no SELECT bit
1879 // System Information command code
1880 cmd[1] = 0x2B;
1881 // UID may be optionally specified here
1882 // 64-bit UID
1883 cmd[2] = 0x32;
1884 cmd[3]= 0x4b;
1885 cmd[4] = 0x03;
1886 cmd[5] = 0x01;
1887 cmd[6] = 0x00;
1888 cmd[7] = 0x10;
1889 cmd[8] = 0x05;
1890 cmd[9]= 0xe0; // always e0 (not exactly unique)
1891 //Now the CRC
3d2c9c9b 1892 crc = Iso15693Crc(cmd, 10); // the crc needs to be calculated over 2 bytes
9455b51c 1893 cmd[10] = crc & 0xff;
1894 cmd[11] = crc >> 8;
1895
1896 CodeIso15693AsReader(cmd, sizeof(cmd));
1897}
1898
9455b51c 1899
1900// do not use; has a fix UID
1901static void __attribute__((unused)) BuildReadMultiBlockRequest(uint8_t *uid)
1902{
1903 uint8_t cmd[14];
1904
1905 uint16_t crc;
5ea2a248 1906 // If we set the Option_Flag in this request, the VICC will respond with the security status of the block
1907 // followed by the block data
9455b51c 1908 // one sub-carrier, inventory, 1 slot, fast rate
1909 cmd[0] = (1 << 5) | (1 << 1); // no SELECT bit
1910 // READ Multi BLOCK command code
1911 cmd[1] = 0x23;
1912 // UID may be optionally specified here
1913 // 64-bit UID
1914 cmd[2] = 0x32;
1915 cmd[3]= 0x4b;
1916 cmd[4] = 0x03;
1917 cmd[5] = 0x01;
1918 cmd[6] = 0x00;
1919 cmd[7] = 0x10;
1920 cmd[8] = 0x05;
1921 cmd[9]= 0xe0; // always e0 (not exactly unique)
1922 // First Block number to read
1923 cmd[10] = 0x00;
1924 // Number of Blocks to read
1925 cmd[11] = 0x2f; // read quite a few
1926 //Now the CRC
3d2c9c9b 1927 crc = Iso15693Crc(cmd, 12); // the crc needs to be calculated over 2 bytes
9455b51c 1928 cmd[12] = crc & 0xff;
1929 cmd[13] = crc >> 8;
1930
1931 CodeIso15693AsReader(cmd, sizeof(cmd));
1932}
1933
1934// do not use; has a fix UID
1935static void __attribute__((unused)) BuildArbitraryRequest(uint8_t *uid,uint8_t CmdCode)
1936{
1937 uint8_t cmd[14];
1938
1939 uint16_t crc;
5ea2a248 1940 // If we set the Option_Flag in this request, the VICC will respond with the security status of the block
1941 // followed by the block data
9455b51c 1942 // one sub-carrier, inventory, 1 slot, fast rate
1943 cmd[0] = (1 << 5) | (1 << 1); // no SELECT bit
1944 // READ BLOCK command code
1945 cmd[1] = CmdCode;
1946 // UID may be optionally specified here
1947 // 64-bit UID
1948 cmd[2] = 0x32;
1949 cmd[3]= 0x4b;
1950 cmd[4] = 0x03;
1951 cmd[5] = 0x01;
1952 cmd[6] = 0x00;
1953 cmd[7] = 0x10;
1954 cmd[8] = 0x05;
1955 cmd[9]= 0xe0; // always e0 (not exactly unique)
1956 // Parameter
1957 cmd[10] = 0x00;
1958 cmd[11] = 0x0a;
1959
a66f26da 1960// cmd[12] = 0x00;
1961// cmd[13] = 0x00; //Now the CRC
3d2c9c9b 1962 crc = Iso15693Crc(cmd, 12); // the crc needs to be calculated over 2 bytes
9455b51c 1963 cmd[12] = crc & 0xff;
1964 cmd[13] = crc >> 8;
1965
1966 CodeIso15693AsReader(cmd, sizeof(cmd));
1967}
1968
1969// do not use; has a fix UID
1970static void __attribute__((unused)) BuildArbitraryCustomRequest(uint8_t uid[], uint8_t CmdCode)
1971{
1972 uint8_t cmd[14];
1973
1974 uint16_t crc;
5ea2a248 1975 // If we set the Option_Flag in this request, the VICC will respond with the security status of the block
1976 // followed by the block data
9455b51c 1977 // one sub-carrier, inventory, 1 slot, fast rate
1978 cmd[0] = (1 << 5) | (1 << 1); // no SELECT bit
1979 // READ BLOCK command code
1980 cmd[1] = CmdCode;
1981 // UID may be optionally specified here
1982 // 64-bit UID
1983 cmd[2] = 0x32;
1984 cmd[3]= 0x4b;
1985 cmd[4] = 0x03;
1986 cmd[5] = 0x01;
1987 cmd[6] = 0x00;
1988 cmd[7] = 0x10;
1989 cmd[8] = 0x05;
1990 cmd[9]= 0xe0; // always e0 (not exactly unique)
1991 // Parameter
5ea2a248 1992 cmd[10] = 0x05; // for custom codes this must be manufacturer code
9455b51c 1993 cmd[11] = 0x00;
1994
a66f26da 1995// cmd[12] = 0x00;
1996// cmd[13] = 0x00; //Now the CRC
3d2c9c9b 1997 crc = Iso15693Crc(cmd, 12); // the crc needs to be calculated over 2 bytes
9455b51c 1998 cmd[12] = crc & 0xff;
1999 cmd[13] = crc >> 8;
2000
2001 CodeIso15693AsReader(cmd, sizeof(cmd));
2002}
2003
2004
2005
2006
e6304bca 2007*/
9455b51c 2008
2009
Impressum, Datenschutz