no-OS
|
Driver for the Analog Devices AXI-DAC-CORE module. More...
#include <stdint.h>
Go to the source code of this file.
Classes | |
struct | axi_dac |
AXI DAC Device Descriptor. More... | |
struct | axi_dac_init |
struct | axi_dac_channel |
Functions | |
int32_t | axi_dac_init_begin (struct axi_dac **dac_core, const struct axi_dac_init *init) |
Begin AXI DAC Initialization. More... | |
int32_t | axi_dac_init_finish (struct axi_dac *dac) |
Begin AXI DAC Initialization. More... | |
int32_t | axi_dac_init (struct axi_dac **dac_core, const struct axi_dac_init *init) |
AXI DAC Main Initialization. More... | |
int32_t | axi_dac_remove (struct axi_dac *dac) |
AXI DAC Resources deallocation. More... | |
int32_t | axi_dac_set_datasel (struct axi_dac *dac, int32_t chan, enum axi_dac_data_sel sel) |
AXI DAC Set Data type for specific channel. More... | |
int32_t | axi_dac_dds_set_frequency (struct axi_dac *dac, uint32_t chan, uint32_t freq_hz) |
AXI DAC Set DDS frequency for specific channel. More... | |
int32_t | axi_dac_dds_get_frequency (struct axi_dac *dac, uint32_t chan, uint32_t *freq) |
AXI DAC Get DDS frequency for specific channel. More... | |
int32_t | axi_dac_dds_set_phase (struct axi_dac *dac, uint32_t chan, uint32_t phase) |
AXI DAC Set DDS phase for specific channel. More... | |
int32_t | axi_dac_dds_get_phase (struct axi_dac *dac, uint32_t chan, uint32_t *phase) |
AXI DAC Get DDS phase for specific channel. More... | |
int32_t | axi_dac_dds_set_scale (struct axi_dac *dac, uint32_t chan, int32_t scale_micro_units) |
AXI DAC Set DDS scale for specific channel. More... | |
int32_t | axi_dac_dds_get_scale (struct axi_dac *dac, uint32_t chan, int32_t *scale_micro_units) |
AXI DAC Get DDS scale for specific channel. More... | |
int32_t | axi_dac_set_buff (struct axi_dac *dac, uint32_t address, uint16_t *buff, uint32_t buff_size) |
AXI DAC Set data buffer. More... | |
uint32_t | axi_dac_set_sine_lut (struct axi_dac *dac, uint32_t address) |
AXI DAC Set data based on a Sine Lookup Table. More... | |
int32_t | axi_dac_dds_get_calib_scale (struct axi_dac *dac, uint32_t chan, int32_t *val, int32_t *val2) |
Get the scale calibration values for AXI DAC channel. More... | |
int32_t | axi_dac_dds_get_calib_phase (struct axi_dac *dac, uint32_t chan, int32_t *val, int32_t *val2) |
Get the phase calibration values for AXI DAC channel. More... | |
int32_t | axi_dac_dds_set_calib_scale (struct axi_dac *dac, uint32_t chan, int32_t val, int32_t val2) |
Calibrate scale for specific AXI DAC channel. More... | |
int32_t | axi_dac_dds_set_calib_phase (struct axi_dac *dac, uint32_t chan, int32_t val, int32_t val2) |
Calibrate phase for specific AXI DAC channel. More... | |
int32_t | axi_dac_load_custom_data (struct axi_dac *dac, const uint32_t *custom_data_iq, uint32_t custom_tx_count, uint32_t address) |
AXI DAC Load custom data. More... | |
int32_t | axi_dac_data_setup (struct axi_dac *dac) |
AXI DAC Data Setup. More... | |
int32_t | axi_dac_bus_read (struct axi_dac *dac, uint32_t reg_addr, uint32_t *reg_data, uint8_t data_size) |
AXI DAC Bus Data Read. More... | |
int32_t | axi_dac_bus_write (struct axi_dac *dac, uint32_t reg_addr, uint32_t reg_data, uint8_t data_size) |
AXI DAC Bus Data Write. More... | |
int32_t | axi_dac_set_ddr (struct axi_dac *dac, bool enable) |
AXI DAC Set DDR (bus double-data-rate) mode. More... | |
int32_t | axi_dac_set_data_stream (struct axi_dac *dac, bool enable) |
AXI DAC Set data stream mode. More... | |
int32_t | axi_dac_data_transfer_addr (struct axi_dac *dac, uint32_t address) |
AXI DAC Set starting dma data trasfer address. More... | |
int32_t | axi_dac_data_format_set (struct axi_dac *dac, int format) |
AXI DAC data format. More... | |
Variables | |
const uint16_t | sine_lut [128] |
const uint32_t | sine_lut_iq [1024] |
Driver for the Analog Devices AXI-DAC-CORE module.
Copyright 2018(c) Analog Devices, Inc.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES, INC. “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANALOG DEVICES, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
enum axi_dac_data_sel |
int32_t axi_dac_bus_read | ( | struct axi_dac * | dac, |
uint32_t | reg_addr, | ||
uint32_t * | reg_data, | ||
uint8_t | data_size | ||
) |
AXI DAC Bus Data Read.
AXI DAC Bus Data read
dac | - The device structure. |
reg_addr | - The register address. |
reg_data | - Pointer to data value to be read. |
data_size | - Data size in bytes. |
int32_t axi_dac_bus_write | ( | struct axi_dac * | dac, |
uint32_t | reg_addr, | ||
uint32_t | reg_data, | ||
uint8_t | data_size | ||
) |
AXI DAC Bus Data Write.
AXI DAC Bus Data write
dac | - The device structure. |
reg_addr | - The register address. |
reg_data | - Data value to be written. |
data_size | - Data size in bytes. |
int32_t axi_dac_data_format_set | ( | struct axi_dac * | dac, |
int | format | ||
) |
AXI DAC data format.
AXI DAC data format
dac | - The device structure. |
format | - bit width of the samples sent over dma, can be 8 or 16. |
int32_t axi_dac_data_setup | ( | struct axi_dac * | dac | ) |
AXI DAC Data Setup.
Setup the AXI DAC Data
dac | - The device structure. |
int32_t axi_dac_data_transfer_addr | ( | struct axi_dac * | dac, |
uint32_t | address | ||
) |
AXI DAC Set starting dma data trasfer address.
AXI DAC Set dma buffering mode
dac | - The device structure. |
address | - the 8-bit target register address for dma data streaming operations. |
int32_t axi_dac_dds_get_calib_phase | ( | struct axi_dac * | dac, |
uint32_t | chan, | ||
int32_t * | val, | ||
int32_t * | val2 | ||
) |
Get the phase calibration values for AXI DAC channel.
Get the phase calibration values for AXI DAC channel
dac | - The device structure. |
chan | - The DAC channel. |
val | - the integer part. |
val2 | - the fractional part. |
int32_t axi_dac_dds_get_calib_scale | ( | struct axi_dac * | dac, |
uint32_t | chan, | ||
int32_t * | val, | ||
int32_t * | val2 | ||
) |
Get the scale calibration values for AXI DAC channel.
Get the scale calibration values for AXI DAC channel
dac | - The device structure. |
chan | - The DAC channel. |
val | - the integer part. |
val2 | - the fractional part. |
int32_t axi_dac_dds_get_frequency | ( | struct axi_dac * | dac, |
uint32_t | chan, | ||
uint32_t * | freq | ||
) |
AXI DAC Get DDS frequency for specific channel.
AXI DAC Get DDS Frequency
dac | - The device structure. |
chan | - The DAC channel. |
freq | - The frequency read in Hz. |
int32_t axi_dac_dds_get_phase | ( | struct axi_dac * | dac, |
uint32_t | chan, | ||
uint32_t * | phase | ||
) |
AXI DAC Get DDS phase for specific channel.
AXI DAC Get DDS Phase
dac | - The device structure. |
chan | - The DAC channel. |
phase | - The phase read. Phase is in milli angles scaled to 1000 (i.e. 90*1000 is 90 degrees (pi/2)) |
int32_t axi_dac_dds_get_scale | ( | struct axi_dac * | dac, |
uint32_t | chan, | ||
int32_t * | scale_micro_units | ||
) |
AXI DAC Get DDS scale for specific channel.
AXI DAC Get DDS Phase
dac | - The device structure. |
chan | - The DAC channel. |
scale_micro_units | - The scale read. Scale is in micro units (i.e. 1*1000*1000 is 1.0) |
int32_t axi_dac_dds_set_calib_phase | ( | struct axi_dac * | dac, |
uint32_t | chan, | ||
int32_t | val, | ||
int32_t | val2 | ||
) |
Calibrate phase for specific AXI DAC channel.
Calibrate phase for specific AXI DAC channel
dac | - The device structure. |
chan | - The DAC channel. |
val | - the integer part. |
val2 | - the fractional part. |
int32_t axi_dac_dds_set_calib_scale | ( | struct axi_dac * | dac, |
uint32_t | chan, | ||
int32_t | val, | ||
int32_t | val2 | ||
) |
Calibrate scale for specific AXI DAC channel.
Calibrate scale for specific AXI DAC channel
dac | - The device structure. |
chan | - The DAC channel. |
val | - the integer part. |
val2 | - the fractional part. |
int32_t axi_dac_dds_set_frequency | ( | struct axi_dac * | dac, |
uint32_t | chan, | ||
uint32_t | freq_hz | ||
) |
AXI DAC Set DDS frequency for specific channel.
AXI DAC Set DDS Frequency
dac | - The device structure. |
chan | - The DAC channel. |
freq_hz | - The frequency to be set in Hz. |
int32_t axi_dac_dds_set_phase | ( | struct axi_dac * | dac, |
uint32_t | chan, | ||
uint32_t | phase | ||
) |
AXI DAC Set DDS phase for specific channel.
AXI DAC Set DDS Phase
dac | - The device structure. |
chan | - The DAC channel. |
phase | - The phase to be set. Phase is in milli angles scaled to 1000 (i.e. 90*1000 is 90 degrees (pi/2)) |
int32_t axi_dac_dds_set_scale | ( | struct axi_dac * | dac, |
uint32_t | chan, | ||
int32_t | scale_micro_units | ||
) |
AXI DAC Set DDS scale for specific channel.
AXI DAC Set DDS Scale
dac | - The device structure. |
chan | - The DAC channel. |
scale_micro_units | - The scale to be set. Scale is in micro units (i.e. 1*1000*1000 is 1.0) |
int32_t axi_dac_init | ( | struct axi_dac ** | dac_core, |
const struct axi_dac_init * | init | ||
) |
AXI DAC Main Initialization.
AXI DAC Main Initialization
dac_core | - The device structure. |
init | - Initialization parameters. |
int32_t axi_dac_init_begin | ( | struct axi_dac ** | dac_core, |
const struct axi_dac_init * | init | ||
) |
Begin AXI DAC Initialization.
Begin AXI DAC Initialization
dac_core | - The device structure. |
init | - Initialization parameters. |
int32_t axi_dac_init_finish | ( | struct axi_dac * | dac | ) |
Begin AXI DAC Initialization.
Finish AXI DAC Initialization
dac | - The device structure. |
int32_t axi_dac_load_custom_data | ( | struct axi_dac * | dac, |
const uint32_t * | custom_data_iq, | ||
uint32_t | custom_tx_count, | ||
uint32_t | address | ||
) |
AXI DAC Load custom data.
AXI DAC Load Custom Data
dac | - The device structure. |
custom_data_iq | - The custom data array in I/Q format. |
custom_tx_count | - The custom data array size. |
address | - The address where the data is loaded. |
int32_t axi_dac_remove | ( | struct axi_dac * | dac | ) |
AXI DAC Resources deallocation.
Resources Deallocation
dac | - The device structure. |
int32_t axi_dac_set_buff | ( | struct axi_dac * | dac, |
uint32_t | address, | ||
uint16_t * | buff, | ||
uint32_t | buff_size | ||
) |
AXI DAC Set data buffer.
AXI DAC Set Buffer
dac | - The device structure. |
address | - Base Address. |
buff | - The buffer to be set. |
buff_size | - The buffer size. |
AXI DAC Set data stream mode.
AXI DAC Set data stream mode
dac | - The device structure. |
enable | - enable or disable data stream over the bus interface, where any is available. |
int32_t axi_dac_set_datasel | ( | struct axi_dac * | dac, |
int32_t | chan, | ||
enum axi_dac_data_sel | sel | ||
) |
AXI DAC Set Data type for specific channel.
AXI DAC Data Select
dac | - The device structure. |
chan | - The DAC channel. |
sel | - Data type. |
AXI DAC Set DDR (bus double-data-rate) mode.
AXI DAC Set DDR (bus double-data-rate) mode
dac | - The device structure. |
enable | - enable or disable DDR mode. |
uint32_t axi_dac_set_sine_lut | ( | struct axi_dac * | dac, |
uint32_t | address | ||
) |
AXI DAC Set data based on a Sine Lookup Table.
AXI DAC Set Sine Lookup Table
dac | - The device structure. |
address | - Address of the sine lut. |
const uint16_t sine_lut[128] |
const uint32_t sine_lut_iq[1024] |