SlideShare a Scribd company logo
IOSR Journal of Electronics and Communication Engineering (IOSR-JECE)
e-ISSN: 2278-2834,p-ISSN: 2278-8735. Volume 6, Issue 2 (May. –Jun. 2013), PP 51-55
www.iosrjournals.org
www.iosrjournals.org 51 | Page
Design of Adjustable Reconfigurable Wireless Single Core
CORDIC based Rake Receiver
Marianne M. Kamal
Renewable Energy Department, Arab Organization for Industrialization, Egypt
Abstract : In wireless communication system transmitted signals are subjected to multiple reflections,
diffractions and attenuation caused by obstacles such as buildings and hills, etc. At the receiver end, multiple
copies of the transmitted signal are received that arrive at clearly distinguishable time instants and are faded by
signal cancellation. Rake receiver is a technique to combine these so called multi-paths [2] by utilizing multiple
correlation receivers allocated to those delay positions on which the significant energy arrives which achieves a
significant improvement in the SNR of the output signal. This paper shows how the rake, including dispreading
and descrambling could be replaced by a receiver that can be implemented on a CORDIC based hardware
architecture. The performance in conjunction with the computational requirements of the receiver is widely
adjustable which is significantly better than that of the conventional rake receiver.
Keywords - Rake receiver, Multi-paths, CORDIC
I. INTRODUCTION
WCDMA offers variable spreading factor and multiple codes per user to enable features like high data
rates and multiple services for the same connections. To do so rake receiver architecture for W-CDMA should
be configurable such that the hardware is utilized optimally at varying requirements.
One of the main features of W-CDMA is bandwidth on demand (BOD) which means that it offers variable user
data rates. This is achieved by adopting variable spreading factors and multi-code connections for a user. More
information bits are transmitted if a lower spreading factor is used for the same chip rate and parallel channels
are offered by having multiple codes per user. So the receiver should be adjustable meaning to adjust the
receiver performance in a wide range depending on the channel impulse response [4].
The receiver computes the symbols (representing the users) by an array of CORDIC processors;
CORDIC (Coordinate Rotation DIgital Computer) is one of the efficient hardware algorithms for hardware
signal processing [3]. When the processing power needed exceeds that of the soft core processor, co-processor
elements can be added. It is possible to use the processor array for other tasks (in addition to symbol
computation) due to its design as a coprocessor element.
The implementation on FPGA has the advantage of reconfigurable computing. A lot of modern signal
processing applications require such a high computational power that only ASIC’s can fulfill the technical
demands. ASIC’s are inflexible, costly (development and debugging) and only economical for mass
productions. Due to the fact that even the most commonly used programmable devices (DSP) often lack the
required processing power, one tries to develop a solution that lays somewhere in between the two extremes; a
programmable processing and dedicated hardware, the effort in this area is summarized under the term
reconfigurable computing.
II. CORDIC RAKE RECEIVER
2.1 CORDIC Algorithm
A set of shift-add algorithms collectively known as CORDIC for computing a wide range of functions
including trigonometric, hyperbolic, linear and logarithmic functions [3]. Since the last two decades, the
application of CORDIC arithmetic for efficient implementation of signal processing algorithms continues to
receive wide attention because of its numerical stability, efficiency in evaluating trigonometric and hyperbolic
functions, hardware compactness and inherent pipelinability at the micro-level.
Compared to other approaches, CORDIC is a clear winner when a hardware multiplier is unavailable,
e.g. in a microcontroller, or when you want to save the gates required to implement one, e.g. in an FPGA. On
the other hand, when a hardware multiplier is available, e.g. in a DSP microprocessor, table-lookup methods and
good old-fashioned power series are generally faster than CORDIC. The CORDIC algorithm is used to compute
the sine and cosine values which are required to calculate the In-phase and Quadrature phase components of the
received signals of the RAKE receiver [3].
Design of Adjustable Reconfigurable Wireless Single Core CORDIC based Rake Receiver
www.iosrjournals.org 52 | Page
2.2 Architecture
In the proposed single correlator Fig.1, the spreading sequence is latched in a fixed register to eliminate
the need of multiple code generators running continuously as in conventional RAKE receiver [1]. A serial shift
buffer of length equal to that of sequence is used to hold the received chips. As a new chip is received the buffer
shifts and drops the oldest chip to accommodate the newest chip in the buffer. Multipath searcher detects the
multipath in the channel and provides the same to the code generator and maximal ratio combiner. Each chip of
the serial shift buffer is connected through a multiplier with the corresponding chip of the code latch. These
multipliers multiply the corresponding chips in the serial shift buffer and fixed register whenever multipath are
detected by the multipath searcher. Each multiplier output is buffered in its dedicated buffers and they are
integrated by the adder.
Figure1: Single Correlator CORDIC rake receiver
Maximal-Ratio Combining is the optimal form of diversity combining because it yields the maximum
achievable SNR. Multipath searcher passes the multipath information to the MRC. Maximal ratio combiner
(MRC) collects all the integration results of a sequence and its multipath to combine them for a bit decision. For
the Maximum Ratio Combining RAKE receiver, a simple alpha tracker is used since it requires a short time
window to form an estimate.
The RAKE receiver uses several baseband correlators to individually process several signal multipath
components. The In-phase (I) and Quadrature (Q) samples r(i) to each correlator are given by:
(1)
(2)
The spread-spectrum receiver then correlates these baseband signals with the PN code sequence used in
the transmitter. This gives the post correlation signal x(i) given by:
(3)
(4)
The correlator outputs are combined to achieve improved communications reliability and performance.
In a RAKE receiver, if the output from one correlator is corrupted by fading, the others may not be, and the
corrupted signal may be discounted through the weighting process. Impulse response measurements of the
multipath channel profile are executed through a matched filter to make a successful despreading (IIR filter).
The alpha tracker can be thought of as IIR low pass filter. The difference equation describing the alpha tracker
is:
Y(n) = (1-α) . X(n-1) + α . y(n-1) (5)
Design of Adjustable Reconfigurable Wireless Single Core CORDIC based Rake Receiver
www.iosrjournals.org 53 | Page
Impulse response measurements of the multipath channel profile are executed through a matched filter to make
a successful dispreading.
(6)
(7)
Where Xk(n) is the kth post correlation received sample for bit n. The real and imaginary parts of the RAKE
output, y(n), are given by the complex multiplication of the post correlation signal with the complex conjugate
of the channel estimate signal, at each of the K multipath delays.
(8)
(9)
(10)
2.3 Implementation
The algorithm can be implemented using Altera Nios II board. FPGA uses SRAM cells to store
configuration data. The NIOS II system built using SOPC builder tool [5].
2.3.1 Software implementation
The CORDIC algorithm is used to compute the sine and cosine values which are required to calculate
the In-phase and Quadrature phase components of the received signals of the RAKE receiver. The CORDIC
algorithm is developed as a custom instruction to the NIOS processor.
NIOS II processor custom instructions are custom logic blocks adjacent to the ALU in the CPU data path. With
custom instructions we can reduce a complex sequence of standard instructions to a single instruction
implemented in hardware. The custom instruction logic connects directly to the NIOS II processor ALU.
2.3.2 Hardware implementation
IIR filter can be implemented as hardware component since parallel processing is required for fast
computing the filter output. IIR filter for channel impulse response estimation. Alpha tracker for maximum ratio
combiner as shown in Fig. 2.
Figure2: Alpha tracker
2.3.3 Implementation steps for the CDMA RAKE receiver
i. Compute the (I) and (Q) components of inputs to each RAKE finger. For each chip symbol:
a. Compute the sine and cosine values of the delay spread angle.
b. Calculate the In-phase component by multiplying the transmitted spread spectrum signal with the
calculated cosine value.
c. Calculate the Quadrature phase component by multiplying the transmitted spread spectrum signal with the
calculated sine value.
ii. Calculate the Post correlation signal, for each bit:
a. De-spread the signal obtained from step i by multiplying it with the spreading sequence.
b. Integrate all the chips (number equal to spreading factor) into a single bit.
iii. Estimate the (I) and (Q) components of channel impulse response.
Design of Adjustable Reconfigurable Wireless Single Core CORDIC based Rake Receiver
www.iosrjournals.org 54 | Page
a. Use an IIR filter of order equal to the number of fingers.
b. The impulse response of the channel is given by the transfer function of the filter.
iv. Calculate the real and imaginary parts of the RAKE output
a. At each of the K multipath delays, perform complex multiplication of the post correlation signal with the
complex conjugate of the channel estimate signal.
b. Separate real and imaginary parts of the above multiplied result to get real and imaginary parts of the
RAKE output.
v. The RAKE output is given to a decision device to obtain the received bits. The decision device is a simple
Signum function which takes the real part of the RAKE output as input and gives the output bits.
III. RESULTS
In the 3G Standard the Chip rate = 64 chip / bit, Spreading factor = 16, I/Q data word size = 8 bits and
the clock = 15.36 MHZ. Digitized input samples are received from RF front end and converted to the form of
complex I & Q branches. The computation is done by using CORDIC algorithm, Fig.3, with I & Q word size is
8 bits. The serial buffer of length equals to the spreading factor in the UTMS standard spreading factor (SF) =
16. The code latch is also a serial buffer of length equals to 16. The code generator is implemented using linear
feedback shift register (LFSR). This block consists of 16 D-type Flip Flop and XOR gate
For the matched filter is the Cross correlation of the received signal with pilot bits (16 zero bits), the
impulse response of the matched filter- implemented as raised cosine filter- is shown Fig. 4. The bit error rate
was found to be 0.0018 and the received signal before and after filtering is shown in Fig. 5.
The alpha tracker filter was implemented as a low pass butterworth filter of first order, pass-band equals to 1.2
MHz. The coefficients are: a[0] = 1, a[1] = 1, b[0] =1 and b[1] = -1.
Figure3: CORDIC algorithm iteration
Figure.4: Impulse response of matched filter
Design of Adjustable Reconfigurable Wireless Single Core CORDIC based Rake Receiver
www.iosrjournals.org 55 | Page
Figure 5: Received signal
IV. CONCLUSION
W-CDMA has emerged as the most widely adopted 3G air interface. W-CDMA offers variable
spreading factor and multiple codes per user to enable features like high data rates and multiple services for the
same connection. To enable W-CDMA features, architectures for rake receiver should be configurable for
varying data rate requirement at a particular time and should support processing of multiple codes. It should
consume less power in order to be suitable for downlink purpose. The conventional rake receiver architecture
provides dedicated hardware for each multipath per code. Such a rigid architecture is not suitable for varying
requirements (of number of codes and multi-paths) in W-CDMA [2].
A single correlator RAKE receiver with MWH codes as the spreading codes has been introduced. The
presented single correlator RAKE receiver gives considerable better operation in comparison with the
conventional RAKE receiver in terms of circuit complexity, power consumption and BER performance.
REFERENCES
[1] M. Uzzafer, “Single Correlator Receiver for Wideband MultiPath Channel,” in Proc. IEEE 6th CAS Symp., Shanghai, vol. 2, June
2004, pp. 421-424.
[2] R. Price and P. E. Green, “A Communication Technique for Multipath Channels,” Proc. IRE, vol. 27, pp. 555-570, Mar. 1958.
[3] Ray Andraka, “A survey of CORDIC algorithms for FPGA based computers”, ACM 0-89791- 978-5/98/01, 1998.
[4] Tero Ojanperä, Ramjee Prasad, “Wideband CDMA for Third Generation Mobile Communications”, Norwood MA, USA, Artect
House Inc., 1998, 439 pp.
[5] “Introduction to the Altera SOPC Builder”, Altera Corporation, San Jose C.A., 2006.

