1 //-----------------------------------------------------------------------------
2 // The FPGA is responsible for interfacing between the A/D, the coil drivers,
3 // and the ARM. In the low-frequency modes it passes the data straight
4 // through, so that the ARM gets raw A/D samples over the SSP. In the high-
5 // frequency modes, the FPGA might perform some demodulation first, to
6 // reduce the amount of data that we must send to the ARM.
8 // I am not really an FPGA/ASIC designer, so I am sure that a lot of this
11 // Jonathan Westhues, March 2006
12 // Added ISO14443-A support by Gerhard de Koning Gans, April 2008
13 // iZsh <izsh at fail0verflow.com>, June 2014
15 //-----------------------------------------------------------------------------
18 // Defining commands, modes and options. This must be aligned to the definitions in fpgaloader.h
19 // Note: the definitions here are without shifts
22 `define FPGA_CMD_SET_CONFREG 1
23 `define FPGA_CMD_TRACE_ENABLE 2
26 `define FPGA_MAJOR_MODE_HF_READER 0
27 `define FPGA_MAJOR_MODE_HF_SIMULATOR 1
28 `define FPGA_MAJOR_MODE_HF_ISO14443A 2
29 `define FPGA_MAJOR_MODE_HF_SNIFF 3
30 `define FPGA_MAJOR_MODE_HF_ISO18092 4
31 `define FPGA_MAJOR_MODE_HF_GET_TRACE 5
32 `define FPGA_MAJOR_MODE_OFF 7
34 // Options for the generic HF reader
35 `define FPGA_HF_READER_MODE_RECEIVE_IQ 0
36 `define FPGA_HF_READER_MODE_RECEIVE_AMPLITUDE 1
37 `define FPGA_HF_READER_MODE_RECEIVE_PHASE 2
38 `define FPGA_HF_READER_MODE_SEND_FULL_MOD 3
39 `define FPGA_HF_READER_MODE_SEND_SHALLOW_MOD 4
40 `define FPGA_HF_READER_MODE_SNIFF_IQ 5
41 `define FPGA_HF_READER_MODE_SNIFF_AMPLITUDE 6
42 `define FPGA_HF_READER_MODE_SNIFF_PHASE 7
43 `define FPGA_HF_READER_MODE_SEND_JAM 8
45 `define FPGA_HF_READER_SUBCARRIER_848_KHZ 0
46 `define FPGA_HF_READER_SUBCARRIER_424_KHZ 1
47 `define FPGA_HF_READER_SUBCARRIER_212_KHZ 2
49 // Options for the HF simulated tag, how to modulate
50 `define FPGA_HF_SIMULATOR_NO_MODULATION 0
51 `define FPGA_HF_SIMULATOR_MODULATE_BPSK 1
52 `define FPGA_HF_SIMULATOR_MODULATE_212K 2
53 `define FPGA_HF_SIMULATOR_MODULATE_424K 4
54 `define FPGA_HF_SIMULATOR_MODULATE_424K_8BIT 5
56 // Options for ISO14443A
57 `define FPGA_HF_ISO14443A_SNIFFER 0
58 `define FPGA_HF_ISO14443A_TAGSIM_LISTEN 1
59 `define FPGA_HF_ISO14443A_TAGSIM_MOD 2
60 `define FPGA_HF_ISO14443A_READER_LISTEN 3
61 `define FPGA_HF_ISO14443A_READER_MOD 4
63 //options for ISO18092 / Felica
64 `define FPGA_HF_ISO18092_FLAG_NOMOD 1 // 0001 disable modulation module
65 `define FPGA_HF_ISO18092_FLAG_424K 2 // 0010 should enable 414k mode (untested). No autodetect
66 `define FPGA_HF_ISO18092_FLAG_READER 4 // 0100 enables antenna power, to act as a reader instead of tag
68 `include "hi_reader.v"
69 `include "hi_simulate.v"
70 `include "hi_iso14443a.v"
71 `include "hi_sniffer.v"
73 // `include "hi_flite.v"
74 `include "hi_get_trace.v"
77 input spck
, output miso
, input mosi
, input ncs
,
78 input pck0
, input ck_1356meg
, input ck_1356megb
,
79 output pwr_lo
, output pwr_hi
,
80 output pwr_oe1
, output pwr_oe2
, output pwr_oe3
, output pwr_oe4
,
81 input [7:0] adc_d
, output adc_clk
, output adc_noe
,
82 output ssp_frame
, output ssp_din
, input ssp_dout
, output ssp_clk
,
83 input cross_hi
, input cross_lo
,
87 //-----------------------------------------------------------------------------
88 // The SPI receiver. This sets up the configuration word, which the rest of
89 // the logic looks at to determine how to connect the A/D and the coil
90 // drivers (i.e., which section gets it). Also assign some symbolic names
91 // to the configuration bits, for use below.
92 //-----------------------------------------------------------------------------
95 Attempt to write up how its hooked up.
98 Communication between ARM / FPGA is done inside armsrc/fpgaloader.c see: function FpgaSendCommand()
99 Send 16 bit command / data pair to FPGA
100 The bit format is: C3 C2 C1 C0 D11 D10 D9 D8 D7 D6 D5 D4 D3 D2 D1 D0
105 shift_reg receive this 16bit frame
108 -----+--------- frame layout --------------------
109 bit | 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
110 -----+-------------------------------------------
115 divi | x x x x x x x x
116 thres| x x x x x x x x
117 -----+-------------------------------------------
120 reg [15:0] shift_reg
;
124 // We switch modes between transmitting to the 13.56 MHz tag and receiving
125 // from it, which means that we must make sure that we can do so without
126 // glitching, or else we will glitch the transmitted carrier.
127 always @(posedge ncs
)
129 case(shift_reg
[15:12])
130 `FPGA_CMD_SET_CONFREG: conf_word <= shift_reg[8:0];
131 `FPGA_CMD_TRACE_ENABLE: trace_enable <= shift_reg[0];
135 always @(posedge spck
)
139 shift_reg
[15:1] <= shift_reg
[14:0];
140 shift_reg
[0] <= mosi
;
144 // select module (outputs) based on major mode
145 wire [2:0] major_mode
= conf_word
[8:6];
147 // configuring the HF reader
148 wire [1:0] subcarrier_frequency
= conf_word
[5:4];
149 wire [3:0] minor_mode
= conf_word
[3:0];
151 //-----------------------------------------------------------------------------
152 // And then we instantiate the modules corresponding to each of the FPGA's
153 // major modes, and use muxes to connect the outputs of the active mode to
155 //-----------------------------------------------------------------------------
160 hr_pwr_lo
, hr_pwr_hi
, hr_pwr_oe1
, hr_pwr_oe2
, hr_pwr_oe3
, hr_pwr_oe4
,
162 hr_ssp_frame
, hr_ssp_din
, ssp_dout
, hr_ssp_clk
,
164 subcarrier_frequency
, minor_mode
167 // 001 - HF simulated tag
170 hs_pwr_lo
, hs_pwr_hi
, hs_pwr_oe1
, hs_pwr_oe2
, hs_pwr_oe3
, hs_pwr_oe4
,
172 hs_ssp_frame
, hs_ssp_din
, ssp_dout
, hs_ssp_clk
,
177 // 010 - HF ISO14443-A
180 hisn_pwr_lo
, hisn_pwr_hi
, hisn_pwr_oe1
, hisn_pwr_oe2
, hisn_pwr_oe3
, hisn_pwr_oe4
,
182 hisn_ssp_frame
, hisn_ssp_din
, ssp_dout
, hisn_ssp_clk
,
190 he_pwr_lo
, he_pwr_hi
, he_pwr_oe1
, he_pwr_oe2
, he_pwr_oe3
, he_pwr_oe4
,
192 he_ssp_frame
, he_ssp_din
, he_ssp_clk
195 // 100 - HF ISO18092 FeliCa
199 hfl_pwr_lo, hfl_pwr_hi, hfl_pwr_oe1, hfl_pwr_oe2, hfl_pwr_oe3, hfl_pwr_oe4,
201 hfl_ssp_frame, hfl_ssp_din, ssp_dout, hfl_ssp_clk,
207 // 101 - HF get trace
210 adc_d
, trace_enable
, major_mode
,
211 gt_ssp_frame
, gt_ssp_din
, gt_ssp_clk
215 // 000 -- HF reader; subcarrier frequency and modulation depth selectable
216 // 001 -- HF simulated tag
217 // 010 -- HF ISO14443-A
219 // 100 -- HF ISO18092 FeliCa
220 // 101 -- HF get trace
222 // 111 -- FPGA_MAJOR_MODE_OFF
224 // 000 001 010 011 100 101 110 111
226 mux8
mux_ssp_clk (major_mode
, ssp_clk
, hr_ssp_clk
, hs_ssp_clk
, hisn_ssp_clk
, he_ssp_clk
, hfl_ssp_clk
, gt_ssp_clk
, 1'b0, 1'b0);
227 mux8
mux_ssp_din (major_mode
, ssp_din
, hr_ssp_din
, hs_ssp_din
, hisn_ssp_din
, he_ssp_din
, hfl_ssp_din
, gt_ssp_din
, 1'b0, 1'b0);
228 mux8
mux_ssp_frame (major_mode
, ssp_frame
, hr_ssp_frame
, hs_ssp_frame
, hisn_ssp_frame
, he_ssp_frame
, hfl_ssp_frame
, gt_ssp_frame
, 1'b0, 1'b0);
229 mux8
mux_pwr_oe1 (major_mode
, pwr_oe1
, hr_pwr_oe1
, hs_pwr_oe1
, hisn_pwr_oe1
, he_pwr_oe1
, hfl_pwr_oe1
, 1'b0, 1'b0, 1'b0);
230 mux8
mux_pwr_oe2 (major_mode
, pwr_oe2
, hr_pwr_oe2
, hs_pwr_oe2
, hisn_pwr_oe2
, he_pwr_oe2
, hfl_pwr_oe2
, 1'b0, 1'b0, 1'b0);
231 mux8
mux_pwr_oe3 (major_mode
, pwr_oe3
, hr_pwr_oe3
, hs_pwr_oe3
, hisn_pwr_oe3
, he_pwr_oe3
, hfl_pwr_oe3
, 1'b0, 1'b0, 1'b0);
232 mux8
mux_pwr_oe4 (major_mode
, pwr_oe4
, hr_pwr_oe4
, hs_pwr_oe4
, hisn_pwr_oe4
, he_pwr_oe4
, hfl_pwr_oe4
, 1'b0, 1'b0, 1'b0);
233 mux8
mux_pwr_lo (major_mode
, pwr_lo
, hr_pwr_lo
, hs_pwr_lo
, hisn_pwr_lo
, he_pwr_lo
, hfl_pwr_lo
, 1'b0, 1'b0, 1'b0);
234 mux8
mux_pwr_hi (major_mode
, pwr_hi
, hr_pwr_hi
, hs_pwr_hi
, hisn_pwr_hi
, he_pwr_hi
, hfl_pwr_hi
, 1'b0, 1'b0, 1'b0);
235 mux8
mux_adc_clk (major_mode
, adc_clk
, hr_adc_clk
, hs_adc_clk
, hisn_adc_clk
, he_adc_clk
, hfl_adc_clk
, 1'b0, 1'b0, 1'b0);
236 mux8
mux_dbg (major_mode
, dbg
, hr_dbg
, hs_dbg
, hisn_dbg
, he_dbg
, hfl_dbg
, 1'b0, 1'b0, 1'b0);
238 // In all modes, let the ADC's outputs be enabled.
239 assign adc_noe
= 1'b0;