Parallel implementation for digital infinite impulse response filter

Information

  • Patent Application
  • 20020049799
  • Publication Number
    20020049799
  • Date Filed
    October 10, 2001
    22 years ago
  • Date Published
    April 25, 2002
    22 years ago
Abstract
An IIR filter implementation which provides equivalent results to prior art IIR filters, yet operates about twice as fast as the prior art IIR filters, or requires about half the gate count of the prior art IIR filters and reduced semiconductor area as compared to prior art IIR filters for equivalent speed of operation. An implementation of a high order IIR filter in accordance with one embodiment of the present invention involves the parallel structure of the second-order IIR filters, therefore the filter operates twice as fast as the prior art filter. In accordance with a second embodiment of the invention, low order filters of the same order are reused (used on a time-sharing basis), thereby requiring only a single IIR filter for each order utilized on a time sharing basis, thereby further reducing the number of gates and semiconductor area required.
Description


BACKGROUND OF THE INVENTION

[0001] 1. Field of the Invention


[0002] This invention relates generally to digital filters and, more particularly, to a novel implementation for an infinite impulse response (IIR) filter.


[0003] 2. Brief Description of the Prior Art


[0004] Digital filters are well known in the prior art. Such filters receive sampled digital signals and transmit a sampled waveform therethrough. The waveform transmitted by the digital filter is determined by coefficients operating on portions of the transmitted digital signal. A typical prior art digital filter has a plurality of serially connected delay components with outputs of each delay component transmitted both to the succeeding delay component and to a coefficient addition component, the coefficient addition component adding the output from the delay component applied thereto by a weighting factor derived from a transform function. The outputs of the coefficient addition components are applied to the output terminal of the digital filter to provide the filter output signal. Accordingly, an input signal, after an appropriate delay, is filtered according to the coefficient addition components with the resulting signal being applied to the digital filter output.


[0005] Digital filters are classified as infinite impulse response (IIR) filters and finite impulse response filters (FIR). The difference is that the transfer function of the IIR is in both the denominator and numerator whereas, for the FIR, the transfer function is in the numerator.


[0006] A typical prior art register level implementation for a second-order IIR filter is shown in FIG. 1 and operates in accordance with the equation: H(z)=1/(1+a1z−1+a2z−2), where H(z)=Y(z)/X(z) is the transfer function of the system and a1 and a2 are multiplication coefficients. The term z−1 represents a register unit (such as, for example, a D flip-flop) to store the result of the previous calculation and provides a delay.


[0007] With reference to FIG. 1, the major computation is due to the two multiplications, −a1y(n−1) and −a2y(n−2). With the help of coefficient encoding, known as canonic signed digits (CSD), the multiplications can be performed in shift and addition. For example, binary 0.011 (⅜) is equivalent to binary 0.1 (½) minus binary 0.001 (⅛), therefore multiplication of y(n−1) by binary 0.011 can be performed by one shift-right (SR) minus three shift-right of y(n−1). Also, nested multiplication (described in a Doctoral Thesis by B. P. Brandt entitled “Oversampled Analog-to-Digital Conversion”, Stanford University, Calif., 1991, the contents of which are incorporated herein by reference) can be used to reduce the round-off noise. The above example of multiplication by binary 0.011 (⅜) can be alternatively performed by subtracting y(n−1) by its two right-shift and then one right-shift of the residue, since (½)y(n−1) −(⅛)y(n−1)=(½)(y(n−1)−(¼)y(n−1)). The advantage of postponing the right-shift to the end is to reduce the round-off noise.


[0008] The coefficients a1 and a2 must be realized precisely and accurately for IIR filters in order to obtain a good frequency response without limit-cycle effect. The existing implementation using nested multiplication and interleaving is for the purpose of minimizing the quantization noise and to eliminate the limit-cycle effect. The following example illustrates the existing techniques using the transfer function equation set forth above.


[0009] Assume −a1=1+{fraction (1/512)}+{fraction (1/1024)} and −a2={fraction (1/16)}+{fraction (1/256)}, then the following four steps calculate −a1y(n−1)−a2y(n−2)=y(n) in accordance with the above transfer function equation:


[0010] Step 1: r1=y(n−1)+SR(y(n−1),1);


[0011] Step 2: r2=y(n−2)+SR(r1,1);


[0012] Step 3: r3=y(n−2)+SR(r2,4);


[0013] Step 4: r4=y(n−1)+SR(r3,4);


[0014] where SR=shift right of the first argument by the amount defined in the second argument, and r1, r2, r3 and r4 are the intermediate result, i.e., the partial summation.


