Objective
In this lab, you will learn how to set up Spectrum Digital’s eZdsp™ F2812 to implement a finite impulse response (FIR) filter using an audio input. Since the F2812 does not have a digital-to-analog converter (DAC) as one of its peripherals, you will be using an audio processing daughtercard that features Texas Instruments’ (TI) TLV5638 DAC.
Introduction to the eZdsp™ F2812
The eZdsp™ F2812 allows people to determine if the TI TMS320F2812 digital signal processor (DSP) is suitable for their application requirements. It also allows evaluators to develop and run software for the F2812 processor by using Code Composer Studio. A separate tutorial for the Code Composer Studio software is available in this course.
The eZdsp™ F2812 has the following features:
- TMS320F2812 DSP
- 150 MIPS operating speed
- 18K words on-chip RAM
- 128K words on-chip Flash memory
- 64K words off-chip SRAM memory
- 30 MHz clock
- 2 Expansion Connectors (analog, I/O)
- Onboard IEEE 1149.1 JTAG Controller
- 5V only operation with supplied AC adapter
- Onboard IEEE 1149.1 JTAG emulation connector
Setting Up Hardware
To begin this lab, there are a couple of tasks you need to do in order to set up your hardware before programming the DSP. The eZdsp™ requires a 5V power supply that is provided and should be connected to the board via connector P6. The supplied parallel cable also needs to be plugged into a lab PC.
Attach the audio processing daughtercard to the eZdsp™ board as shown in the following pictures:
Connect the power supply and parallel cable to the eZdsp™. The LED labeled Power on the daughtercard should light up bright orange.
Connect the provided speakers to the jumpers labeled R_SPKR and L_SPKR on the daughtercard. Make sure the black wire of each speaker is connected to the ‘-‘ and the red wire is connected to the ‘+’.
For the lab, you will be using an Apple iPod to supply the audio source. Connect the supplied cable to the jumper labeled J4 on the daughtercard. Since the iPod you are using does not have a reliable battery, make sure the iPod is connected to a power supply.
Your setup should look like this:
To turn the iPod on, press the Play button. To turn it off, hold the Play button until the screen goes blank, just like in the above picture.
Software Implementation
Problem 1 Use Matlab to determine the FIR filter coeffients by using ‘remez’, ‘fir1’ and ‘fir2’ for each of the following filters:
- An order-30 low-pass filter having a cut-off frequency 15kHz by the windowing method using the fir1 command.
- An order-30 high-pass filter having transition band 15kHz-16kHz using the remez command.
- Compare the above by showing the frequency response using the freqz command. How are the filters different?
- An order-30 high-pass filter having transition band 14-15kHz by frequency sampling method using the fir2 command.
- An order-30 high-pass filter having a transition band 14-15kHz using the remez command.
- Compare the above two filters by showing the frequency response using the freqz command. How are the filters different?
- An order-60 band-pass filter having pass band 3kHz-6kHz using the remez command. Specify the transition bands as 2kHz-3kHz and 6kHz-7kHz.
After you have the filter coefficients, take the two’s complement by using
twocomplement.m. You need them in that format in order to use them in the A/D-D/A conversion. Make sure you divide the coefficients by two before taking the two’s complement. To include them in your file, use the
save_coeff.m function to create an assembly file.
Problem 2 Download the following files to give you a good starting point: [Insert code files here] Read through the files and give a brief description of each one.
Serial Peripheral Interface (SPI)
The serial peripheral interface (SPI) is a high-speed synchronous serial input/output (I/O) port that allows a serial bit stream of programmed length (1-16 bits) to be shifted into and out of the device at a programmed bit-transfer rate. The SPI is normally used for communications between the DSP controller and external peripherals, the DAC in our case, or another controller.
Problem 3 To implement the FIR filter, the DSP must be set up to communicate with the DAC on the daughtercard. Set up the SPI registers on the F2812 DSP by assigning the following values to the corresponding registers:
| Register Name | Register Value (HEX) |
| SPICCR.bit.SPISWRESET | 0 |
| SPICCR.all | 0x005F |
| SPICTL.all | 0x001F |
| SPISTS.all | 0x0000 |
| SPIBRR.all | 0x0002 |
| SPIFFTX.all | 0xC028 |
| SPIFFRX.all | 0x0028 |
| SPIFFCT.all | 0x00 |
| SPIPRI.all | 0x0010 |
| SPICCR.bit.SPISWRESET | 1 |
| SPIFFTX.bit.TXFIFO | 1 |
| SPIFFRX.bit.RXFIFORESET | 1 |
Which register is set to:
- Enable the FIFOs?
- Have the SPI interrupt-driven?
- The SPI bit transfer rate?
Analog-to-Digital Converter (ADC)
The F2812 DSP has a 12-bit ADC core with built-in dual sample-and-hold (S/H). Its options include:
- Simultaneous sampling or sequential sampling mode
- Operating as two independent 8-state sequencers or as a one large 16-state sequencer
- 16-channel, multiplexed inputs
- Multiple source triggers for the start-of-conversion (SOC) sequence
A block diagram of the ADC module from TI documents:
Problem 4 Set the following ADC registers as follows:
| Register Name | Register Value (HEX) |
| AdcRegs.ADCMAXCONV.all | 0x0001 |
| AdcRegs.ADCCHSELSEQ1.bit.CONV00 | 0x3 |
| AdcRegs.ADCCHSELSEQ1.bit.CONV01 | 0x2 |
| AdcRegs.ADCTRL2.bit.EVA_SOC_SEQ1 | 1 |
| AdcRegs.ADCTRL2.bit.INT_ENA_SEQ1 | 1 |
Which register enables or:
- Sequential sampling?
- 16-bit cascaded mode?
- Event manager A to be the source trigger for the SOC sequence?
- Selects ADCIN3 and ADCIN2 for input channels?
- Does one conversion on the sequence?
Which 16 registers does the ADC place its results?
Event Manager A (EVA)
The event manager peripheral in the DSP includes general-purpose (GP) timers, full-compare/PWM units, capture units, and quadrature-encoder pulse (QEP) circuits. You will use event manager A (EVA) to trigger the SOC sequence in the ADC.
EVA functional diagram from TI documents:
Problem 5 Set the following EVA registers as follows and describe what each one will do:
| Register Name | Register Value (HEX) |
| EvaRegs.T1CMPR | 0x00fa |
| EvaRegs.T1PR | 0x1f4 |
| EvaRegs.GPTCONA.bit.T1TOADC | 1 |
| EvaRegs.T1CON.all | 0x1043 |
Interrupts
Interrupts, as described by Dr. Choi in one of his lab manuals in ELEC 434, provide a mechanism for handling any infrequent or exception event. The interrupt causes a CPU to make a temporary transfer of control from its current location to another location that services the event. Variety of sources, internal and external to the CPU, can generate interrupts. The use of interrupts greatly increases the performance of the CPU by allowing the I/O devices direct and rapid access to the CPU and by freeing the CPU from the task of continually testing the status of its I/O devices. The I/O devices assert interrupts to request the CPU to start a new I/O operation, to signal the completion of an I/O operation, and to signal the occurrence of hardware and software errors.
The F2812 DSP supports one nonmaskable interrupt (NMI) and 16 maskable prioritized interrupt requests (INT1-INT14, RTOSINT, and DLOGINT) at the CPU level.
Problem 6 Program the interrupts for the ADC and the SPI along with the functions for:
- Two’s complement of the ADC output
- Send to appropriate filter
- Filter’s output to be reconverted to unsigned integers
- Send to DAC
You should hear the filtered audio through the speakers.