More Related Content

PPTX
Design And Simulation of Modulation Schemes used for FPGA Based Software Defi...
PDF
FPGA Implementation of Optimized CIC Filter for Sample Rate Conversion in Sof...
PDF
Bm044394397
PDF
Transfer of ut information from fpga through ethernet interface
PDF
IEEE_Peer_Reviewed_Paper_1
PDF
High Speed and Area Efficient Booth Multiplier Using SQRT CSLA with Zero Find...
PDF
Design and implementation of Closed Loop Control of Three Phase Interleaved P...
PDF
Br4201458461
Design And Simulation of Modulation Schemes used for FPGA Based Software Defi...
FPGA Implementation of Optimized CIC Filter for Sample Rate Conversion in Sof...
Bm044394397
Transfer of ut information from fpga through ethernet interface
IEEE_Peer_Reviewed_Paper_1
High Speed and Area Efficient Booth Multiplier Using SQRT CSLA with Zero Find...
Design and implementation of Closed Loop Control of Three Phase Interleaved P...
Br4201458461

What's hot (19)

PDF
Jg3515961599
PDF
Il3614731475
PDF
Boosting the Performance of Nested Spatial Mapping with Unequal Modulation in...
PDF
40120140504012
PPTX
Matlab source codes section | Download MATLAB source code freerce-codes
PDF
Area Versus Speed Trade-off Analysis of a WiMAX Deinterleaver Circuit Design
PDF
IRJET- A Study on PRN Code Generation and Properties of C/A Code in GPS based...
DOCX
Ramya Project
PDF
vlsi projects using verilog code 2014-2015
DOCX
Vlsi titles
PDF
A study to Design and comparison of Full Adder using Various Techniques
PDF
Digital Implementation of Costas Loop with Carrier Recovery
PDF
Design and Implementation of an Embedded System for Software Defined Radio
PDF
IRJET-Securing Data in Cloud using Graphical Password Authentication and AES ...
PDF
An experimental overview on software defined optical transmission and sdngmpl...
PDF
FPGA Implementation of LDPC Encoder for Terrestrial Television
PDF
High Accuracy Distance Measurement for Bluetooth Based on Phase Ranging
PDF
4 contant M.TECH ( PDF FILE )
DOCX
4 contant M.TECH ( M S WORD FILE )
Jg3515961599
Il3614731475
Boosting the Performance of Nested Spatial Mapping with Unequal Modulation in...
40120140504012
Matlab source codes section | Download MATLAB source code freerce-codes
Area Versus Speed Trade-off Analysis of a WiMAX Deinterleaver Circuit Design
IRJET- A Study on PRN Code Generation and Properties of C/A Code in GPS based...
Ramya Project
vlsi projects using verilog code 2014-2015
Vlsi titles
A study to Design and comparison of Full Adder using Various Techniques
Digital Implementation of Costas Loop with Carrier Recovery
Design and Implementation of an Embedded System for Software Defined Radio
IRJET-Securing Data in Cloud using Graphical Password Authentication and AES ...
An experimental overview on software defined optical transmission and sdngmpl...
FPGA Implementation of LDPC Encoder for Terrestrial Television
High Accuracy Distance Measurement for Bluetooth Based on Phase Ranging
4 contant M.TECH ( PDF FILE )
4 contant M.TECH ( M S WORD FILE )
Ad

