This lab presents the steps to setup an environment for using the EVAL-AD7492SDZ evaluation board together with the BeMicro SDK USB stick and the the Nios II Embedded Development Suite (EDS). Below is presented a picture of the EVAL-AD7492SDZ Evaluation Board with the BeMicro SDK Platform.
For component evaluation and performance purposes, as opposed to quick prototyping, the user is directed to use the part evaluation setup. This consists of:
The SDP-B controller board is part of Analog Devices System Demonstration Platform (SDP). It provides a high speed USB 2.0 connection from the PC to the component evaluation board. The PC runs the evaluation software. Each evaluation board, which is an SDP compatible daughter board, includes the necessary installation file required for performance testing.
Note: it is expected that the analog performance on the two platforms may differ.
Below is presented a picture of SDP-B Controller Board with the EVAL-AD7492SDZ Evaluation Board.
The EVAL-AD7492SDZ evaluation board is a full-featured evaluation board,designed to allow the user to easily evaluate all features of the AD7492. On-board components include the AD8597 ultralow noise operational amplifier, the AD8021 low noise, high speed amplifier, the ADP1613 Step-Up PWM DC-to-DC Switching Converter, the ADP3303-5 High Accuracy anyCAP™ 200 mA Low Dropout Linear Regulator and the ADP2301 1.2 A, 20 V, 1.4 MHz non-synchronous step-down switching regulator.
The AD7492, AD7492-4, AD7492-5 are 12-bit high speed, low power, successive approximation ADCs. The parts operate from a single 2.7 V to 5.25 V power supply and feature throughput rates up to 1.25 MSPS. They contain a low noise, wide bandwidth track/hold amplifier that can handle bandwidths up to 10 MHz.
The first objective is to ensure that you have all of the items needed and to install the software tools so that you are ready to create and run the evaluation project.
Below is presented the list of required hardware items:
Below is presented the list of required software tools:
The Quartus II design software and the Nios II EDS is available via the Altera Complete Design Suite DVD or by downloading from the web.
Create a folder called “ADIEvalBoardLab” on your PC and extract the ad7492_evalboardlab.zip archive to this folder. Make sure that there are NO SPACES in the directory path. After extracting the archive the following folders should be present in the ADIEvalBoardLab folder: FPGA, Hdl Software, DataCapture, NiosCpu.
Folder | Description |
---|---|
FPGA | Contains all the files necessary to program the BeMicro FPGA board in order to run the evaluation project. By executing the script program_fpga.bat the FPGA will be programmed with the evaluation project. New NIOS II applications can be created using the files from this folder. The ip subfolder contains the AD7492 NIOS II peripheral's source code. |
Hdl | Contains the source files for the AD7492 HDL driver: - The doc subfolder contains a brief documentation for the driver. - The src subfolder contains the HDL source files. - The tb folder contains the sources of the driver's testbench. |
NiosCpu | Contains the Quartus evaluation project source files . The ip subfolder contains the AD7492 Nios2 peripheral source code. |
Software | Contains the source files of the Nios2 SBT evaluation project. |
DataCapture | Contains the script files used for data acquisition |
After the Quartus II and Nios II software packages are installed, you can plug the BeMicro SDK board into your USB port. Your Windows PC will find the new hardware and try to install the driver.
Since Windows cannot locate the driver for the device the automatic installation will fail and the driver has to be installed manually. In the Device Manager right click on the USB-Blaster device and select Update Driver Software.
In the next dialog box select the option Browse my computer for driver software. A new dialog will open where it is possible to point to the driver’s location. Set the location to altera/
If Windows presents you with a message that the drivers have not passed Windows Logo testing, please click “Install this driver software anyway”. Upon installation completion a message will be displayed to inform that the installation is finished.
The evaluation project contains all the source files needed to build a system that can be used to configure the AD7492 and capture data from it. The system consists of a Nios II softcore processor that is implemented in the FPGA found on the BeMicro board and a PC application. The softcore controls the communication with the Device Under Test (DUT) and the data capture process. The captured data is saved into the onchip RAM of the BeMicro board and aftwerwards it is read by the PC application and saved into a comma separated values (.csv) file that can be used for further data analysis.
The following components are implemented in the FPGA design:
Name | Address | IRQ |
---|---|---|
CPU | 0x00000800 | - |
JTAG UART | 0x00000090 | 0 |
uC-Probe UART | 0x000000A0 | 1 |
EPCS FLASH CONTROLLER | 0x00001800 | 2 |
OnChip RAM | 0x00010000 | - |
LED GPIO | 0x00000100 | - |
GPIO | 0x00002080 | - |
CTRL GPIO | 0x000020A0 | - |
SYS ID | 0x00000040 | - |
TIMER | 0x00000060 | 3 |
AVALON MASTER | - | - |
Main PLL | 0x00000080 | - |
AD7492 PERIPHERAL | 0x00000120 | - |
Table 1 System components |
The Nios II processor contains a peripheral that implements the communication protocol with the DUT. The peripheral is divided into three logical modules: a module which implements the interface with the Avalon bus and the communication with the onchip RAM, a module which implements an Avalon master interface which is used to write data directly in the onchip RAM and a module which is the actual driver of the DUT. The driver can also be used as standalone in FPGA designs which do not contain a processor softcore. Following is presented a block diagram of the HDL driver and a description of the driver's interface signals.
Table 2 describes the ports of the AD7492 HDL driver.
Port | Direction | Width | Description |
---|---|---|---|
Clock and reset ports | |||
FPGA_CLK_I | IN | 1 | Main clock input. |
RESET_I | IN | 1 | Active low reset signal. |
IP control and data ports | |||
DATA_O | OUT | 16 | Outputs the data read from the ADC. |
DATA_RD_READY_O | OUT | 1 | Active high signal to indicate the status of a read operation from the AD7492. The IP continuously reads the conversion results from the ADC and outputs them on the DATA_O bus. When this signal is high data can be read from the DATA_O bus. |
AD7492 control and data ports | |||
ADC_DATA_I | IN | 12 | ADC Data Bits. Parallel digital inputs that provide the conversion result for the part. |
ADC_BUSY_N_I | IN | 1 | BUSY input. Logic input indicating the status of the conversion process. The BUSY signal goes high after the falling edge of ADC_CONVST_N_O and stays high for the duration of the conversion. Once the conversion is complete and the conversion result is in the output register, the BUSY line returns low. The track/hold returns to track mode just prior to the falling edge of BUSY and the acquisition time for the part begins when BUSY goes low. |
ADC_RD_N_O | OUT | 1 | ADC Read. Logic output used in conjunction with ADC_CS_N_O to access the conversion result. The conversion result is placed on the data bus following the falling edge of both ADC_CS_N_O and ADC_RD_N_O. The two signals are connected to the same AND gate. |
ADC_CS_N_O | OUT | 1 | ADC Chip Select. Active low logic output used in conjunction with ADC_RD_N_O to access the conversion result. |
ADC_CONVST_O | OUT | 1 | ADC Conversion Start. Logic output used to initiate conversion on AD7492. |
Table 2 AD7492 driver ports description |
The follwing figure presents the timing diagram for the read operations from the AD7492 driver.
Table 3 describes the ports of the Avalon peripheral:
Port | Direction | Width | Description |
---|---|---|---|
Clock and reset ports | |||
CLK_I | IN | 1 | Main clock input |
RESET_I | IN | 1 | System reset |
Avalon Slave Interface | |||
AVALON_WRITEDATA_I | IN | 32 | Slave write data bus |
AVALON_WRITE_I | IN | 1 | Slave write data request |
AVALON_READ_I | IN | 1 | Slave read data request |
AVALON_ADDRESS_I | IN | 2 | Slave address bus |
AVALON_READDATA_O | OUT | 32 | Slave read data bus |
Avalon Master Interface | |||
AVALON_MASTER_WAITREQUEST | IN | 1 | Master wait request signal |
AVALON_MASTER_ADDRESS_O | OUT | 32 | Master address bus |
AVALON_MASTER_WRITE_O | OUT | 1 | Master write signal |
AVALON_MASTER_BYTEENABLE_O | OUT | 4 | Master byte enable signals |
AVALON_MASTER_WRITEDATA_O | OUT | 32 | Master write data bus |
External connectors | |||
ADC_DATA_I | IN | 12 | ADC Data Bits. Parallel digital inputs that provide the conversion result for the part. |
ADC_BUSY_N_I | IN | 1 | BUSY input. Logic input indicating the status of the conversion process. The BUSY signal goes high after the falling edge of ADC_CONVST_N_O and stays high for the duration of the conversion. Once the conversion is complete and the conversion result is in the output register, the BUSY line returns low. The track/hold returns to track mode just prior to the falling edge of BUSY and the acquisition time for the part begins when BUSY goes low. |
ADC_RD_N_O | OUT | 1 | ADC Read. Logic output used in conjunction with ADC_CS_N_O to access the conversion result. The conversion result is placed on the data bus following the falling edge of both ADC_CS_N_O and ADC_RD_N_O. The two signals are connected to the same AND gate. |
ADC_CS_N_O | OUT | 1 | ADC Chip Select. Active low logic output used in conjunction with ADC_RD_N_O to access the conversion result. |
ADC_CONVST_O | OUT | 1 | ADC Conversion Start. Logic output used to initiate conversion on AD7492. |
Table 3 Avalon peripheral ports description |
Table 4 describes the registers of the Avalon peripheral:
Name | Offset | Width | Access | Description |
---|---|---|---|---|
CONTROL_REGISTER | 0 | 32 | RW | Bit 0 is used to start data acquisition Bit 1 is used to initiate software reset of the core Bit 2 is used to configure the Avalon write master core to write data to the same location Bit 3 is used to write data to the AD7492 evaluation board |
ACQ_COUNT_REGISTER | 1 | 32 | RW | Register used to configure the number of samples to be acquired when acquisition is started |
BASE_REGISTER | 2 | 32 | RW | Register used to configure the base address of the memory location where the acquired data is to be written |
STATUS_REGISTER | 3 | 32 | R | Bit 0 is used to signal that the acquisition is complete Bit 1 is used to signal that the internal memory buffer has been overflown Bit 2 is used to signal that the user has performed a read of an unavailable register |
Table 4 Avalon peripheral registers description |
The next sections of this lab present all the steps needed to create a fully functional project that can be used for evaluating the operation of the ADI platform. It is possible to skip these steps and load into the FPGA an image that contains a fully functional system.The first step of the quick evaluation process is to program the FPGA with the image provided in the lab files. Before the image can be loaded the Quartus II Web Edition tool or the Quartus II Programmer must be installed on your computer. To load the FPGA image run the program_fpga.bat batch file located in the ADIEvalBoardLab/FPGA folder. After the image was loaded the system must be reset. Now the FPGA contains a fully functional system and it is possible to skip directly to the Demonstration Project User Interface section of this lab.
This section presents the steps for developing a software application that will run on the BeMicroSDK system and will be used for controlling and monitoring the operation of the ADI evaluation board.
Launch the Nios II SBT from the Start → All Programs → Altera 12.0sp2→ Nios II EDS 12.0sp2 → Nios II 12.0sp2 Software Build Tools for Eclipse (SBT).
NOTE: Windows 7 users will need to right-click and select Run as administrator. Another method is to right-click and select Properties and click on the Compatibility tab and select the Run This Program As An Administrator checkbox, which will make this a permanent change.
The tool will create two new software project directories. Each Nios II application has 2 project directories in the Eclipse workspace.
Since you chose the blank project template, there are no source files in the application project directory at this time. The BSP contains a directory of software drivers as well as a system.h header file, system initialization source code and other software infrastructure.
The software project provided in this lab does not make use of an operating system. All stdout, stdin and stderr messages will be directed to the jtag_uart.
In addition to the board support package settings configured using the BSP Editor, there are other compilation settings managed by the Eclipse environment such as compiler flags and optimization level.
In Windows Explorer locate the project directory which contains a directory called Software. In Windows Explorer select all the files and directories from the Software folder and drag and drop them into the Eclipse software project ADIEvalBoard.
Just as you configured the optimization level for the BSP project, you should set the optimization level for the application software project ADIEvalBoard as well.
These 2 steps will compile and build the associated board support package, then the actual application software project itself. The result of the compilation process will be an Executable and Linked Format (.elf) file for the application, the ADIEvalBoard.elf file.
The BeMicroSDK hardware is designed with a System ID peripheral. This peripheral is assigned a unique value based on when the hardware design was last modified in the SOPC Builder tool. SOPC Builder also places this information in the .sopcinfo hardware description file. The BSP is built based on the information in the .sopcinfo file.
To run the software project on the Nios II processor:
This will re-build the software project to create an up–to-date executable and then download the code into memory on the BeMicroSDK hardware. The debugger resets the Nios II processor, and it executes the downloaded code. Note that the code is verified in memory before it is executed.
The code size and start address might be different than the ones displayed in the above screenshot.
I* Execute data_capture.bat script. At this point 16 Kbyte of data will be acquired from the ADC and saved into the BeMicro SDK memory. The data stored in the BeMicro SDK memory is transfered to the PC. After the data is transferred to the PC it is converted to 16 bit values.
Note: If several consecutive data acquisitions are performed the captured data is appended to the Acquisition.csv file.
In case there is a communication problem with the board the follwing actions can be perfomed in order to try to fix the issues:
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉
全部0条评论
快来发表一下你的评论吧 !