[0015] Step 1 uses nested multiplication to calculate (1+½) for {fraction (1/512)}+{fraction (1/1024)} in −a1. Step 2 adds {fraction (1/256)} from −a2 to the result from step 1. Step 3 adds {fraction (1/16)} from −a2 to the result from step 2. Step 4 adds 1 from −a1 to the prior result (the result of step 3) and obtains the final result. It can be seen that the partial multiplication is performed interleavedly from the smallest coefficient between −a1 and −a2 to the largest coefficient. Also, nested multiplication is employed to reduce the quantization noise. It should be noted that the above described implementation operates in an inferior manner for high speed applications because of the data dependence of the intermediate result. In Synopsys synthesis, a long critical path is observed from the input to the output, which inevitably slows down the computation. For the simple coefficients a1 and a2 in the above example, it takes four addition cycles to obtain the final result. For the practical filter, it usually takes more than ten addition cycles to obtain the result, which limits this technique to high speed applications.



SUMMARY OF THE INVENTION

[0016] In accordance with the present invention, there is provided an IIR filter implementation which provides equivalent results to prior art IIR filters, yet operates at least twice as fast as prior art IIR filters, or requires about half the gate count (i.e., silicon area) of the prior art IIR filters for approximately equal speed of operation. A parallel implementation of a second-order IIR filter in accordance with a first embodiment of the invention operates faster than the conventional serial implementation of the same second-order IIR filter. In accordance with the second embodiment of the invention, a high order filter is implemented using a single lower order filter on a time sharing basis, thereby reducing the number of gates and semiconductor area required.







BRIEF DESCRIPTION OF THE DRAWING

[0017]
FIG. 1 is a block diagram of a typical prior art second order IIR filter;


[0018]
FIG. 2 is a block diagram of a parallel structure IIR filter in accordance with the present invention;


[0019]
FIG. 3 is a block diagram of an implementation of a high order (seventh order) IIR filter using one or more lower order IIR filters (three second order and one first order IIR filters for the seventh order filter) in accorance with the prior art;


[0020]
FIG. 4 is a block diagram showing an implementation of the IIR filter of FIG. 3 using a single second order IIR filter which is reused on a time-sharing basis preceded by a decoder in accordance with the second embodiment of the invention;


[0021]
FIG. 5 is a circuit diagram showing the use of the circuit of FIG. 2 in accordance with the present invention;.


[0022]
FIG. 6 is a comparison of the performance of the impulse response between the filter in accordance with the present invention and the prior art with the bottom plot showing the low frequency region from which the subject implementation is shown to be closer to ideal response;


[0023]
FIG. 7 shows the frequency response for a single tone using the filter in accordance with the present invention; and


[0024]
FIG. 8 shows the frequency response of a discrete multi-tone in accordance with the present invention.







DESCRIPTION OF THE PREFERRED EMBODIMENT

[0025] A parallel structure of the invention is shown in FIG. 2. In this embodiment, the adders from the top to the bottom on the left-most column bear different weights varying from {fraction (1/1024)} to 1 for the two-input pairs Wi1,Wi2, where i=0,1, . . . 5. Depending upon the actual filter coefficients, the two-input Wi1Wi2 is A times y(n−1) and y(n−2), respectively, with A taking values from {0,1, −1,½,−½}, as shown on the left-top of FIG. 2. For example, the coefficients −a1=1−¼+{fraction (1/16)}−{fraction (1/64)}+{fraction (1/512)}+{fraction (1/1024)} and −a2=1−{fraction (1/16)}+{fraction (1/64)}−{fraction (1/256)} corresponding to the following setting:


[0026] W01=y(n−1);


[0027] W02=zero;


[0028] W11=SR(y(n−1), 1);


[0029] W12=y(n−2);


[0030] W21=−y(n−1);


[0031] W22=−y(n−2);


[0032] W31=y(n−1);


[0033] W32=y(n−2)


[0034] W41=−y(n−1);


[0035] W42=zero;


[0036] W51=y(n−1)


[0037] W52=−y(n−2).


[0038] It takes four clock-cycles to obtain y(n) with the novel parallel scheme in accordance with the present invention, one clock-cycle for each column of adder as shown in FIG. 2, as compared to nine clock cycles in the prior art. Another advantage for the scheme of the present invention is that the number of clock-cycle required for computing y(n) is irrelevant to the coefficients, while the number of clock-cycle of the prior art is proportional to the complexity of the coefficients.


[0039] In addition to being much faster than the prior art, the parallel structure of FIG. 2 is also ideal for “programmable” coefficients. The hardware structure depicted in FIG. 2 can perform as different IIR filters, with inputs having different settings. This is particularly useful for high-order IIR filters.