Viewers also liked (20)

PDF
Synthesis of new chelating ion exchange resins derived from guaran and diviny...
PDF
Performance Evaluation of Ipv4, Ipv6 Migration Techniques
PDF
Design and Optimization of Front Underrun Protection Device
PDF
Designing a Knowledge Strategy Model for Iranian Public Organizations: A Stud...
PDF
Performance Evaluation of IPv4 Vs Ipv6 and Tunnelling Techniques Using Optimi...
PDF
Implementation of Generalized Regression Neural Network to Establish a Relati...
PDF
A Complete Ultrasonic Velocity Study of Decane-1-Ol with Various Acrylates at...
PDF
C012331527
PDF
Recovery of Data in Cluster Computing By Using Fault Tolerant Mechanisms
PDF
Implementation of Vertical Handoff Algorithm between IEEE 802.11 WLAN & CDMA ...
PDF
Causes of Delay in Construction of Bridge Girders
PDF
K010237178
PDF
Performance Analysis Methodology for Parabolic Dish Solar Concentrators for P...
PDF
E010412941
PDF
The Development of Software for Assessment of Environmental Impact Indicators...
PDF
Design and Implementation of Smart Docking and Recharging System for Defense ...
PDF
Experimental Investigation and Analysis of Extrusion of Lead from Round Secti...
PDF
Index properties of alkalis treated expansive and non expansive soil contamin...
PDF
Evaluation of Human Resource Management Practices on the Productivity and Per...
PDF
Relationship of Coordinative Abilities to Playing Ability in Combative Sports
Synthesis of new chelating ion exchange resins derived from guaran and diviny...
Performance Evaluation of Ipv4, Ipv6 Migration Techniques
Design and Optimization of Front Underrun Protection Device
Designing a Knowledge Strategy Model for Iranian Public Organizations: A Stud...
Performance Evaluation of IPv4 Vs Ipv6 and Tunnelling Techniques Using Optimi...
Implementation of Generalized Regression Neural Network to Establish a Relati...
A Complete Ultrasonic Velocity Study of Decane-1-Ol with Various Acrylates at...
C012331527
Recovery of Data in Cluster Computing By Using Fault Tolerant Mechanisms
Implementation of Vertical Handoff Algorithm between IEEE 802.11 WLAN & CDMA ...
Causes of Delay in Construction of Bridge Girders
K010237178
Performance Analysis Methodology for Parabolic Dish Solar Concentrators for P...
E010412941
The Development of Software for Assessment of Environmental Impact Indicators...
Design and Implementation of Smart Docking and Recharging System for Defense ...
Experimental Investigation and Analysis of Extrusion of Lead from Round Secti...
Index properties of alkalis treated expansive and non expansive soil contamin...
Evaluation of Human Resource Management Practices on the Productivity and Per...
Relationship of Coordinative Abilities to Playing Ability in Combative Sports
Ad

