drivers/sensors: add driver for as5048a magnetic encoder

This commit is contained in:
zouboan 2022-06-12 17:48:27 +08:00 committed by Petro Karashchenko
parent a0ff6f9fa6
commit cb8c992914
5 changed files with 795 additions and 0 deletions

View File

@ -70,6 +70,14 @@ config SENSORS_AS5048B
---help---
Enable driver support for the AMS AS5048B magnetic rotary encoder.
config SENSORS_AS5048A
bool "AMS AS5048A Magnetic Rotary Encoder support"
default n
select SPI
select SENSORS_QENCODER
---help---
Enable driver support for the AMS AS5048A magnetic rotary encoder.
config SENSORS_AS726X
bool "AMS AS726X Spetral sensor support"
default n

View File

@ -270,6 +270,10 @@ ifeq ($(CONFIG_SENSORS_ADT7320),y)
CSRCS += adt7320.c
endif
ifeq ($(CONFIG_SENSORS_AS5048A),y)
CSRCS += as5048a.c
endif
endif # CONFIG_SPI
# These drivers depend on 1WIRE support

632
drivers/sensors/as5048a.c Normal file
View File

@ -0,0 +1,632 @@
/****************************************************************************
* drivers/sensors/as5048a.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <assert.h>
#include <errno.h>
#include <debug.h>
#include <stdlib.h>
#include <nuttx/kmalloc.h>
#include <nuttx/fs/fs.h>
#include <nuttx/spi/spi.h>
#include <nuttx/sensors/as5048a.h>
#if defined(CONFIG_SENSORS_AS5048A)
/****************************************************************************
* Private Types
****************************************************************************/
struct as5048a_dev_s
{
struct qe_lowerhalf_s lower; /* AS5048A quadrature encoder lower half */
FAR struct spi_dev_s *spi; /* SPI interface */
/* Since multiple AS5048A can be connected to the same SPI bus we need
* to use multiple spi device ids which are employed by NuttX to select/
* deselect the desired AS5048A chip via their chip select inputs.
*/
int spi_devid;
};
/****************************************************************************
* Private Function Prototypes
****************************************************************************/
static int as5048a_writeu16(FAR struct as5048a_dev_s *priv,
uint16_t regaddr, uint16_t regval);
static int as5048a_exchange(FAR struct as5048a_dev_s *priv,
uint16_t regaddr, FAR uint16_t *regval);
static uint16_t calc_even_parity(uint16_t value);
static int as5048a_readzero(FAR struct as5048a_dev_s *priv,
FAR uint16_t *zero);
static int as5048a_writezero(FAR struct as5048a_dev_s *priv, uint16_t zero);
static int as5048a_readagc(FAR struct as5048a_dev_s *priv,
FAR uint16_t *agc);
static int as5048a_readdiag(FAR struct as5048a_dev_s *priv,
FAR uint16_t *diag);
static int as5048a_readmag(FAR struct as5048a_dev_s *priv,
FAR uint16_t *mag);
static int as5048a_readang(FAR struct as5048a_dev_s *priv,
FAR uint16_t *ang);
/* Character Driver Methods */
static int as5048a_setup(FAR struct qe_lowerhalf_s *lower);
static int as5048a_shutdown(FAR struct qe_lowerhalf_s *lower);
static int as5048a_position(FAR struct qe_lowerhalf_s *lower,
FAR int32_t *pos);
static int as5048a_reset(FAR struct qe_lowerhalf_s *lower);
static int as5048a_ioctl(FAR struct qe_lowerhalf_s *lower, int cmd,
unsigned long arg);
/****************************************************************************
* Private Data
****************************************************************************/
static const struct qe_ops_s g_qeops =
{
as5048a_setup, /* setup */
as5048a_shutdown, /* shutdown */
as5048a_position, /* position */
NULL, /* setposmax */
as5048a_reset, /* reset */
NULL, /* setindex */
as5048a_ioctl /* ioctl */
};
/****************************************************************************
* Private Functions
****************************************************************************/
/****************************************************************************
* Name: as5048a_configspi
*
* Description:
*
****************************************************************************/
static inline void as5048a_configspi(FAR struct spi_dev_s *spi)
{
/* Configure SPI for the AS5048A */
SPI_SETMODE(spi, AS5048A_SPI_MODE);
SPI_SETBITS(spi, 16);
SPI_HWFEATURES(spi, 0);
SPI_SETFREQUENCY(spi, AS5048A_SPI_MAXFREQUENCY);
}
/****************************************************************************
* Name: as5048a_writeu16
*
* Description:
* Write to two 8-bit registers
*
****************************************************************************/
static int as5048a_writeu16(FAR struct as5048a_dev_s *priv,
uint16_t regaddr, uint16_t regval)
{
uint16_t datout;
/* If SPI bus is shared then lock and configure it */
SPI_LOCK(priv->spi, true);
as5048a_configspi(priv->spi);
/* Select the AS5048A */
SPI_SELECT(priv->spi, priv->spi_devid, true);
/* Send register address and set the value */
datout = AS5048A_CMD_WRITE | regaddr;
datout |= calc_even_parity(datout) << 15;
SPI_SEND(priv->spi, datout);
datout = 0x3fff & regval;
datout |= calc_even_parity(datout) << 15;
SPI_SEND(priv->spi, datout);
/* Send NOP command */
SPI_SEND(priv->spi, 0x0000);
/* Deselect the AS5048A */
SPI_SELECT(priv->spi, priv->spi_devid, false);
/* Unlock bus */
SPI_LOCK(priv->spi, false);
return OK;
}
/****************************************************************************
* Name: as5048a_exchange
*
* Description:
* Read from 16-bit registers
*
****************************************************************************/
static int as5048a_exchange(FAR struct as5048a_dev_s *priv,
uint16_t regaddr, FAR uint16_t *regval)
{
uint16_t ret;
uint16_t dat;
uint16_t temp;
/* If SPI bus is shared then lock and configure it */
SPI_LOCK(priv->spi, true);
as5048a_configspi(priv->spi);
/* Select the AS5048A */
SPI_SELECT(priv->spi, priv->spi_devid, true);
/* Send READ command. Received data is thrown away
* this data comes from the previous command (unknown)
*/
dat = AS5048A_CMD_READ | regaddr;
dat |= calc_even_parity(dat) << 15;
/* Send register to read and get the next byte */
SPI_SEND(priv->spi, dat);
/* Send NOP command. Received data is the value of regaddr
* from the previous command
*/
dat = 0x0000; /* NOP command */
temp = SPI_SEND(priv->spi, dat);
if (temp & 0x4000)
{
/* error flag set - need to reset it */
dat = AS5048A_CMD_READ | AS5048A_CLRERR_REG;
dat |= calc_even_parity(dat) << 15;
SPI_SEND(priv->spi, dat);
snerr("ERROR: as5048a error flag set, need to reset it! %02x\n", temp);
ret = -1;
}
else
{
*regval = temp;
ret = 0;
}
/* Deselect the AS5048A */
SPI_SELECT(priv->spi, priv->spi_devid, false);
/* Unlock bus */
SPI_LOCK(priv->spi, false);
sninfo("addr: %02x value: %02x ret: %d\n", regaddr, *regval, ret);
return ret;
}
/****************************************************************************
* Name: calc_even_parity
*
* Description:
* get the even parity of input value
*
****************************************************************************/
static uint16_t calc_even_parity(uint16_t value)
{
uint16_t cnt = 0;
uint8_t i;
for (i = 0; i < 16; i++)
{
if (value & 0x1) cnt++;
value >>= 1;
}
return cnt & 0x1;
}
/****************************************************************************
* Name: as5048a_readzero
*
* Description:
* Read from the zero position registers
*
****************************************************************************/
static int as5048a_readzero(FAR struct as5048a_dev_s *priv,
FAR uint16_t *zero)
{
uint16_t hi;
uint16_t lo;
int ret;
/* Read the high 8 bits of the 13-bit value */
ret = as5048a_exchange(priv, AS5048A_ZEROHI_REG, &hi);
if (ret < 0)
{
snerr("ERROR: as5048a_readu8 failed: %d\n", ret);
return ret;
}
/* Read the low 5 bits of the 13-bit value */
ret = as5048a_exchange(priv, AS5048A_ZEROLO_REG, &lo);
if (ret < 0)
{
snerr("ERROR: as5048a_readu8 failed: %d\n", ret);
return ret;
}
*zero = (uint16_t)hi << 6 | (uint16_t)lo;
sninfo("zero: %04x ret: %d\n", *zero, ret);
return ret;
}
/****************************************************************************
* Name: as5048a_writezero
*
* Description:
* Write to the zero position registers
*
****************************************************************************/
static int as5048a_writezero(FAR struct as5048a_dev_s *priv, uint16_t zero)
{
int ret;
sninfo("zero: %04x\n", zero);
ret = as5048a_writeu16(priv, AS5048A_ZEROHI_REG, (zero >> 6));
if (ret < 0)
{
snerr("ERROR: as5048a_writeu16 failed: %d\n", ret);
}
ret = as5048a_writeu16(priv, AS5048A_ZEROLO_REG, zero);
if (ret < 0)
{
snerr("ERROR: as5048a_writeu16 failed: %d\n", ret);
}
return ret;
}
/****************************************************************************
* Name: as5048a_readagc
*
* Description:
* Read from the automatic gain control register
*
****************************************************************************/
static int as5048a_readagc(FAR struct as5048a_dev_s *priv, FAR uint16_t *agc)
{
int ret;
ret = as5048a_exchange(priv, AS5048A_AGC_REG, agc);
if (ret < 0)
{
snerr("ERROR: as5048a_exchange failed: %d\n", ret);
return ret;
}
sninfo("agc: %02x ret: %d\n", *agc, ret);
return ret;
}
/****************************************************************************
* Name: as5048a_readdiag
*
* Description:
* Read from the diagnostics register
*
****************************************************************************/
static int as5048a_readdiag(FAR struct as5048a_dev_s *priv,
FAR uint16_t *diag)
{
int ret;
ret = as5048a_exchange(priv, AS5048A_DIAG_REG, diag);
if (ret < 0)
{
snerr("ERROR: as5048a_exchange failed: %d\n", ret);
return ret;
}
sninfo("diag: %02x ret: %d\n", *diag, ret);
return ret;
}
/****************************************************************************
* Name: as5048a_readmag
*
* Description:
* Read from the magnitude registers
*
****************************************************************************/
static int as5048a_readmag(FAR struct as5048a_dev_s *priv, FAR uint16_t *mag)
{
int ret;
ret = as5048a_exchange(priv, AS5048A_MAG_REG, mag);
if (ret < 0)
{
snerr("ERROR: as5048a_exchange failed: %d\n", ret);
return ret;
}
sninfo("mag: %04x ret: %d\n", *mag, ret);
return ret;
}
/****************************************************************************
* Name: as5048a_readang
*
* Description:
* Read from the angle registers
*
****************************************************************************/
static int as5048a_readang(FAR struct as5048a_dev_s *priv, FAR uint16_t *ang)
{
int ret;
ret = as5048a_exchange(priv, AS5048A_ANGLE_REG, ang);
if (ret < 0)
{
snerr("ERROR: as5048a_exchange failed: %d\n", ret);
return ret;
}
sninfo("ang: %04x ret: %d\n", *ang, ret);
return ret;
}
/****************************************************************************
* Name: as5048a_setup
*
* Description:
* This method is called when the driver is opened
*
****************************************************************************/
static int as5048a_setup(FAR struct qe_lowerhalf_s *lower)
{
return OK;
}
/****************************************************************************
* Name: as5048a_shutdown
*
* Description:
* This method is called when the driver is closed
*
****************************************************************************/
static int as5048a_shutdown(FAR struct qe_lowerhalf_s *lower)
{
return OK;
}
/****************************************************************************
* Name: as5048a_position
*
* Description:
* Return the current position measurement
*
****************************************************************************/
static int as5048a_position(FAR struct qe_lowerhalf_s *lower,
FAR int32_t *pos)
{
FAR struct as5048a_dev_s *priv = (FAR struct as5048a_dev_s *)lower;
uint16_t ang;
int ret;
ret = as5048a_readang(priv, &ang);
if (ret < 0)
{
snerr("ERROR: as5048a_readang failed: %d\n", ret);
return ret;
}
*pos = (int32_t)ang;
return ret;
}
/****************************************************************************
* Name: as5048a_reset
*
* Description:
* Reset the position measurement to zero
*
****************************************************************************/
static int as5048a_reset(FAR struct qe_lowerhalf_s *lower)
{
FAR struct as5048a_dev_s *priv = (FAR struct as5048a_dev_s *)lower;
uint16_t ang;
int ret;
ret = as5048a_writezero(priv, 0);
if (ret < 0)
{
snerr("ERROR: as5048a_writezero failed: %d\n", ret);
return ret;
}
ret = as5048a_readang(priv, &ang);
if (ret < 0)
{
snerr("ERROR: as5048a_readang failed: %d\n", ret);
return ret;
}
ret = as5048a_writezero(priv, ang);
if (ret < 0)
{
snerr("ERROR: as5048a_writezero failed: %d\n", ret);
}
return ret;
}
/****************************************************************************
* Name: as5048a_ioctl
****************************************************************************/
static int as5048a_ioctl(FAR struct qe_lowerhalf_s *lower, int cmd,
unsigned long arg)
{
FAR struct as5048a_dev_s *priv = (FAR struct as5048a_dev_s *)lower;
int ret = OK;
switch (cmd)
{
/* Read from the zero position registers. Arg: int* pointer. */
case QEIOC_AS5048A_ZEROPOSITION:
{
FAR int *ptr = (FAR int *)((uintptr_t)arg);
uint16_t zero;
DEBUGASSERT(ptr != NULL);
ret = as5048a_readzero(priv, &zero);
if (ret == OK)
{
*ptr = (int)zero;
}
sninfo("zero: %04x ret: %d\n", *ptr, ret);
}
break;
/* Read from the automatic gain control register */
case QEIOC_AS5048A_AUTOGAINCTL:
{
FAR uint16_t *ptr = (FAR uint16_t *)((uintptr_t)arg);
DEBUGASSERT(ptr != NULL);
ret = as5048a_readagc(priv, ptr);
sninfo("agc: %02x ret: %d\n", *ptr, ret);
}
break;
/* Read from the diagnostics register. Arg: uint8_t* pointer. */
case QEIOC_AS5048A_DIAGNOSTICS:
{
FAR uint16_t *ptr = (FAR uint16_t *)((uintptr_t)arg);
DEBUGASSERT(ptr != NULL);
ret = as5048a_readdiag(priv, ptr);
sninfo("diag: %02x ret: %d\n", *ptr, ret);
}
break;
/* Read from the magnitude registers. Arg: int* pointer. */
case QEIOC_AS5048A_MAGNITUDE:
{
FAR int *ptr = (FAR int *)((uintptr_t)arg);
uint16_t mag;
DEBUGASSERT(ptr != NULL);
ret = as5048a_readmag(priv, &mag);
if (ret == OK)
{
*ptr = (int)mag;
}
sninfo("mag: %04x ret: %d\n", *ptr, ret);
}
break;
default:
snerr("ERROR: Unrecognized cmd: %d arg: %ld\n", cmd, arg);
ret = -ENOTTY;
break;
}
return ret;
}
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: as5048a_initialize
*
* Description:
* Initialize the AS5048A device.
*
* Input Parameters:
* spi - An SPI driver instance.
*
* Returned Value:
* A new lower half encoder interface for the AS5048A on success;
* NULL on failure.
*
****************************************************************************/
FAR struct qe_lowerhalf_s *as5048a_initialize(FAR struct spi_dev_s *spi,
int spi_devid)
{
FAR struct as5048a_dev_s *priv;
DEBUGASSERT(spi != NULL);
/* Initialize the device's structure */
priv = (FAR struct as5048a_dev_s *)kmm_malloc(sizeof(*priv));
if (priv == NULL)
{
snerr("ERROR: Failed to allocate instance\n");
return NULL;
}
priv->lower.ops = &g_qeops;
priv->spi = spi;
priv->spi_devid = spi_devid;
return &priv->lower;
}
#endif /* CONFIG_SENSORS_AS5048A */

