mirror of
https://github.com/apache/nuttx.git
synced 2026-06-07 09:18:00 +08:00
drivers/analog/dac7554.c: Add support to the DAC7554 digital-to-analog converter.
This commit is contained in:
committed by
Gregory Nutt
parent
8493312f00
commit
4710ae736c
+48
-38
@@ -1,4 +1,4 @@
|
||||
/************************************************************************************
|
||||
/****************************************************************************
|
||||
* include/nuttx/analog/dac.h
|
||||
*
|
||||
* Copyright (C) 2017, 2018 Gregory Nutt. All rights reserved.
|
||||
@@ -38,14 +38,14 @@
|
||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
************************************************************************************/
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __INCLUDE_NUTTX_ANALOG_DAC_H
|
||||
#define __INCLUDE_NUTTX_ANALOG_DAC_H
|
||||
|
||||
/************************************************************************************
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
************************************************************************************/
|
||||
****************************************************************************/
|
||||
|
||||
#include <nuttx/config.h>
|
||||
#include <nuttx/compiler.h>
|
||||
@@ -58,12 +58,13 @@
|
||||
#include <nuttx/i2c/i2c_master.h>
|
||||
#include <nuttx/spi/spi.h>
|
||||
|
||||
/************************************************************************************
|
||||
/****************************************************************************
|
||||
* Pre-processor Definitions
|
||||
************************************************************************************/
|
||||
****************************************************************************/
|
||||
|
||||
/* Default configuration settings that may be overridden in the board configuration.
|
||||
* file. The configured size is limited to 255 to fit into a uint8_t.
|
||||
/* Default configuration settings that may be overridden in the board
|
||||
* configuration file. The configured size is limited to 255 to fit into a
|
||||
* uint8_t.
|
||||
*/
|
||||
|
||||
#if !defined(CONFIG_DAC_FIFOSIZE)
|
||||
@@ -73,9 +74,9 @@
|
||||
# define CONFIG_DAC_FIFOSIZE 255
|
||||
#endif
|
||||
|
||||
/************************************************************************************
|
||||
/****************************************************************************
|
||||
* Public Types
|
||||
************************************************************************************/
|
||||
****************************************************************************/
|
||||
|
||||
begin_packed_struct struct dac_msg_s
|
||||
{
|
||||
@@ -86,15 +87,17 @@ begin_packed_struct struct dac_msg_s
|
||||
struct dac_fifo_s
|
||||
{
|
||||
sem_t af_sem; /* Counting semaphore */
|
||||
uint8_t af_head; /* Index to the head [IN] index in the circular buffer */
|
||||
uint8_t af_tail; /* Index to the tail [OUT] index in the circular buffer */
|
||||
uint8_t af_head; /* Index to the head [IN] index
|
||||
* in the circular buffer */
|
||||
uint8_t af_tail; /* Index to the tail [OUT] index
|
||||
* in the circular buffer */
|
||||
/* Circular buffer of DAC messages */
|
||||
struct dac_msg_s af_buffer[CONFIG_DAC_FIFOSIZE];
|
||||
};
|
||||
|
||||
/* This structure defines all of the operations providd by the architecture specific
|
||||
* logic. All fields must be provided with non-NULL function pointers by the
|
||||
* caller of dac_register().
|
||||
/* This structure defines all of the operations providd by the architecture
|
||||
* specific logic. All fields must be provided with non-NULL function
|
||||
* pointers by the caller of dac_register().
|
||||
*/
|
||||
|
||||
struct dac_dev_s;
|
||||
@@ -108,8 +111,8 @@ struct dac_ops_s
|
||||
|
||||
/* Configure the DAC. This method is called the first time that the DAC
|
||||
* device is opened. This will occur when the port is first opened.
|
||||
* This setup includes configuring and attaching DAC interrupts. Interrupts
|
||||
* are all disabled upon return.
|
||||
* This setup includes configuring and attaching DAC interrupts.
|
||||
* Interrupts are all disabled upon return.
|
||||
*/
|
||||
|
||||
CODE int (*ao_setup)(FAR struct dac_dev_s *dev);
|
||||
@@ -130,7 +133,6 @@ struct dac_ops_s
|
||||
/* All ioctl calls will be routed through this method */
|
||||
|
||||
CODE int (*ao_ioctl)(FAR struct dac_dev_s *dev, int cmd, unsigned long arg);
|
||||
|
||||
};
|
||||
|
||||
/* This is the device structure used by the driver. The caller of
|
||||
@@ -144,50 +146,53 @@ struct dac_ops_s
|
||||
|
||||
struct dac_dev_s
|
||||
{
|
||||
uint8_t ad_ocount; /* The number of times the device has been opened */
|
||||
uint8_t ad_ocount; /* The number of times the device has
|
||||
* been opened */
|
||||
uint8_t ad_nchannel; /* Number of dac channel */
|
||||
sem_t ad_closesem; /* Locks out new opens while close is in progress */
|
||||
sem_t ad_closesem; /* Locks out new opens while close is
|
||||
* in progress */
|
||||
struct dac_fifo_s ad_xmit; /* Describes receive FIFO */
|
||||
const struct dac_ops_s *ad_ops; /* Arch-specific operations */
|
||||
void *ad_priv; /* Used by the arch-specific logic */
|
||||
};
|
||||
|
||||
/************************************************************************************
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
************************************************************************************/
|
||||
****************************************************************************/
|
||||
|
||||
/************************************************************************************
|
||||
/****************************************************************************
|
||||
* Public Functions
|
||||
************************************************************************************/
|
||||
****************************************************************************/
|
||||
|
||||
#if defined(__cplusplus)
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
/************************************************************************************
|
||||
/****************************************************************************
|
||||
* Name: dac_register
|
||||
*
|
||||
* Description:
|
||||
* Register a dac driver.
|
||||
*
|
||||
* Input Parameters:
|
||||
* path - The full path to the DAC device to be registered. This could be, as an
|
||||
* example, "/dev/dac0"
|
||||
* path - The full path to the DAC device to be registered. This could
|
||||
* be, as an example, "/dev/dac0"
|
||||
* dev - An instance of the device-specific DAC interface
|
||||
*
|
||||
* Returned Value:
|
||||
* Zero on success; A negated errno value on failure.
|
||||
*
|
||||
************************************************************************************/
|
||||
****************************************************************************/
|
||||
|
||||
int dac_register(FAR const char *path, FAR struct dac_dev_s *dev);
|
||||
|
||||
/************************************************************************************
|
||||
/****************************************************************************
|
||||
* Name: dac_txdone
|
||||
*
|
||||
* Description:
|
||||
* Called from the DAC interrupt handler at the completion of a send operation.
|
||||
* Called from the DAC interrupt handler at the completion of a send
|
||||
* operation.
|
||||
*
|
||||
* Input Parameters:
|
||||
* dev - An instance of the device-specific DAC interface
|
||||
@@ -195,22 +200,27 @@ int dac_register(FAR const char *path, FAR struct dac_dev_s *dev);
|
||||
* Returned Value:
|
||||
* OK on success; a negated errno on failure.
|
||||
*
|
||||
************************************************************************************/
|
||||
****************************************************************************/
|
||||
|
||||
int dac_txdone(FAR struct dac_dev_s *dev);
|
||||
|
||||
/************************************************************************************
|
||||
/****************************************************************************
|
||||
* DAC Initialization functions
|
||||
*
|
||||
* Architecture-specific versions will have prototypes in architect-specific header
|
||||
* files. Common DAC implementations in drivers/analog will have prototypes listed
|
||||
* below.
|
||||
* Architecture-specific versions will have prototypes in architect-specific
|
||||
* header files. Common DAC implementations in drivers/analog will have
|
||||
* prototypes listed below.
|
||||
*
|
||||
************************************************************************************/
|
||||
****************************************************************************/
|
||||
|
||||
FAR struct dac_dev_s *up_ad5410initialize(FAR struct spi_dev_s *spi, unsigned int devno);
|
||||
FAR struct dac_dev_s *up_ad5410initialize(FAR struct spi_dev_s *spi,
|
||||
unsigned int devno);
|
||||
|
||||
FAR struct dac_dev_s *dac7571_initialize(FAR struct i2c_master_s *i2c, uint8_t addr);
|
||||
FAR struct dac_dev_s *dac7571_initialize(FAR struct i2c_master_s *i2c,
|
||||
uint8_t addr);
|
||||
|
||||
FAR struct dac_dev_s *dac7554_initialize(FAR struct spi_dev_s *spi,
|
||||
int spidev);
|
||||
|
||||
/****************************************************************************
|
||||
* Name: lmp92001_dac_initialize
|
||||
|
||||
Reference in New Issue
Block a user