Similar to Design of Adjustable Reconfigurable Wireless Single Core CORDIC based Rake Receiver (20)

PDF
J010234960
PDF
Implementation of Algorithms For Multi-Channel Digital Monitoring Receiver
PDF
Efficient reconfigurable architecture of baseband demodulator in sdr
PDF
Ff34970973
PDF
An Energy-Efficient Lut-Log-Bcjr Architecture Using Constant Log Bcjr Algorithm
PDF
Software Design of Digital Receiver using FPGA
PDF
Hv3414491454
PDF
Design and memory optimization of hybrid gate diffusion input numerical contr...
PDF
Design of an efficient binary phase-shift keying based IEEE 802.15.4 transce...
PDF
A novel reduced instruction set computer-communication processor design usin...
PDF
Welcome to International Journal of Engineering Research and Development (IJERD)
PDF
IRJET- A Digital Down Converter on Zynq SoC
PDF
Implementation of Adaptive Digital Beamforming using Cordic
PDF
www.ijerd.com
DOC
High Speed Low-Power Viterbi Decoder Using Trellis Code Modulation
DOC
High Speed Low-Power Viterbi Decoder Using Trellis Code Modulation
PDF
Generation and Implementation of Barker and Nested Binary codes
PDF
A prototyping of software defined radio using qpsk modulation
PDF
iaetsd Software defined am transmitter using vhdl
PDF
Robotic Project - published paper
J010234960
Implementation of Algorithms For Multi-Channel Digital Monitoring Receiver
Efficient reconfigurable architecture of baseband demodulator in sdr
Ff34970973
An Energy-Efficient Lut-Log-Bcjr Architecture Using Constant Log Bcjr Algorithm
Software Design of Digital Receiver using FPGA
Hv3414491454
Design and memory optimization of hybrid gate diffusion input numerical contr...
Design of an efficient binary phase-shift keying based IEEE 802.15.4 transce...
A novel reduced instruction set computer-communication processor design usin...
Welcome to International Journal of Engineering Research and Development (IJERD)
IRJET- A Digital Down Converter on Zynq SoC
Implementation of Adaptive Digital Beamforming using Cordic
www.ijerd.com
High Speed Low-Power Viterbi Decoder Using Trellis Code Modulation
High Speed Low-Power Viterbi Decoder Using Trellis Code Modulation
Generation and Implementation of Barker and Nested Binary codes
A prototyping of software defined radio using qpsk modulation
iaetsd Software defined am transmitter using vhdl
Robotic Project - published paper

