1 //-----------------------------------------------------------------------------
3 // Jonathan Westhues, April 2006
4 //-----------------------------------------------------------------------------
6 module hi_read_rx_xcorr(
7 pck0, ck_1356meg, ck_1356megb,
8 pwr_lo, pwr_hi, pwr_oe1, pwr_oe2, pwr_oe3, pwr_oe4,
10 ssp_frame, ssp_din, ssp_dout, ssp_clk,
13 xcorr_is_848, snoop, xcorr_quarter_freq
15 input pck0, ck_1356meg, ck_1356megb;
16 output pwr_lo, pwr_hi, pwr_oe1, pwr_oe2, pwr_oe3, pwr_oe4;
20 output ssp_frame, ssp_din, ssp_clk;
21 input cross_hi, cross_lo;
23 input xcorr_is_848, snoop, xcorr_quarter_freq;
25 // Carrier is steady on through this, unless we're snooping.
26 assign pwr_hi = ck_1356megb & (~snoop);
27 assign pwr_oe1 = 1'b0;
28 assign pwr_oe3 = 1'b0;
29 assign pwr_oe4 = 1'b0;
32 always @(negedge ck_1356megb)
35 (* clock_signal = "yes" *) reg adc_clk; // sample frequency, always 16 * fc
36 always @(ck_1356megb, xcorr_is_848, xcorr_quarter_freq, fc_div)
37 if (xcorr_is_848 & ~xcorr_quarter_freq) // fc = 847.5 kHz, standard ISO14443B
38 adc_clk <= ck_1356megb;
39 else if (~xcorr_is_848 & ~xcorr_quarter_freq) // fc = 423.75 kHz
41 else if (xcorr_is_848 & xcorr_quarter_freq) // fc = 211.875 kHz
43 else // fc = 105.9375 kHz
46 // When we're a reader, we just need to do the BPSK demod; but when we're an
47 // eavesdropper, we also need to pick out the commands sent by the reader,
48 // using AM. Do this the same way that we do it for the simulated tag.
49 reg after_hysteresis, after_hysteresis_prev, after_hysteresis_prev_prev;
50 reg [11:0] has_been_low_for;
51 always @(negedge adc_clk)
53 if(& adc_d[7:0]) after_hysteresis <= 1'b1;
54 else if(~(| adc_d[7:0])) after_hysteresis <= 1'b0;
58 has_been_low_for <= 7'b0;
62 if(has_been_low_for == 12'd4095)
64 has_been_low_for <= 12'd0;
65 after_hysteresis <= 1'b1;
68 has_been_low_for <= has_been_low_for + 1;
72 // Let us report a correlation every 4 subcarrier cycles, or 4*16=64 samples,
73 // so we need a 6-bit counter.
75 // And a couple of registers in which to accumulate the correlations.
76 // We would add at most 32 times the difference between unmodulated and modulated signal. It should
77 // be safe to assume that a tag will not be able to modulate the carrier signal by more than 25%.
78 // 32 * 255 * 0,25 = 2040, which can be held in 11 bits. Add 1 bit for sign.
79 reg signed [11:0] corr_i_accum;
80 reg signed [11:0] corr_q_accum;
81 // we will report maximum 8 significant bits
82 reg signed [7:0] corr_i_out;
83 reg signed [7:0] corr_q_out;
84 // clock and frame signal for communication to ARM
89 always @(negedge adc_clk)
91 corr_i_cnt <= corr_i_cnt + 1;
95 // ADC data appears on the rising edge, so sample it on the falling edge
96 always @(negedge adc_clk)
98 // These are the correlators: we correlate against in-phase and quadrature
99 // versions of our reference signal, and keep the (signed) result to
100 // send out later over the SSP.
101 if(corr_i_cnt == 6'd0)
105 // Send 7 most significant bits of tag signal (signed), plus 1 bit reader signal
106 corr_i_out <= {corr_i_accum[11:5], after_hysteresis_prev_prev};
107 corr_q_out <= {corr_q_accum[11:5], after_hysteresis_prev};
108 after_hysteresis_prev_prev <= after_hysteresis;
112 // 8 bits of tag signal
113 corr_i_out <= corr_i_accum[11:4];
114 corr_q_out <= corr_q_accum[11:4];
117 corr_i_accum <= adc_d;
118 corr_q_accum <= adc_d;
123 corr_i_accum <= corr_i_accum - adc_d;
125 corr_i_accum <= corr_i_accum + adc_d;
127 if(corr_i_cnt[3] == corr_i_cnt[2]) // phase shifted by pi/2
128 corr_q_accum <= corr_q_accum + adc_d;
130 corr_q_accum <= corr_q_accum - adc_d;
134 // The logic in hi_simulate.v reports 4 samples per bit. We report two
135 // (I, Q) pairs per bit, so we should do 2 samples per pair.
136 if(corr_i_cnt == 6'd32)
137 after_hysteresis_prev <= after_hysteresis;
139 // Then the result from last time is serialized and send out to the ARM.
140 // We get one report each cycle, and each report is 16 bits, so the
141 // ssp_clk should be the adc_clk divided by 64/16 = 4.
143 if(corr_i_cnt[1:0] == 2'b10)
146 if(corr_i_cnt[1:0] == 2'b00)
149 // Don't shift if we just loaded new data, obviously.
150 if(corr_i_cnt != 6'd0)
152 corr_i_out[7:0] <= {corr_i_out[6:0], corr_q_out[7]};
153 corr_q_out[7:1] <= corr_q_out[6:0];
157 // set ssp_frame signal for corr_i_cnt = 0..3 and corr_i_cnt = 32..35
158 // (send two frames with 8 Bits each)
159 if(corr_i_cnt[5:2] == 4'b0000 || corr_i_cnt[5:2] == 4'b1000)
166 assign ssp_din = corr_i_out[7];
168 assign dbg = corr_i_cnt[3];
171 assign pwr_lo = 1'b0;
172 assign pwr_oe2 = 1'b0;