Design and Verification of Scalable, Re-usable 16-Point IFFT Core for DSP Engine

DOI : 10.17577/IJERTV9IS060926

Download Full-Text PDF Cite this Publication

Text Only Version

Design and Verification of Scalable, Re-usable 16-Point IFFT Core for DSP Engine

Hajeera Bee

VLSI Design and Embedded Systems (M.Tech) Bnm Institute of Technology,

Bangalore, India

Dr. Veena S Chakravarthi

CTO, Sensesemi Technologies, Research Head, Dept of Electronics and Communication

Bnm Institute of Technology Bangalore, India

Abstract Due to the advancements in the Digital Signal Processing applications, the magnitude of the intensity of both Fast Fourier Transform (FFT) and Inverse Fast Fourier Transform (IFFT) have also increased. FFT and IFFT are the primary blocks in building almost all the Digital Signal Processing Systems. They are said to be the counterparts, but tend to function in reverse mode. In order to reduce the mathematical operations, computation complexity, these Fourier Transforms are used, thereby providing the feasibility for the hardware implementation of the same. This paper proposes the design and verification of 16-Point Decimation-In-Time (DIT) Inverse FFT for both complex and floating point numbers. Experimental results show that the proposed 16-point IFFT architecture incorporating approximate Radix-2 Butterfly module achieves good efficiency and overall high precision results.

KeywordsFast Fourier Transform, Inverse Fast Fourier Transform, IEEE 754 Single Precision format.

  1. INTRODUCTION

    Inverse FFT is widely used Digital Signal Processing function with high computation complexity. Inverse Fast Fourier transforms (IFFT) performs the inverse of FFT, it converts a frequency domain function into time domain function. It primarily finds its applications in audio, video processing, filtering. Traditionally IFFT processors can be implemented on DSP or an ASIC. With the invention of FPGAs makes it possible to combine both the features of DSP and an ASIC for the implementation of IFFT processors. The significance of the IFFT and its functions are discussed [I].

    In this paper, the implementation of IFFT block utilizes the Decimation-In-Time (DIT) Radix-2 Butterfly unit, which has complex adders, subtractor and complex multipliers, all these are further integrated. Radix-2 Butterfly unit plays an evident role, which is also considered to be the heart of any FFT or IFFT processing algorithms [II]. Henceforth the working of Butterfly unit is predominant in the IFFT processor. The proposed work includes the implementation of 16-point IFFT for complex numbers as well as the floating point numbers, with their verification.

    1. General IFFT representation

      The basic principle behind the IFFT algorithm is to break down input sequence of length N into smaller sequences. Let x(k) be an N-point sequence , where N is raised to the power of 2. IDFT x(n) of an N-point sequence can be mathematically given as follows:

      ——-(1)

      where,

      X(k) =Frequency domain samples X(n)=Time domain samples N=FFT size

      K=0, 1, 2, , N-1

      The exponential term given in Equation (1) represents the twiddle factor required for IFFT computations.

    2. Proposed Solution

      In order to cater to the need for precision in a higher order IFFT block, the initial step to be taken is the bit reversal of the inputs (convert to IEEE 754 format) given to the IFFT block, followed by complex addition, complex multiplication and complex subtraction. Floating point numbers are already said to be in IEEE 754 format and doesnt need any conversion or change.

      The floating point number can be represented by taking significand which is scaled using exponent, base for scaling used in this paper is 2.

      Number = significand x base exponent ——-(2)

    3. Organization of the Paper

      Section II of the paper deals with the system Integration. It gives a brief introduction about the approach adopted in the design. Section III of the paper emphasizes on the implementation of proposed work. Section IV of the paper deals with the presentation of the obtained results. Section V of the paper illustrates the conclusion and the future scope of the proposed design.

  2. SYSTEM INTEGRATION

    The major operating block of IFFT block is a butterfly block. To design a 16-Point IFFT block we also need to design a 8-Point, 4-Point, 2-Point butterfly wherein 2-point is the basic block. All these sub blocks are integrated together. The basic Radix-2 butterfly unit is as shown in the Fig.1.

    Fig.1. Basic Butterfly of DIT IFFT.

    The basic radix-2 butterfly algorithm for Decimation-In-Time DIT-IFFT is shown in Fig. 1. The equations for the same can be noted as below,

    Cr + jCj = (Ar + jAj)+ (Br + jBj)——-(3)

    Dr + jDj = (Wr+Wi)(Ar + jAj)- (Br + jBj)——-(4)

    Ar, Aj, Br, Bj are the real and imaginary parts of the inputs a, b respectively. Also C and D are outputs with their real and imaginary parts as shown in Eqs 3 and 4.

    In Fig. 1 a and b indicate the complex input from preceding stage while C and D indicate the complex output of the present stage (or complex input to the subsequent stage). The twiddle factors WN are defined as the co-efficients which are used to compute results from the preceding stage and to get inputs to the next stages of IFFT algorithm.

    The only difference between the butterfly of FFT and IFFT is the position of the twiddle factor which can be seen from the Fig.1.

    The following aspects are considered in implementing the proposed design.

      • Bit reversal is performed at the input sequence so as to improve the speed of the computations.

      • It has the four stages, in each stage, complex addition, subtraction and multiplication are performed for complex values.

      • This design also has IEEE 754 single format floating point numbers, so the floating point add, subtract and multiplication are also required.

    Fig.3 RTL Schematic of 16-point IFFT

    Fig.3 RTL Schematic of 16-point IFFT

    The RTL schematic for 16-point IFFT for complex numbers is as shown below in Fig.3 and Fig.4.

    Fig.3. RTL Schematic of 16-point IFFT

  3. IMPLEMENTATION

    This section of the paper explains the algorithms used in the implementation of 16-Point IFFT taking account of all the stages required to design or build up an IFFT system. The 16- point IFFT architecture is shown in Fig.2.

    Fig.2. 16-point IFFT architecture.

    Fig.4. RTL Schematic of 16-point IFFT

    The design approach is such that, a 8-point IFFT block is initially constructed using the above mentioned sub modules. The 16 point IFFT block is structurally developed using the 8-point IFFT modules. The design is realized using Verilog and simulated using the XILINX ISim.

  4. RESULTS

    Fig.5 Inputs given to the IFFT block

    Fig.5 Inputs given to the IFFT block

    The inputs given to the IFFT block is depicted in Fig.5. The simulation results for the16-point IFFT is shown in Fig.6 The verification is done using Modelsim and the resultant values are shown in figures [7] and [8].

    Fig.5. Inputs given to the IFFT block

    Fig.6. Simulation results of 16-point IFFT

    The verification results for 16-point IFFT is as given in the figures below.

    Fig.7 Inputs given to IFFT block

    Fig.7 Inputs given to IFFT block

    Fig.7. Inputs given to IFFT block

    Fig.8. Verification results of 16-point IFFT

    The Inverse FFT is carried out for floating point numbers too. The inputs given to the block is depicted in figures [9] and [10].

    Fig.9. Floating point input values for 16-point IFFT

    Fig.10. Simulation results of 16-point floating numbers

    Te technology schematic of the proposed work is as shown below in the Fig. 11.

    Fig.11. Technology Schematic of 16-point IFFT

  5. CONCLUSION AND FUTURE SCOPE