More from IOSR Journals (20)

PDF
A011140104
PDF
M0111397100
PDF
L011138596
PDF
K011138084
PDF
J011137479
PDF
I011136673
PDF
G011134454
PDF
H011135565
PDF
F011134043
PDF
E011133639
PDF
D011132635
PDF
C011131925
PDF
B011130918
PDF
A011130108
PDF
I011125160
PDF
H011124050
PDF
G011123539
PDF
F011123134
PDF
E011122530
PDF
D011121524
A011140104
M0111397100
L011138596
K011138084
J011137479
I011136673
G011134454
H011135565
F011134043
E011133639
D011132635
C011131925
B011130918
A011130108
I011125160
H011124050
G011123539
F011123134
E011122530
D011121524

Recently uploaded (20)

PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PPT
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
PPTX
UNIT 4 Total Quality Management .pptx
PPTX
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
PPTX
Geodesy 1.pptx...............................................
PDF
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PPTX
Internet of Things (IOT) - A guide to understanding
PPTX
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PPTX
Foundation to blockchain - A guide to Blockchain Tech
PDF
PPT on Performance Review to get promotions
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PDF
Digital Logic Computer Design lecture notes
PDF
R24 SURVEYING LAB MANUAL for civil enggi
PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PPTX
Lecture Notes Electrical Wiring System Components
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
UNIT 4 Total Quality Management .pptx
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
Geodesy 1.pptx...............................................
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
Internet of Things (IOT) - A guide to understanding
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
Foundation to blockchain - A guide to Blockchain Tech
PPT on Performance Review to get promotions
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
Digital Logic Computer Design lecture notes
R24 SURVEYING LAB MANUAL for civil enggi
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
Lecture Notes Electrical Wiring System Components

