OpenCores
URL https://opencores.org/ocsvn/dblclockfft/dblclockfft/trunk

Subversion Repositories dblclockfft

[/] [dblclockfft/] [trunk/] [doc/] [src/] [spec.tex] - Blame information for rev 22

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 10 dgisselq
\documentclass{gqtekspec}
2
\project{Double Clocked FFT}
3
\title{Specification}
4
\author{Dan Gisselquist, Ph.D.}
5
\email{dgisselq\at opencores.org}
6 11 dgisselq
\revision{Rev.~0.1}
7 10 dgisselq
\begin{document}
8
\pagestyle{gqtekspecplain}
9
\titlepage
10
\begin{license}
11
Copyright (C) \theyear\today, Gisselquist Technology, LLC
12
 
13
This project is free software (firmware): you can redistribute it and/or
14
modify it under the terms of  the GNU General Public License as published
15
by the Free Software Foundation, either version 3 of the License, or (at
16
your option) any later version.
17
 
18
This program is distributed in the hope that it will be useful, but WITHOUT
19
ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
20
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
21
for more details.
22
 
23
You should have received a copy of the GNU General Public License along
24
with this program.  If not, see \hbox{<http://www.gnu.org/licenses/>} for a copy.
25
\end{license}
26
\begin{revisionhistory}
27 11 dgisselq
0.1 & 3/3/2015 & Gisselquist & First Draft \\\hline
28 10 dgisselq
\end{revisionhistory}
29
% Revision History
30
% Table of Contents, named Contents
31
\tableofcontents
32
\listoffigures
33
\listoftables
34
\begin{preface}
35
This FFT comes from my attempts to design and implement a signal processing
36
algorithm inside a generic FPGA, but only on a limited budget.  As such,
37
I don't yet have the FPGA board I wish to place this algorithm onto, neither
38
do I have any expensive modeling or simulation capabilities.  I'm using
39
Verilator for my modeling and simulation needs.  This makes
40
using a vendor supplied IP core, such as an FFT, difficult if not impossible
41
to use.
42
 
43
My problem was made worse when I learned that the published maximum clock
44
speed for a device wasn't necessarily the maximum clock speed that I could
45
achieve.  My design needed to process the incoming signal at 500~MHz to be
46
commercially viable.  500~MHz is not necessarily a clock speed
47
that can be easily achieved.  250~MHz, on the other hand, is much more within
48
the realm of possibility.  Achieving a 500~MHz performance with a 250~MHz
49
clock, however, requires an FFT that accepts two samples per clock.
50
 
51
This, then, was and is the genesis of this project.
52
\end{preface}
53
 
54
\chapter{Introduction}
55
\pagenumbering{arabic}
56
\setcounter{page}{1}
57
 
58
The Double Clocked FFT project contains all of the software necessary to
59
create the IP to generate an arbitrary sized FFT that will clock two samples
60
in at each clock cycle, and after some pipeline delay it will clock two
61
samples out at every clock cycle.
62
 
63
The FFT generated by this approach is very configurable.  By simple adjustment
64
of a command line parameter, the FFT may be made to be a forward FFT or an
65
inverse FFT.  The number of bits processed, kept, and maintained by this
66
FFT are also configurable.  Even the number of bits used for the twiddle
67
factors, or whether or not to bit reverse the outputs, are all configurable
68
parts to this FFT core.
69
 
70
These features make the Double Clocked FFT very different and unique among the
71
other cores available on opencores.com.
72
 
73
For those who wish to get started right away, please download the package,
74
change into the {\tt sw} directory and run {\tt make}.  There is no need to
75
run a configure script, {\tt fftgen} is completely portable C++.  Then, once
76
built, go ahead and run {\tt fftgen} without any arguments.  This will cause
77
{\tt fftgen} to print a usage statement to the screen.  Review the usage
78
statement, and run {\tt fftgen} a second time with the arguments you need.
79
 
80
 
81
\chapter{Generation}
82
 
83
Creating a double clocked FFT core is as simple as running the program
84
{\tt fftgen}.  The program will then create a series of Verilog files, as
85
well as {\tt .hex} files suitable for use with a \textdollar readmemh, and
86
place them into an {\tt ./fft-core/} directory that {\tt fftgen} will create.
87
Creating the core you want takes a touch of configuring.
88
Therefore, the following lists the arguments that can be given to
89
{\tt fftgen} to adjust the core that it builds:
90
\begin{itemize}
91
\item[\hbox{-f size}]
92
        This specifies the size of the FFT core that {\tt fftgen} will build.
93
        The size must be a power of two.  The transform is given, within a
94
        scale factor, to,
95
        \begin{eqnarray*}
96
        X\left[k\right] &=& \sum_{n=0}^{N-1} x\left[n\right]
97
                e^{-j2\pi \frac{k}{N}n}
98
        \end{eqnarray*}
99
 
100
\item[\hbox{-1}]
101
        This specifies that the FFT will be an inverse FFT.  Specifically,
102
        it will calculate,
103
        \begin{eqnarray*}
104
        x\left[n\right] &=& \sum_{k=0}^{N-1} X\left[k\right] e^{j2\pi \frac{k}{N}n}
105
        \end{eqnarray*}
106
\item[\hbox{-0}]
107
        This specifies building a forward FFT.  However, since this is the
108
        default, this option never necessary.
109
\item[\hbox{-s}]
110
        This causes the core to skip the final bit reversal stage.  The
111
        outputs of the FFT will then come out in bit reversed order.
112
 
113
        This option is useful in those cases where someone wishes to
114
        multiply the coefficients coming out of an FFT by some product,
115
        and then to inverse FFT the results.  If the coefficients are also
116
        applied in bit--reversed order, then both the FFT and IFFT may
117
        skip their bit reversals.
118 22 dgisselq
 
119
        Be aware, however, doing this requires the bit reversed forward
120
        transform be followed by a bitreversed decimation in time approach
121
        to the inverse transform.  This software does not (yet) provide that
122
        capability.  As such, the utility just isn't there yet.
123 10 dgisselq
\item[\hbox{-S}]
124
        Include the final bit reversal stage.  As this is also the default,
125
        specifying the option should not be necessary.
126
\item[\hbox{-d DIR}]
127
        Specifies the DIRectory to place the produced Verilog files.  By
128
        default, this will be in the `./fft-core/' directory, but it can
129
        be moved to any other directory as necessary.
130
\item[\hbox{-n bits}] Sets the number of input bits per sample.  Given this
131
        setting, each of the two samples clocked in at every clock cycle
132
        will have this many bits for their real portion, and again this many
133
        bits for their imaginary portion.  Thus, the data input to the
134
        FFT will be four times this many bits per clock.
135
\item[\hbox{-m bits}] This sets the maximum bit width of the output.
136
        By default, the FFT will gain bits as they accumulate within
137
        the FFT.  Bits are accumulated at roughly one bit for every two stages.
138
        However, if this value is set, bits are only accumulated up to this
139
        maximum width.  After this width, further accumulations are truncated.
140
\item[\hbox{-c bits}] The number of bits in each twiddle coefficient is given
141
        by the number of bits input to that stage plus this extra number of
142
        bits per coefficient.  By increasing the number of bits per coefficient
143
        above that of the input samples, truncation error is kept to the
144
        original error found within the original samples.
145 22 dgisselq
\item[\hbox{-x bits}] Internally accumulated roundoff error can be a difficult
146
        problem to solve.  By using this option, you guarantee that the FFT
147
        runs with an additional {\tt bits} bits, and only truncates down to
148
        the necessary width at the end in order to minimize rounding
149
        errors along the way.
150
\item[\hbox{-p nmpy}] This sets the number of hardware multiplies that the FFT
151
        will consume.  By default, the FFT does not use any hardware multiplies.
152
        However, this can be expensive on the rest of the logic used by the
153
        device.  You can avoid this problem by allowing the FFT to use
154
        hardware multiplies using this option.  By default, the multiplies will
155
        be used in the latter stages, so that they will be applied where
156
        the bit width is the greatest.
157 10 dgisselq
\end{itemize}
158
 
159
\chapter{Architecture}
160
 
161
As a component of another system the structure of this system is a simple
162
black box such as the one shown in Fig.~\ref{fig:black-box}.
163
\begin{figure}\begin{center}
164
\begin{pspicture}(-2.1in,0)(2.1in,2in)
165
% \rput(0,0){\psframe(-2.1in,0)(2.1in,2in)}
166
\rput(0,0){\rput(0,0){\psframe[linewidth=2\pslinewidth](-0.75in,0)(0.75in,2in)}
167
        \rput(0,1in){(I)FFT Core}
168
        \rput[r](-1.6in,1.8in){\tt i\_clk}
169
                \rput(-1.5in,1.8in){\psline{->}(0,0)(0.7in,0)}
170
        \rput[r](-1.6in,1.5in){\tt i\_rst}
171
                \rput(-1.5in,1.5in){\psline{->}(0,0)(0.7in,0)}
172
        \rput[r](-1.6in,1.2in){\tt i\_ce}
173
                \rput(-1.5in,1.2in){\psline{->}(0,0)(0.7in,0)}
174
        \rput[r](-1.6in,0.6in){\tt i\_left}
175
                \rput(-1.5in,0.6in){\psline{->}(0,0)(0.7in,0)}
176
                \rput(-1.15in,0.6in){\psline(-0.05in,-0.05in)(0.05in,0.05in)}
177
                \rput[br](-1.2in,0.6in){\scalebox{0.75}{$2N_i$}}
178
        \rput[r](-1.6in,0.3in){\tt i\_right}
179
                \rput(-1.5in,0.3in){\psline{->}(0,0)(0.7in,0)}
180
                \rput(-1.15in,0.3in){\psline(-0.05in,-0.05in)(0.05in,0.05in)}
181
                \rput[br](-1.2in,0.3in){\scalebox{0.75}{$2N_i$}}
182
        %
183
        \rput[l](1.6in,1.2in){\tt o\_sync}
184
                \rput(0.8in,1.2in){\psline{->}(0,0)(0.7in,0)}
185
        \rput[l](1.6in,0.6in){\tt o\_left}
186
                \rput(0.8in,0.6in){\psline{->}(0,0)(0.7in,0)}
187
                \rput(1.15in,0.6in){\psline(-0.05in,-0.05in)(0.05in,0.05in)}
188
                \rput[br](1.1in,0.6in){\scalebox{0.75}{$2N_o$}}
189
        \rput[l](1.6in,0.3in){\tt o\_right}
190
                \rput(0.8in,0.3in){\psline{->}(0,0)(0.7in,0)}
191
                \rput(1.15in,0.3in){\psline(-0.05in,-0.05in)(0.05in,0.05in)}
192
                \rput[br](1.1in,0.3in){\scalebox{0.75}{$2N_o$}}
193
        }
194
\end{pspicture}
195
\caption{(I)FFT Black Box Diagram}\label{fig:black-box}
196
\end{center}\end{figure}
197
The interface
198
is simple: strobe the reset line, and every clock thereafter set the clock
199
enable line when data is valid on the left and right input ports.  Likewise
200
for the outputs, when the {\tt o\_sync} line goes high the first data sample
201
is available.  Ever after that, one data sample will be available every clock
202
cycle that the {\tt i\_ce} line is high.
203
 
204
Internal to the FFT, things are a touch more complex.  Fig.~\ref{fig:white-box}
205
\begin{figure}\begin{center}
206
\begin{pspicture}(1.3in,-0.5in)(4.7in,5in)
207
        % \rput(0,0){\psframe(0,-0.5in)(\textwidth,5.25in)}
208 11 dgisselq
        \rput(0,0){\psframe[linewidth=2\pslinewidth](1.3in,-0.25in)(4.7in,5in)}
209 10 dgisselq
        \rput(0,5in){%
210
                \rput[r](1.95in,0.125in){\tiny\tt i\_left}
211
                \rput[l](4.05in,0.125in){\tiny\tt i\_right}
212
                \rput(2.0in,0){\psline{->}(0,0.25in)(0,0.0in)}
213
                \rput(4.0in,0){\psline{->}(0,0.25in)(0,0.0in)}
214
        }
215
        \rput(2in,0){%
216
                \rput(0,4.25in){\psframe(-0.5in,0)(0.5in,0.5in)%
217
                        \rput[r](-0.05in,0.675in){\tiny Left}
218
                        \rput(0.0in,0){\psline{->}(0,0.75in)(0,0.5in)}
219
                        \rput(0,0.25in){Evens, $N$}
220
                        \rput[r](-0.35in,-0.125in){\tiny Sync}
221
                        \rput[l](0.35in,-0.125in){\tiny Data}
222
                        \rput(-0.3in,0){\psline{->}(0,0)(0,-0.25in)}
223
                        \rput(0.3in,0){\psline{->}(0,0)(0,-0.25in)}}
224
                \rput(0,3.5in){\psframe(-0.5in,0)(0.5in,0.5in)%
225
                        \rput(0,0.25in){Evens, $N/2$}
226
                        \rput[r](-0.35in,-0.125in){\tiny Sync}
227
                        \rput[l](0.35in,-0.125in){\tiny Data}
228
                        \rput(-0.3in,0){\psline{->}(0,0)(0,-0.25in)}
229
                        \rput( 0.3in,0){\psline{->}(0,0)(0,-0.25in)}}
230
                % \rput(0,3in){\psframe(-0.5in,0)(0.5in,0.5in)%
231
                        % \rput(0,0.25in){Evens, $N$}}
232
                \rput(0,2.25in){\psframe(-0.5in,0)(0.5in,0.5in)%
233
                        \rput(0,0.25in){Evens, $8$}
234
                        \rput[r](-0.35in,-0.125in){\tiny Sync}
235
                        \rput[l](0.35in,-0.125in){\tiny Data}
236
                        \rput[r](-0.35in,0.675in){\tiny Sync}
237
                        \rput[l](0.35in,0.675in){\tiny Data}
238
                        \rput(-0.3in,0.9in){$\vdots$}
239
                        \rput( 0.3in,0.9in){$\vdots$}
240
                        \rput(-0.3in,0.75in){\psline{->}(0,0)(0,-0.25in)}
241
                        \rput( 0.3in,0.75in){\psline{->}(0,0)(0,-0.25in)}
242
                        \rput(-0.3in,0){\psline{->}(0,0)(0,-0.25in)}
243
                        \rput(0.3in,0){\psline{->}(0,0)(0,-0.25in)}}
244
                \rput(0,1.5in){\psframe(-0.5in,0)(0.5in,0.5in)%
245
                        \rput(0,0.25in){Qtrstage (Even)}
246
                        \rput[r](-0.35in,-0.125in){\tiny Sync}
247
                        \rput[lb](0.6in,-0.10in){\tiny Data}
248
                        \rput(-0.3in,0){\psline{->}(0,0)(0,-0.5in)(0.8in,-0.5in)}
249
                        \rput(0.3in,0){\psline{->}(0,0)(0,-0.125in)(0.4in,-0.125in)(0.4in,-0.25in)}}
250
                % \rput(0,0.75in){\psframe(-0.5in,0)(0.5in,0.5in)%
251
                        % \rput(0,0.25in){dblstage}}
252
                % \rput(0,0in){\psframe(-0.5in,0)(0.5in,0.5in)%
253
                        % \rput(0,0.25in){Bit Reversal}}
254
        }
255
        \rput(4in,0){%
256
                \rput(0,4.25in){\psframe(-0.5in,0)(0.5in,0.5in)%
257
                        \rput[l](0.05in,0.675in){\tiny Right}
258
                        \rput(0.0in,0){\psline{->}(0,0.75in)(0,0.5in)}
259
                        \rput(0,0.25in){Odds, $N$}
260
                        \rput[l](0.35in,-0.125in){\tiny Sync}
261
                        \rput[r](-0.35in,-0.125in){\tiny Data}
262
                        \rput(-0.3in,0){\psline{->}(0,0)(0,-0.25in)}
263
                        \rput(0.3in,0){\psline{->}(0,0)(0,-0.25in)}}
264
                \rput(0,3.5in){\psframe(-0.5in,0)(0.5in,0.5in)%
265
                        \rput(0,0.25in){Odds, $N/2$}
266
                        \rput[l](0.35in,-0.125in){\tiny Sync}
267
                        \rput[r](-0.35in,-0.125in){\tiny Data}
268
                        \rput(-0.3in,0){\psline{->}(0,0)(0,-0.25in)}
269
                        \rput(0.3in,0){\psline{->}(0,0)(0,-0.25in)}}
270
                % \rput(0,3in){\psframe(-0.5in,0)(0.5in,0.5in)%
271
                        % \rput(0,0.25in){Evens, $N$}}
272
                \rput(0,2.25in){\psframe(-0.5in,0)(0.5in,0.5in)%
273
                        \rput(0,0.25in){Odds, $8$}
274
                        \rput[l](0.35in,0.675in){\tiny Sync}
275
                        \rput[r](-0.35in,0.675in){\tiny Data}
276
                        \rput(-0.3in,0.9in){$\vdots$}
277
                        \rput( 0.3in,0.9in){$\vdots$}
278
                        \rput[l](0.35in,-0.125in){\tiny Sync}
279
                        \rput[r](-0.35in,-0.125in){\tiny Data}
280
                        \rput(-0.3in,0.75in){\psline{->}(0,0)(0,-0.25in)}
281
                        \rput(0.3in,0.75in){\psline{->}(0,0)(0,-0.25in)}
282
                        \rput(-0.3in,0){\psline{->}(0,0)(0,-0.25in)}
283
                        \rput(0.3in,0){\psline{->}(0,0)(0,-0.25in)}}
284
                \rput(0,1.5in){\psframe(-0.5in,0)(0.5in,0.5in)%
285
                        \rput(0,0.25in){Qtrstage (Odd)}
286
                        \rput[rb](-0.6in,-0.10in){\tiny Data}
287
                        \rput(0.3in,0){\psline{->}(0,0)(0,-0.25in)}
288
                                \rput[t](0.3in,-0.3in){\tiny NC}
289
                        \rput(-0.3in,0){\psline{->}(0,0)(0,-0.125in)(-0.4in,-0.125in)(-0.4in,-0.25in)}
290
                        }
291
        }
292
        \rput(3in,0.75in){\psframe(-0.5in,0)(0.5in,0.5in)%
293
                \rput(0,0.25in){Double Stage}
294
                        \rput[r](-0.35in,-0.125in){\tiny Sync}
295
                        \rput[l](0.35in,-0.125in){\tiny Right}
296
                        \rput[r](0.15in,-0.125in){\tiny Left}
297
                \rput(-0.3in,0){\psline{->}(0,0)(0,-0.25in)}
298
                \rput(0.2in,0){\psline{->}(0,0)(0,-0.25in)}
299
                \rput(0.3in,0){\psline{->}(0,0)(0,-0.25in)}}
300
        \rput(3in,0in){\psframe(-0.5in,0)(0.5in,0.5in)%
301
                \rput(0,0.25in){Bit Reversal}
302
                        \rput[r](-0.35in,-0.125in){\tiny Sync}
303
                        \rput[l](0.35in,-0.125in){\tiny Right}
304
                        \rput[r](0.15in,-0.125in){\tiny Left}
305
                \rput(-0.3in,0){\psline{->}(0,0)(0,-0.25in)}
306
                \rput(0.2in,0){\psline{->}(0,0)(0,-0.25in)}
307
                \rput(0.3in,0){\psline{->}(0,0)(0,-0.25in)}}
308
        \rput(3in,-0.25in){\rput[r](-0.35in,-0.125in){\tiny\tt o\_sync}
309
                        \rput[l](0.35in,-0.125in){\tiny\tt o\_right}
310
                        \rput[r](0.15in,-0.125in){\tiny\tt o\_left}
311
                \rput(-0.3in,0){\psline{->}(0,0)(0,-0.25in)}
312
                \rput(0.2in,0){\psline{->}(0,0)(0,-0.25in)}
313
                \rput(0.3in,0){\psline{->}(0,0)(0,-0.25in)}}
314
\end{pspicture}
315
\caption{Internal FFT Structure}\label{fig:white-box}
316
\end{center}\end{figure}
317
attempts to show some of this structure.  As you can see from the figure, the
318
FFT itself is composed of a series of stages.  These stages are split from the
319
beginning into an even stage and an odd stage.  Further, they are numbered
320
according to the size of the FFT they represent.  Therefore the first stage
321
is numbered $N$ and represents the first stage of an $N$ point FFT.  The
322
second stage is labeled $N/2$, then $N/$, and so on down to $N=8$.  The
323
four sample stage and the two sample stages are different, however.  These
324
two stages, representing three blocks on Fig.~\ref{fig:white-box}, can be
325
accomplished without any multiplies.  Therefore they have been accomplished
326
separately.  Likewise all of the stages, save the double stage at the bottom,
327
operate on one data sample per clock.  Only the last stage, prior to the
328
bit reversal stage, takes two data samples per clock as input, and outputs two
329
data samples per clock.  Finally, the bit reversal stage acts as the last
330
piece of the structure.
331
 
332
Internal to each of the FFT stages is a butterfly and a complex multiply,
333
as shown in Fig.~\ref{fig:fftstage}.
334
\begin{figure}\begin{center}
335 11 dgisselq
\begin{pspicture}(-0.25in,-1.8in)(3.25in,4.25in)
336
        % \rput(0,0){\psframe(0in,-2in)(3in,4.25in)}
337
        \rput(0,0){\psframe[linewidth=2\pslinewidth](-0.25in,-1.55in)(3.25in,4.0in)}
338
        \rput[r](1.625in,4.125in){\tt i\_data}
339
        \rput(1.675in,3.75in){\psline{->}(0,0.5in)(0,0in)%
340
                        \psline{->}(0,0)(-0.2in,-0.25in)%
341
                        \psarc{->}{0.15in}{200}{340}}
342 10 dgisselq
        \rput(0,2.75in){\rput(0,0){\psframe(0,0)(1.3in,0.25in)}
343
                        \rput(0,0){\psframe(0.1in,0)(0.2in,0.25in)}
344
                        \rput(0,0){\psframe(0.3in,0)(0.4in,0.25in)}
345
                        \rput(0,0){\psframe(0.5in,0)(0.6in,0.25in)}
346
                        \rput(0,0){\psframe(0.7in,0)(0.8in,0.25in)}
347
                        \rput(0,0){\psframe(0.9in,0)(1.0in,0.25in)}
348
                        \rput(0,0){\psframe(1.1in,0)(1.2in,0.25in)}
349
                        \rput(0,0){\psline{-}(0.7in,-0.05in)(1.1in,-0.25in)}
350 11 dgisselq
                        \rput(0,0){\psline{<-}(0.7in,0.3in)(1.5in,0.5in)(1.5in,0.75in)}}
351 10 dgisselq
        \rput(1.85in,2.75in){\psline(0,0.75in)(0,-0.25in)}
352 11 dgisselq
        \rput(0.6in,0.25in){\rput(0,0){\psframe[linewidth=2\pslinewidth](0,0)(2in,2.0in)}
353 10 dgisselq
                \rput(0.50in,2in){\psline{->}(0,0.25in)(0,0in)}
354
                \rput(1.25in,2in){\psline{->}(0,0.25in)(0,0in)}
355
                \rput(1.75in,2in){\psline{->}(0,0.25in)(0,0in)}
356
                \rput(0.5in,0){%
357
                        \rput(0in,0){\psline{->}(0,2.0in)(0,1.1in)}
358
                        \rput(0in,0){\psline{->}(0,1.75in)(0.65in,1.1in)}
359
                        \rput(-0.1in,1.1in){$+$}
360
                        \rput(0in,1.0in){$\bigoplus$}
361
                        \rput(0in,0){\psline{->}(0,0.9in)(0,0.75in)}
362
                        \rput(0in,0.5in){\psframe(-0.45in,-0.25in)(0.45in,0.25in)}
363
                        \rput(0in,0.5in){\parbox{0.8in}{Delay, and\\shift by $C-2$}}
364
                        \rput(0in,0){\psline{->}(0,0.25in)(0,0.0in)}}
365
                \rput(1.25in,0){%
366
                        \rput(0in,0){\psline{->}(0,2.0in)(0,1.1in)}
367
                        \rput(0in,0){\psline{->}(0,1.75in)(-0.65in,1.1in)}
368
                        \rput(0.1in,1.1in){$-$}
369
                        \rput(0in,1in){$\bigoplus$}
370
                        \rput(0in,0){\psline{->}(0,0.9in)(0,0.6in)}
371
                        \rput(0in,0.5in){$\bigotimes$}
372
                        \rput(0in,0){\psline{->}(0,0.4in)(0,0.0in)}}
373
                \rput(1.75in,0){%
374
                        \rput(0,0){\psline{->}(0,2.0in)(0,0.5in)(-0.4in,0.5in)}}
375 11 dgisselq
                \rput(0.50in,-0.25in){\psline{->}(0,0.25in)(0,-1.05in)}
376
                \rput(1.25in,-0.25in){\psline{-}(0,0.25in)(0,0in)}}
377
        \rput*[l](2.0in,0.5in){DIF Butterfly}
378
        \rput*[lb](1.95in,2.5in){Coefficient memory}
379 10 dgisselq
        % \rput(0,0){\psframe(1.3in,-0.25in)(4.7in,5in)}
380 11 dgisselq
        \rput(1.7in,-0.5in){\rput(0,0){\psframe(0,0)(1.3in,0.25in)}
381 10 dgisselq
                        \rput(0,0){\psframe(0.1in,0)(0.2in,0.25in)}
382
                        \rput(0,0){\psframe(0.3in,0)(0.4in,0.25in)}
383
                        \rput(0,0){\psframe(0.5in,0)(0.6in,0.25in)}
384
                        \rput(0,0){\psframe(0.7in,0)(0.8in,0.25in)}
385
                        \rput(0,0){\psframe(0.9in,0)(1.0in,0.25in)}
386
                        \rput(0,0){\psframe(1.1in,0)(1.2in,0.25in)}
387 11 dgisselq
                        \rput(0,0){\psline{<-}(0.7in,0.30in)(0.15in,0.5in)}
388
                        \rput(0,0){\psline{->}(0.7in,-0.05in)(-0.2in,-0.3in)(-0.2in,-0.55in)}}
389
        \rput(1.3in,-1.3in){\psline{->}(-0.2in,0.25in)(0,0)}
390
        \rput(1.3in,-1.3in){\psarcn{->}{0.15in}{150}{30}}
391
        \rput(1.3in,-1.3in){\psline{->}(0,0)(0,-0.5in)}
392
        \rput[l](1.35in,-1.675in){\tt o\_data}
393 10 dgisselq
\end{pspicture}
394 11 dgisselq
\caption{A Single FFT Stage, with Butterfly}\label{fig:fftstage}
395 10 dgisselq
\end{center}\end{figure}
396
These FFT stages are really no different than any other decimation in
397
frequency FFT, save only that the coefficients are alternated between the
398
two stages.  That is, the even stages get all the even coefficients, and
399
the odd stages get all of the odd coefficients.
400
Internally, each stage spends the first $N/4$ clocks storing its inputs
401
into memory, and then the next $N/4$ clocks pairing a stored input with
402
a single external input, so that both values become inputs to the butterfly.
403
Likewise, the butterfly coefficient is read from a small ROM table.
404
 
405
One trick to making the FFT stage work successfully is synchronization.  Since
406 22 dgisselq
the shift and add multiplies create a delay of (roughly) one clock cycle per
407
bit of input, there is a significant pipeline delay from the input to the
408
output of the butterfly routine.  To match this delay, the FFT stage places a
409 10 dgisselq
synchronization pulse into the butterfly.  When this synchronization pulse
410
comes out of the butterfly, the values of the butterfly then match the
411
first sample out of the stage.  The next synchronization problem comes from
412
the fact that the butterflies operate on two samples at a time, whereas the
413
FFT stage operates on a single sample at a time.  This means that half the
414
time the butterfly output will be invalid.  To keep things aligned, and to
415
avoid the invalid data half, a counter is started by the synchronization pulse
416
coming out of the butterfly in order to keep track.  Using this counter and
417
once the butterfly produces the first sync pulse, the next $N/4$ clock cycles
418
will produce valid butterfly outputs.  For these clock cycles, the left or
419
first output is sent immediately to the next FFT stage, whereas the right
420
or second output is saved into memory.  Once these cycles are complete, the
421
butterfly outputs will be invalid for the next $N/4$ clock cycles.  During
422
these invalid clock cycles, the FFT stage outputs data that had been stored
423
in memory.  In this fashion, data is always valid coming out of each FFT
424
stage once the initial synchronization pulse goes high.
425
 
426
The complex multiply itself, formed internal to the butterfly routine, is
427
formed from three very simple shift and add multiplies, whose output is
428 22 dgisselq
then transformed into a single complex output, although there is a command
429
line option to use hardware multiplies instead.  To avoid overflow, the
430 10 dgisselq
complex coefficients, $z_n$, for these multiplies are given by,
431
\begin{eqnarray}
432
z_n &=& c_n + js_n,\mbox{ where} \\
433
c_n &=& \left\lfloor 2^{C-2}\cos\left(2\pi \frac{n}{N}\right)+\frac{1}{2}\right\rfloor,\\
434
s_n &=& \left\lfloor 2^{C-2}\sin\left(2\pi \frac{n}{N}\right)+\frac{1}{2}\right\rfloor\mbox{, and}
435
\end{eqnarray}
436
$C$ is the number of bits allocated to the coefficient.
437
 
438
For those wishing to understand this operation further and in more depth, I
439
would commend them to the literature on how a decimation in frequency FFT is
440
constructed.
441
 
442
\chapter{Operation}
443
 
444
The core is actually really easy to use:
445
\begin{enumerate}
446
        \item Provide a system clock to the core every clock cycle.
447
        \item Set the {\tt i\_rst} line high for at least one clock cycle
448
                before you intend to use the core.
449
        \item From the time of reset until the first sample pair is available
450
                on the IO ports, {\tt i\_rst} may be kept low, but the clock
451
                enable line {\tt i\_ce} must also be kept low.
452
        \item On the clock containing the first sample pair, {\tt i\_left}
453
                and {\tt i\_right}, set {\tt i\_ce} high.
454
        \item Ever after, any time a valid pair of samples is available to
455
                the input of the FFT, place the first sample of the pair
456
                on the {\tt i\_left} line, the second on the {\tt i\_right}
457
                line, and set {\tt i\_ce} high.
458
        \item At the first valid output, the FFT core will set {\tt o\_sync}
459
                line high in addition to the output values {\tt o\_left}
460
                (the first of two), and {\tt o\_right} (the second of the two).
461
        \item Ever after, whenever {\tt i\_ce} is high, the FFT core will clock
462 11 dgisselq
                two samples in and two samples out.  On any valid first
463 10 dgisselq
                pair of samples coming out of the transform,
464
                {\tt o\_sync} will be high.  Otherwise {\tt o\_sync} will
465
                remain low.
466
\end{enumerate}
467
 
468
There are no special modes or states associated with this core.  If you wish
469
it to stop or pause, just turn off {\tt i\_ce}.  If you wish to flush the
470
core, just send zeros into the core.
471
 
472
\chapter{Registers}
473
 
474
Once built, the FFT routine has no capability for runtime configuration
475
or reconfiguration.  Therefore, this implementation maintains no user
476
configurable or readable registers.
477
 
478
This is a great advantage in many ways, simply because it greatly simplifies
479
the interface over other cores that are available out there.
480
 
481
\chapter{Clocks}
482
 
483
The FFT routines built by this core use one clock only.  The speed of this
484
clock will depend upon the speed your hardware is capable of.  If your data
485
rate is slower than your clock speed, just hold off on the {\tt i\_ce}
486
line as necessary so that every clock with the {\tt i\_ce} line high is a
487
valid sample.
488
 
489
\chapter{IO Ports}
490
 
491
The FFT core presents a small set of IO ports to its external interface.
492
These ports are listed in Table.~\ref{tbl:ioports}.
493
\begin{table}[htbp]
494
\begin{center}
495
\begin{portlist}
496
i\_clk & 1 & Input & The global clock driving the FFT. \\\hline
497
i\_rst & 1 & Input & An active high synchronous reset.\\\hline
498
i\_ce & 1 & Input & Clock Enable.  Set this high to clock data in and
499
                out.\\\hline
500
i\_left & $2N_i$ & Input & The first of two input complex input samples.  Bits
501 12 dgisselq
                [$\left(2N_i-1\right)$:$N_i$] of this value are the real
502
                portion, whereas bits [$\left(N_i-1\right)$:0] represent the
503
                imaginary portion.  Both portions are in signed twos complement
504
                integer format.  The number of bits, $N_i$, is configurable.
505 10 dgisselq
                \\\hline
506
i\_right & $2N_i$ & Input & The second of two input complex input samples.
507
                The format is the same as {\tt i\_left} above.\\\hline
508
o\_left & $2N_o$ & Output & The first of two input complex output samples.
509
                The format is the same, save only that $N_o$ bits are
510
                used for each twos complement portion instead of $N_i$.\\\hline
511
o\_right & $2N_o$ & Output & The second of two input complex output samples.
512
                The format is the same as for {\tt o\_left} above.\\\hline
513
o\_sync & 1 & Output & Signals the first output sample pair of any transform,
514
                zero otherwise.
515
                \\\hline
516
\end{portlist}
517
\caption{List of IO ports}\label{tbl:ioports}
518
\end{center}\end{table}
519
% Appendices
520
% Index
521
\end{document}
522
 
523
 

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.