This paper shows that the 16-point IFFT block for complex numbers as well as floating point numbers can be efficiently implemented with very good accuracy by making use of radix-2 butterfly architecture. The results have been extracted. The estimated area was found to be 61% and delay of 42.938ns. Since the design is made scalable and re-usable, the future scope of this work is to design for N-point IFFT and compare the computations for complex and floating point numbers, area and delay associated with it.

REFERENCES

[1] Dr.Uma B V, Harsha R Kamath, Mohith S, Sreekar V, Shravan Bhagirath, Area and Time Optimized Realization of 16 Point FFT and IFFT Blocks by using IEEE 754 Single Precision Complex Floating Point Adder and Multiplier, International Conference on Soft Computing Techniques and Implementations- (ICSCTI), Faridabad, India, Oct 8-10, 2015.

[2]

Abdelmohsen Ali and Walaa Hamouda, A multi-mode IFFT/FFT

processor for IEEE 802.11ac: design and implementation, Wireless Communications and Mobile Computing, 2015.

[6]

Chu Yu, A 128/512/1024/2048-Point Pipeline FFT/IFFT Architecture

for Mobile WiMax, IEEE 2nd Global Conference on Consumer Electronics (GCCE), 2013.

[3]

Konguvel Elango, Kannan Muniandi, Hardware Implementation of

[7]

Sabin Tandukar, Anupama Shree Dhamala, Wilson Lin, Steve C. Chiu,

FFT/IFFT Algorithms incorporating Efficient Computation Elements, Journal of Electrical Engineering & Technology, 2019.

Embedded Plant/Process Simulator: Design and System Integration for Scalable FFT/IFFT Computations, IEEE, 2018.

[4]

Anirban Ganguly, Anirban Chakraborty, Ayan Banerjee, A Highly

[8]

Avinash Kumar Singh, Ashutosh Nandi, Design of Radix-2 Butterfly

Accurate Current Mode Analog Implementation of Radix-2 FFT/IFFT Processor, Eighth International Symposium on Embedded Computing and System Design (ISED), 2018.

[9]

Structure using Vedic Multiplier and CLA on Xilinx, IEEE Conference on Emerging Devices and Smart Systems (ICEDSS), 2017.

Kasina Madhusudhana Rao ,.Ravi Tejesvi ,G. AnanthaRao, "Verilog

[5]

Yu-Wei Lin and Chen-Yi Lee, Design of an FFT/IFFT Processor for MIMO OFDM Systems, IEEE TRANSACTIONS ON CIRCUITS AND SYSTEMSI: REGULAR PAPERS, VOL. 54, NO. 4, April 2007.

[10]

Implementation of 32 Point FFT Using Radix-2 Algorithm on FPGA Technology", IOSR Journal of Electronics and Communication Engineering (IOSR-JECE),(2014), pp. 40-43.

IEEE Standard for Floating-Point Arithmetic, IEEE Std 754-2008,

Aug. 29, 2008, pp. 158.

Leave a Reply