[0040] Assuming implementation of a seventh-order IIR filter running at a clock rate of clk, this filter is comprised of three second-order and one first-order IIR filters as shown in FIG. 3. By using the scheme in accordance with the present invention, the filter can be run at a clock rate of four times clk. Therefore, the seventh-order filter is now implemented by only one second order filter preceded by a decoder as shown in FIG. 4. Within one clk, the decoder sequentially sets the values of the Wi1,Wi2, i=0, 1, . . . 5 to the four cascaded filter coefficients. Therefore, the seventh-order filter is implemented by a second order filter on a time sharing basis. A seventh-order filter is synthesized in accordance with the present invention with an area reduction of fifty percent. It should be understood that the seventh order filter can also be synthesized reusing a second order filter on a time sharing basis in the manner discussed with reference to FIG. 4 and one first order filter.


[0041] With reference to FIG. 5, there is shown the circuit of FIG. 4 with input to and output therefrom as well as the timing diagram therefor. The output y(n) is fed back to the input of eight cascaded D flip flops which are clocked in accordance with clk1 such that the signal y(n) is transferred from D flip flop to D flip flop for each clk1 signal. The y(n) signal is delayed by four clk1 signals whereupon it is fed back to the circuit of FIG. 2 as signal y(n−1) from the fourth of the cascaded D flip flops. Also, the signal is delayed by eight clk signals whereupon it is fed back to the circuit of FIG. 2 as signal y(n−2) from the eighth of the cascaded D flip flops. Meanwhile, the output D flip flop is clocked by clk2 which operates at one fourth the speed of clk1 to provide an output from the D flip flop at every fourth clk1 signal. In the first cycle of CLK1, the first 2nd-order IIR filtering in FIG. 3 takes place; in the second cycle of CLK1, the second 2nd-order IIR filtering takes place; in the third cycle of CLK1, the third 2nd-order IIR filtering takes place; in the fourth cycle of CLK1, the fourth 1st-order IIR filtering takes place. The output is sampled at the rising edge of CLK2, which is the end of the fourth cycle of CLK1, when the input has gone through all four of the lower-order filters (three second order and one first order). In this way, the circuit of FIG. 2 is reused and thereby reduces the amount of circuitry required to implement the high-order IIR filter.


[0042] Accordingly, in accordance with the present invention, a novel parallel structure for an IIR filter is provided which is at least twice as fast as the prior art due to the parallel structure. In addition, the parallel structure is ideal for programmable coefficients. Therefore, a high-order IIR filter can be implemented by reusing a low-order filter on a time sharing basis and, consequently save large amounts of semiconductor area on a semiconductor chip on which the filter is fabricated. Comparing the parallel implementation of the subject invention with the prior art for a seventh-order IIR filter, as an example, the gate count for the subject implementation is 5379 whereas the gate count for the prior art is 10707, thereby providing an approximately 50 percent saving in chip area.


[0043]
FIG. 6 is a comparison of the performance of the impulse response between the subject invention and a prior art implementation. The bottom plot shows the zoomed region in the low-frequency region, from which the implementation in accordance with the present invention can be seen to be closer to the ideal response, especially at the DC (frequencies close to zero) region.


[0044]
FIG. 7 is a graph of frequency response of a single tone. A signal-to-noise plus distortion ration (SNDR) of 97.1 dB is achieved. This value is adequately high for a 16-bit register length.


[0045]
FIG. 8 is a graph of the frequency response of a discrete multi-tone (DMT). It can be seen that the response shape is as expected.


[0046] Though the invention has been described with respect to a specific preferred embodiment thereof, many variations and modifications will immediately become apparent to those skilled in the art. It is therefore the intention that the appended claims be interpreted as broadly as possible in view of the prior art to include all such variations and modification.


Claims
  • 1. A method of implementing an n-th order IIR filter which comprises the steps of: providing an IIR filter of order less than n; and operating said IIR filter of order less than n on a time-sharing basis a plurality of times such that said plurality of times multiplied by the order of said IIR filter of order less than n is equal to or greater than n.
  • 2. The method of claim 1 wherein said plurality of times multiplied by said order is equal to n.
  • 3. The method of claim 1 further including providing a decoder coupled to said input terminal.
  • 4. The method of claim 2 further including a providing decoder coupled to said input terminal.
  • 5. An implementstion of an n-th order IIR filter which comprises: an IIR filter of order less than n; and means to operate said IIR filter of order less than n on a time-sharing basis a plurality of times such that said plurality of times multiplied by the order of said IIR filter of order less than n is equal to or greater than n.
  • 6. The implementation of claim 5 wherein said plurality of times multiplied by said order is equal to n.
  • 7. The implementation of claim 5 further including a decoder coupled to said input terminal.
  • 8. The implementation of claim 6 further including a decoder coupled to said input terminal.
Provisional Applications (1)
Number Date Country
60242454 Oct 2000 US