Design of Adjustable Reconfigurable Wireless Single Core CORDIC based Rake Receiver

  • 1. IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-ISSN: 2278-2834,p-ISSN: 2278-8735. Volume 6, Issue 2 (May. –Jun. 2013), PP 51-55 www.iosrjournals.org www.iosrjournals.org 51 | Page Design of Adjustable Reconfigurable Wireless Single Core CORDIC based Rake Receiver Marianne M. Kamal Renewable Energy Department, Arab Organization for Industrialization, Egypt Abstract : In wireless communication system transmitted signals are subjected to multiple reflections, diffractions and attenuation caused by obstacles such as buildings and hills, etc. At the receiver end, multiple copies of the transmitted signal are received that arrive at clearly distinguishable time instants and are faded by signal cancellation. Rake receiver is a technique to combine these so called multi-paths [2] by utilizing multiple correlation receivers allocated to those delay positions on which the significant energy arrives which achieves a significant improvement in the SNR of the output signal. This paper shows how the rake, including dispreading and descrambling could be replaced by a receiver that can be implemented on a CORDIC based hardware architecture. The performance in conjunction with the computational requirements of the receiver is widely adjustable which is significantly better than that of the conventional rake receiver. Keywords - Rake receiver, Multi-paths, CORDIC I. INTRODUCTION WCDMA offers variable spreading factor and multiple codes per user to enable features like high data rates and multiple services for the same connections. To do so rake receiver architecture for W-CDMA should be configurable such that the hardware is utilized optimally at varying requirements. One of the main features of W-CDMA is bandwidth on demand (BOD) which means that it offers variable user data rates. This is achieved by adopting variable spreading factors and multi-code connections for a user. More information bits are transmitted if a lower spreading factor is used for the same chip rate and parallel channels are offered by having multiple codes per user. So the receiver should be adjustable meaning to adjust the receiver performance in a wide range depending on the channel impulse response [4]. The receiver computes the symbols (representing the users) by an array of CORDIC processors; CORDIC (Coordinate Rotation DIgital Computer) is one of the efficient hardware algorithms for hardware signal processing [3]. When the processing power needed exceeds that of the soft core processor, co-processor elements can be added. It is possible to use the processor array for other tasks (in addition to symbol computation) due to its design as a coprocessor element. The implementation on FPGA has the advantage of reconfigurable computing. A lot of modern signal processing applications require such a high computational power that only ASIC’s can fulfill the technical demands. ASIC’s are inflexible, costly (development and debugging) and only economical for mass productions. Due to the fact that even the most commonly used programmable devices (DSP) often lack the required processing power, one tries to develop a solution that lays somewhere in between the two extremes; a programmable processing and dedicated hardware, the effort in this area is summarized under the term reconfigurable computing. II. CORDIC RAKE RECEIVER 2.1 CORDIC Algorithm A set of shift-add algorithms collectively known as CORDIC for computing a wide range of functions including trigonometric, hyperbolic, linear and logarithmic functions [3]. Since the last two decades, the application of CORDIC arithmetic for efficient implementation of signal processing algorithms continues to receive wide attention because of its numerical stability, efficiency in evaluating trigonometric and hyperbolic functions, hardware compactness and inherent pipelinability at the micro-level. Compared to other approaches, CORDIC is a clear winner when a hardware multiplier is unavailable, e.g. in a microcontroller, or when you want to save the gates required to implement one, e.g. in an FPGA. On the other hand, when a hardware multiplier is available, e.g. in a DSP microprocessor, table-lookup methods and good old-fashioned power series are generally faster than CORDIC. The CORDIC algorithm is used to compute the sine and cosine values which are required to calculate the In-phase and Quadrature phase components of the received signals of the RAKE receiver [3].
  • 2. Design of Adjustable Reconfigurable Wireless Single Core CORDIC based Rake Receiver www.iosrjournals.org 52 | Page 2.2 Architecture In the proposed single correlator Fig.1, the spreading sequence is latched in a fixed register to eliminate the need of multiple code generators running continuously as in conventional RAKE receiver [1]. A serial shift buffer of length equal to that of sequence is used to hold the received chips. As a new chip is received the buffer shifts and drops the oldest chip to accommodate the newest chip in the buffer. Multipath searcher detects the multipath in the channel and provides the same to the code generator and maximal ratio combiner. Each chip of the serial shift buffer is connected through a multiplier with the corresponding chip of the code latch. These multipliers multiply the corresponding chips in the serial shift buffer and fixed register whenever multipath are detected by the multipath searcher. Each multiplier output is buffered in its dedicated buffers and they are integrated by the adder. Figure1: Single Correlator CORDIC rake receiver Maximal-Ratio Combining is the optimal form of diversity combining because it yields the maximum achievable SNR. Multipath searcher passes the multipath information to the MRC. Maximal ratio combiner (MRC) collects all the integration results of a sequence and its multipath to combine them for a bit decision. For the Maximum Ratio Combining RAKE receiver, a simple alpha tracker is used since it requires a short time window to form an estimate. The RAKE receiver uses several baseband correlators to individually process several signal multipath components. The In-phase (I) and Quadrature (Q) samples r(i) to each correlator are given by: (1) (2) The spread-spectrum receiver then correlates these baseband signals with the PN code sequence used in the transmitter. This gives the post correlation signal x(i) given by: (3) (4) The correlator outputs are combined to achieve improved communications reliability and performance. In a RAKE receiver, if the output from one correlator is corrupted by fading, the others may not be, and the corrupted signal may be discounted through the weighting process. Impulse response measurements of the multipath channel profile are executed through a matched filter to make a successful despreading (IIR filter). The alpha tracker can be thought of as IIR low pass filter. The difference equation describing the alpha tracker is: Y(n) = (1-α) . X(n-1) + α . y(n-1) (5)
  • 3. Design of Adjustable Reconfigurable Wireless Single Core CORDIC based Rake Receiver www.iosrjournals.org 53 | Page Impulse response measurements of the multipath channel profile are executed through a matched filter to make a successful dispreading. (6) (7) Where Xk(n) is the kth post correlation received sample for bit n. The real and imaginary parts of the RAKE output, y(n), are given by the complex multiplication of the post correlation signal with the complex conjugate of the channel estimate signal, at each of the K multipath delays. (8) (9) (10) 2.3 Implementation The algorithm can be implemented using Altera Nios II board. FPGA uses SRAM cells to store configuration data. The NIOS II system built using SOPC builder tool [5]. 2.3.1 Software implementation The CORDIC algorithm is used to compute the sine and cosine values which are required to calculate the In-phase and Quadrature phase components of the received signals of the RAKE receiver. The CORDIC algorithm is developed as a custom instruction to the NIOS processor. NIOS II processor custom instructions are custom logic blocks adjacent to the ALU in the CPU data path. With custom instructions we can reduce a complex sequence of standard instructions to a single instruction implemented in hardware. The custom instruction logic connects directly to the NIOS II processor ALU. 2.3.2 Hardware implementation IIR filter can be implemented as hardware component since parallel processing is required for fast computing the filter output. IIR filter for channel impulse response estimation. Alpha tracker for maximum ratio combiner as shown in Fig. 2. Figure2: Alpha tracker 2.3.3 Implementation steps for the CDMA RAKE receiver i. Compute the (I) and (Q) components of inputs to each RAKE finger. For each chip symbol: a. Compute the sine and cosine values of the delay spread angle. b. Calculate the In-phase component by multiplying the transmitted spread spectrum signal with the calculated cosine value. c. Calculate the Quadrature phase component by multiplying the transmitted spread spectrum signal with the calculated sine value. ii. Calculate the Post correlation signal, for each bit: a. De-spread the signal obtained from step i by multiplying it with the spreading sequence. b. Integrate all the chips (number equal to spreading factor) into a single bit. iii. Estimate the (I) and (Q) components of channel impulse response.
  • 4. Design of Adjustable Reconfigurable Wireless Single Core CORDIC based Rake Receiver www.iosrjournals.org 54 | Page a. Use an IIR filter of order equal to the number of fingers. b. The impulse response of the channel is given by the transfer function of the filter. iv. Calculate the real and imaginary parts of the RAKE output a. At each of the K multipath delays, perform complex multiplication of the post correlation signal with the complex conjugate of the channel estimate signal. b. Separate real and imaginary parts of the above multiplied result to get real and imaginary parts of the RAKE output. v. The RAKE output is given to a decision device to obtain the received bits. The decision device is a simple Signum function which takes the real part of the RAKE output as input and gives the output bits. III. RESULTS In the 3G Standard the Chip rate = 64 chip / bit, Spreading factor = 16, I/Q data word size = 8 bits and the clock = 15.36 MHZ. Digitized input samples are received from RF front end and converted to the form of complex I & Q branches. The computation is done by using CORDIC algorithm, Fig.3, with I & Q word size is 8 bits. The serial buffer of length equals to the spreading factor in the UTMS standard spreading factor (SF) = 16. The code latch is also a serial buffer of length equals to 16. The code generator is implemented using linear feedback shift register (LFSR). This block consists of 16 D-type Flip Flop and XOR gate For the matched filter is the Cross correlation of the received signal with pilot bits (16 zero bits), the impulse response of the matched filter- implemented as raised cosine filter- is shown Fig. 4. The bit error rate was found to be 0.0018 and the received signal before and after filtering is shown in Fig. 5. The alpha tracker filter was implemented as a low pass butterworth filter of first order, pass-band equals to 1.2 MHz. The coefficients are: a[0] = 1, a[1] = 1, b[0] =1 and b[1] = -1. Figure3: CORDIC algorithm iteration Figure.4: Impulse response of matched filter
  • 5. Design of Adjustable Reconfigurable Wireless Single Core CORDIC based Rake Receiver www.iosrjournals.org 55 | Page Figure 5: Received signal IV. CONCLUSION W-CDMA has emerged as the most widely adopted 3G air interface. W-CDMA offers variable spreading factor and multiple codes per user to enable features like high data rates and multiple services for the same connection. To enable W-CDMA features, architectures for rake receiver should be configurable for varying data rate requirement at a particular time and should support processing of multiple codes. It should consume less power in order to be suitable for downlink purpose. The conventional rake receiver architecture provides dedicated hardware for each multipath per code. Such a rigid architecture is not suitable for varying requirements (of number of codes and multi-paths) in W-CDMA [2]. A single correlator RAKE receiver with MWH codes as the spreading codes has been introduced. The presented single correlator RAKE receiver gives considerable better operation in comparison with the conventional RAKE receiver in terms of circuit complexity, power consumption and BER performance. REFERENCES [1] M. Uzzafer, “Single Correlator Receiver for Wideband MultiPath Channel,” in Proc. IEEE 6th CAS Symp., Shanghai, vol. 2, June 2004, pp. 421-424. [2] R. Price and P. E. Green, “A Communication Technique for Multipath Channels,” Proc. IRE, vol. 27, pp. 555-570, Mar. 1958. [3] Ray Andraka, “A survey of CORDIC algorithms for FPGA based computers”, ACM 0-89791- 978-5/98/01, 1998. [4] Tero Ojanperä, Ramjee Prasad, “Wideband CDMA for Third Generation Mobile Communications”, Norwood MA, USA, Artect House Inc., 1998, 439 pp. [5] “Introduction to the Altera SOPC Builder”, Altera Corporation, San Jose C.A., 2006.