]> git.zerfleddert.de Git - proxmark3-svn/blame - armsrc/legicrf.c
Simplify data types, now that I believe that 'frames' will always be rather short
[proxmark3-svn] / armsrc / legicrf.c
CommitLineData
a7247d85 1/*
2 * LEGIC RF simulation code
3 *
4 * (c) 2009 Henryk Plötz <henryk@ploetzli.ch>
5 */
6
7#include <proxmark3.h>
8
9#include "apps.h"
10#include "legicrf.h"
ccedd6ae 11#include "unistd.h"
12#include "stdint.h"
a7247d85 13
14static struct legic_frame {
ccedd6ae 15 int bits;
16 uint16_t data;
a7247d85 17} current_frame;
aac23b24 18
ccedd6ae 19static struct legic_frame queries[] = {
aac23b24 20 {7, 0x55}, /* 1010 101 */
21};
ccedd6ae 22
23static struct legic_frame responses[] = {
aac23b24 24 {6, 0x3b}, /* 1101 11 */
25};
a7247d85 26
ccedd6ae 27static void frame_send(uint16_t response, int bits)
a7247d85 28{
29#if 0
30 /* Use the SSC to send a response. 8-bit transfers, LSBit first, 100us per bit */
31#else
32 /* Bitbang the response */
33 AT91C_BASE_PIOA->PIO_CODR = GPIO_SSC_DOUT;
34 AT91C_BASE_PIOA->PIO_OER = GPIO_SSC_DOUT;
35 AT91C_BASE_PIOA->PIO_PER = GPIO_SSC_DOUT;
36
37 /* Wait for the frame start */
38 while(AT91C_BASE_TC1->TC_CV < 490) ;
39
40 int i;
ccedd6ae 41 for(i=0; i<bits; i++) {
a7247d85 42 int nextbit = AT91C_BASE_TC1->TC_CV + 150;
ccedd6ae 43 int bit = response & 1;
44 response = response >> 1;
a7247d85 45 if(bit)
46 AT91C_BASE_PIOA->PIO_SODR = GPIO_SSC_DOUT;
47 else
48 AT91C_BASE_PIOA->PIO_CODR = GPIO_SSC_DOUT;
49 while(AT91C_BASE_TC1->TC_CV < nextbit) ;
50 }
51 AT91C_BASE_PIOA->PIO_CODR = GPIO_SSC_DOUT;
52#endif
53}
54
ccedd6ae 55static void frame_respond(struct legic_frame const * const f)
a7247d85 56{
57 LED_D_ON();
ccedd6ae 58 int i;
59 struct legic_frame *r = NULL;
60
aac23b24 61 for(i=0; i<sizeof(queries)/sizeof(queries[0]); i++) {
ccedd6ae 62 if(f->bits == queries[i].bits && f->data == queries[i].data) {
63 r = &responses[i];
aac23b24 64 break;
65 }
66 }
67
ccedd6ae 68 if(r != NULL) {
69 frame_send(r->data, r->bits);
aac23b24 70 LED_A_ON();
71 } else {
72 LED_A_OFF();
a7247d85 73 }
aac23b24 74
a7247d85 75 LED_D_OFF();
76}
77
ccedd6ae 78static void frame_append_bit(struct legic_frame * const f, int bit)
a7247d85 79{
ccedd6ae 80 if(f->bits >= 15)
a7247d85 81 return; /* Overflow, won't happen */
ccedd6ae 82 f->data |= (bit<<f->bits);
83 f->bits++;
a7247d85 84}
85
ccedd6ae 86static int frame_is_empty(struct legic_frame const * const f)
a7247d85 87{
ccedd6ae 88 return( f->bits <= 4 );
a7247d85 89}
90
ccedd6ae 91static void frame_handle(struct legic_frame const * const f)
a7247d85 92{
ccedd6ae 93 if(f->bits == 6) {
aac23b24 94 /* Short path */
95 return;
96 }
a7247d85 97 if( !frame_is_empty(f) ) {
98 frame_respond(f);
99 }
100}
101
ccedd6ae 102static void frame_clean(struct legic_frame * const f)
a7247d85 103{
ccedd6ae 104 f->data = 0;
105 f->bits = 0;
a7247d85 106}
107
108static void emit(int bit)
109{
110 if(bit == -1) {
111 frame_handle(&current_frame);
112 frame_clean(&current_frame);
113 } else if(bit == 0) {
114 frame_append_bit(&current_frame, 0);
115 } else if(bit == 1) {
116 frame_append_bit(&current_frame, 1);
117 }
118}
119
120void LegicRfSimulate(void)
121{
122 /* ADC path high-frequency peak detector, FPGA in high-frequency simulator mode,
123 * modulation mode set to 212kHz subcarrier. We are getting the incoming raw
124 * envelope waveform on DIN and should send our response on DOUT.
125 *
126 * The LEGIC RF protocol is pulse-pause-encoding from reader to card, so we'll
127 * measure the time between two rising edges on DIN, and no encoding on the
128 * subcarrier from card to reader, so we'll just shift out our verbatim data
129 * on DOUT, 1 bit is 100us. The time from reader to card frame is still unclear,
130 * seems to be 300us-ish.
131 */
132 SetAdcMuxFor(GPIO_MUXSEL_HIPKD);
133 FpgaSetupSsc();
134 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_SIMULATOR | FPGA_HF_SIMULATOR_MODULATE_212K);
135
136 /* Bitbang the receiver */
137 AT91C_BASE_PIOA->PIO_ODR = GPIO_SSC_DIN;
138 AT91C_BASE_PIOA->PIO_PER = GPIO_SSC_DIN;
139
140 /* Set up Timer 1 to use for measuring time between pulses. Since we're bit-banging
141 * this it won't be terribly accurate but should be good enough.
142 */
143 AT91C_BASE_PMC->PMC_PCER = (1 << AT91C_ID_TC1);
144 AT91C_BASE_TC1->TC_CCR = AT91C_TC_CLKDIS;
145 AT91C_BASE_TC1->TC_CMR = TC_CMR_TCCLKS_TIMER_CLOCK3;
146 AT91C_BASE_TC1->TC_CCR = AT91C_TC_CLKEN | AT91C_TC_SWTRG;
147 int old_level = 0;
148
149/* At TIMER_CLOCK3 (MCK/32) */
150#define BIT_TIME_1 150
151#define BIT_TIME_0 90
152#define BIT_TIME_FUZZ 20
153
154 int active = 0;
155 while(!BUTTON_PRESS()) {
156 int level = !!(AT91C_BASE_PIOA->PIO_PDSR & GPIO_SSC_DIN);
157 int time = AT91C_BASE_TC1->TC_CV;
158
159 if(level != old_level) {
160 if(level == 1) {
161 AT91C_BASE_TC1->TC_CCR = AT91C_TC_CLKEN | AT91C_TC_SWTRG;
162 if(time > (BIT_TIME_1-BIT_TIME_FUZZ) && time < (BIT_TIME_1+BIT_TIME_FUZZ)) {
163 /* 1 bit */
164 emit(1);
165 active = 1;
aac23b24 166 LED_B_ON();
a7247d85 167 } else if(time > (BIT_TIME_0-BIT_TIME_FUZZ) && time < (BIT_TIME_0+BIT_TIME_FUZZ)) {
168 /* 0 bit */
169 emit(0);
aac23b24 170 active = 1;
171 LED_B_ON();
172 } else if(active) {
a7247d85 173 /* invalid */
174 emit(-1);
175 active = 0;
aac23b24 176 LED_B_OFF();
a7247d85 177 }
178 }
179 }
180
aac23b24 181 if(time >= (BIT_TIME_1+BIT_TIME_FUZZ) && active) {
a7247d85 182 /* Frame end */
183 emit(-1);
184 active = 0;
aac23b24 185 LED_B_OFF();
a7247d85 186 }
187
188 if(time >= (20*BIT_TIME_1) && (AT91C_BASE_TC1->TC_SR & AT91C_TC_CLKSTA)) {
189 AT91C_BASE_TC1->TC_CCR = AT91C_TC_CLKDIS;
190 }
191
192
193 old_level = level;
194 WDT_HIT();
195 }
196}
Impressum, Datenschutz