2 * LEGIC RF simulation code
4 * (c) 2009 Henryk Plötz <henryk@ploetzli.ch>
14 static struct legic_frame
{
19 static struct legic_frame queries
[] = {
20 {7, 0x55}, /* 1010 101 */
23 static struct legic_frame responses
[] = {
24 {6, 0x3b}, /* 1101 11 */
27 static void frame_send(uint16_t response
, int bits
)
30 /* Use the SSC to send a response. 8-bit transfers, LSBit first, 100us per bit */
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
;
37 /* Wait for the frame start */
38 while(AT91C_BASE_TC1
->TC_CV
< 490) ;
41 for(i
=0; i
<bits
; i
++) {
42 int nextbit
= AT91C_BASE_TC1
->TC_CV
+ 150;
43 int bit
= response
& 1;
44 response
= response
>> 1;
46 AT91C_BASE_PIOA
->PIO_SODR
= GPIO_SSC_DOUT
;
48 AT91C_BASE_PIOA
->PIO_CODR
= GPIO_SSC_DOUT
;
49 while(AT91C_BASE_TC1
->TC_CV
< nextbit
) ;
51 AT91C_BASE_PIOA
->PIO_CODR
= GPIO_SSC_DOUT
;
55 static void frame_respond(struct legic_frame
const * const f
)
59 struct legic_frame
*r
= NULL
;
61 for(i
=0; i
<sizeof(queries
)/sizeof(queries
[0]); i
++) {
62 if(f
->bits
== queries
[i
].bits
&& f
->data
== queries
[i
].data
) {
69 frame_send(r
->data
, r
->bits
);
78 static void frame_append_bit(struct legic_frame
* const f
, int bit
)
81 return; /* Overflow, won't happen */
82 f
->data
|= (bit
<<f
->bits
);
86 static int frame_is_empty(struct legic_frame
const * const f
)
88 return( f
->bits
<= 4 );
91 static void frame_handle(struct legic_frame
const * const f
)
97 if( !frame_is_empty(f
) ) {
102 static void frame_clean(struct legic_frame
* const f
)
108 static void emit(int bit
)
111 frame_handle(¤t_frame
);
112 frame_clean(¤t_frame
);
113 } else if(bit
== 0) {
114 frame_append_bit(¤t_frame
, 0);
115 } else if(bit
== 1) {
116 frame_append_bit(¤t_frame
, 1);
120 void LegicRfSimulate(void)
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.
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.
132 SetAdcMuxFor(GPIO_MUXSEL_HIPKD
);
134 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_SIMULATOR
| FPGA_HF_SIMULATOR_MODULATE_212K
);
136 /* Bitbang the receiver */
137 AT91C_BASE_PIOA
->PIO_ODR
= GPIO_SSC_DIN
;
138 AT91C_BASE_PIOA
->PIO_PER
= GPIO_SSC_DIN
;
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.
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
;
149 /* At TIMER_CLOCK3 (MCK/32) */
150 #define BIT_TIME_1 150
151 #define BIT_TIME_0 90
152 #define BIT_TIME_FUZZ 20
155 while(!BUTTON_PRESS()) {
156 int level
= !!(AT91C_BASE_PIOA
->PIO_PDSR
& GPIO_SSC_DIN
);
157 int time
= AT91C_BASE_TC1
->TC_CV
;
159 if(level
!= old_level
) {
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
)) {
167 } else if(time
> (BIT_TIME_0
-BIT_TIME_FUZZ
) && time
< (BIT_TIME_0
+BIT_TIME_FUZZ
)) {
181 if(time
>= (BIT_TIME_1
+BIT_TIME_FUZZ
) && active
) {
188 if(time
>= (20*BIT_TIME_1
) && (AT91C_BASE_TC1
->TC_SR
& AT91C_TC_CLKSTA
)) {
189 AT91C_BASE_TC1
->TC_CCR
= AT91C_TC_CLKDIS
;