View File

@ -0,0 +1,146 @@
/****************************************************************************
* include/nuttx/sensors/as5048a.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
#ifndef __INCLUDE_NUTTX_SENSORS_AS5048A_H
#define __INCLUDE_NUTTX_SENSORS_AS5048A_H
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <nuttx/fs/ioctl.h>
#include <nuttx/spi/spi.h>
#include <nuttx/sensors/qencoder.h>
#if defined(CONFIG_SENSORS_AS5048A)
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
/* Configuration ************************************************************
* Prerequisites:
*
* CONFIG_SPI
* Enables support for SPI drivers
* CONFIG_AS5048A
* Enables support for the AS5048A driver
*/
/* The device always operates in mode 0 */
#define AS5048A_SPI_MODE SPIDEV_MODE1 /* Mode 1 */
/* SPI frequency */
#define AS5048A_SPI_MAXFREQUENCY 1000000 /* 1MHz */
/* IOCTL Commands ***********************************************************/
/* Arg: int32_t* pointer */
#define QEIOC_AS5048A_ZEROPOSITION _QEIOC(QE_AS5048A_FIRST+0)
/* Arg: uint8_t* pointer */
#define QEIOC_AS5048A_AUTOGAINCTL _QEIOC(QE_AS5048A_FIRST+1)
/* Arg: uint8_t* pointer */
#define QEIOC_AS5048A_DIAGNOSTICS _QEIOC(QE_AS5048A_FIRST+2)
/* Arg: int32_t* pointer */
#define QEIOC_AS5048A_MAGNITUDE _QEIOC(QE_AS5048A_FIRST+3)
/* Resolution ***************************************************************/
#define AS5048A_MAX 0x3fff /* Maximum value (14 bits) */
/* Register Definitions *****************************************************/
/* Register Addresses */
#define AS5048A_CMD_READ 0x4000 /* flag indicating read attempt */
#define AS5048A_CMD_WRITE 0x0000 /* flag indicating write attempt */
#define AS5048A_CLRERR_REG 0x1 /* clear error register */
#define AS5048A_PROG_REG 0x03 /* Programming Control Register */
#define AS5048A_ZEROLO_REG 0x17 /* Zero Position Register Bits 0~5 */
#define AS5048A_ZEROHI_REG 0x16 /* Zero Position Register Bits 6~13 */
#define AS5048A_AGC_REG 0x3ffd /* Automatic Gain Control Register */
#define AS5048A_DIAG_REG 0x3ffd /* Diagnostics Register */
#define AS5048A_MAG_REG 0x3ffe /* Magnitude Register Bits 0~13 */
#define AS5048A_ANGLE_REG 0x3fff /* Angle Register Bits 0~13 */
/* Programming Control Register Bit Definitions */
#define AS5048A_PROG_ENABLE (1 << 0)
#define AS5048A_PROG_BURN (1 << 3)
#define AS5048A_PROG_VERIFY (1 << 6)
/* Diagnostics Register Bit Definitions */
#define AS5048A_DIAG_OCF (1 << 8) /* Offset Compensation Finished */
#define AS5048A_DIAG_COF (1 << 9) /* Cordic Overflow */
#define AS5048A_DIAG_COMPLOW (1 << 10) /* High Magnetic Field */
#define AS5048A_DIAG_COMPHIGH (1 << 11) /* Low Magnetic Field */
/****************************************************************************
* Public Types
****************************************************************************/
/****************************************************************************
* Public Function Prototypes
****************************************************************************/
#ifdef __cplusplus
#define EXTERN extern "C"
extern "C"
{
#else
#define EXTERN extern
#endif
/****************************************************************************
* Name: as5048a_initialize
*
* Description:
* Initialize the AS5048A device.
*
* Input Parameters:
* spi - An SPI driver instance.
*
* Returned Value:
* A new lower half encoder interface for the AS5048A on success;
* NULL on failure.
*
****************************************************************************/
FAR struct qe_lowerhalf_s *as5048a_initialize(FAR struct spi_dev_s *spi,
int spi_devid);
#undef EXTERN
#ifdef __cplusplus
}
#endif
#endif /* CONFIG_SENSORS_AS5048A */
#endif /* __INCLUDE_NUTTX_SENSORS_AS5048A_H */

View File

@ -86,6 +86,11 @@
#define QE_IMXRT_FIRST (QE_AS5048B_FIRST + QE_AS5048B_NCMDS)
#define QE_IMXRT_NCMDS 7
/* See include/nuttx/sensors/as5048a.h */
#define QE_AS5048A_FIRST (QE_IMXRT_FIRST + QE_IMXRT_NCMDS)
#define QE_AS5048A_NCMDS 4
/****************************************************************************
* Public Types
****************************************************************************/