]> git.zerfleddert.de Git - proxmark3-svn/blame - fpga/lo_edge_detect.v
Provide option -m for markdown help dump, -h for text dump
[proxmark3-svn] / fpga / lo_edge_detect.v
CommitLineData
d19929cb 1//-----------------------------------------------------------------------------
2// The way that we connect things in low-frequency simulation mode. In this
3// case just pass everything through to the ARM, which can bit-bang this
4// (because it is so slow).
5//
6// Jonathan Westhues, April 2006
7//-----------------------------------------------------------------------------
8
9module lo_edge_detect(
10 pck0, ck_1356meg, ck_1356megb,
11 pwr_lo, pwr_hi, pwr_oe1, pwr_oe2, pwr_oe3, pwr_oe4,
12 adc_d, adc_clk,
13 ssp_frame, ssp_din, ssp_dout, ssp_clk,
14 cross_hi, cross_lo,
15 dbg,
16 divisor,
17 lf_field
18);
19 input pck0, ck_1356meg, ck_1356megb;
20 output pwr_lo, pwr_hi, pwr_oe1, pwr_oe2, pwr_oe3, pwr_oe4;
21 input [7:0] adc_d;
22 output adc_clk;
23 input ssp_dout;
24 output ssp_frame, ssp_din, ssp_clk;
25 input cross_hi, cross_lo;
26 output dbg;
27 input [7:0] divisor;
28 input lf_field;
29
30// Divide the clock to be used for the ADC
31reg [7:0] pck_divider;
32reg clk_state;
33
34wire tag_modulation;
35assign tag_modulation = ssp_dout & !lf_field;
36wire reader_modulation;
37assign reader_modulation = !ssp_dout & lf_field & clk_state;
38
39// No logic, straight through.
40assign pwr_oe1 = 1'b0; // not used in LF mode
41assign pwr_oe2 = tag_modulation;
42assign pwr_oe3 = tag_modulation;
43assign pwr_oe4 = tag_modulation;
44assign ssp_clk = cross_lo;
45assign pwr_lo = reader_modulation;
46assign pwr_hi = 1'b0;
47assign dbg = ssp_frame;
48
49always @(posedge pck0)
50begin
51 if(pck_divider == divisor[7:0])
52 begin
53 pck_divider <= 8'd0;
54 clk_state = !clk_state;
55 end
56 else
57 begin
58 pck_divider <= pck_divider + 1;
59 end
60end
61
62assign adc_clk = ~clk_state;
63
64// Toggle the output with hysteresis
65// Set to high if the ADC value is above 200
66// Set to low if the ADC value is below 64
67reg is_high;
68reg is_low;
69reg output_state;
70
71always @(posedge pck0)
72begin
73 if((pck_divider == 8'd7) && !clk_state) begin
74 is_high = (adc_d >= 8'd190);
75 is_low = (adc_d <= 8'd70);
76 end
77end
78
79always @(posedge is_high or posedge is_low)
80begin
81 if(is_high)
82 output_state <= 1'd1;
83 else if(is_low)
84 output_state <= 1'd0;
85end
86
87assign ssp_frame = output_state;
88
89endmodule
90
Impressum, Datenschutz