iio: imu: adis: Add self_test_reg variable
authorNuno Sá <nuno.sa@analog.com>
Mon, 10 Feb 2020 13:26:02 +0000 (15:26 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 8 Mar 2020 17:28:30 +0000 (17:28 +0000)
This patch adds a dedicated self_test_reg variable. This is also a step
to let new drivers make use of `adis_initial_startup()`. Some devices
use MSG_CTRL reg to request a self_test command while others use the
GLOB_CMD register.

Signed-off-by: Nuno Sá <nuno.sa@analog.com>
Signed-off-by: Alexandru Ardelean <alexandru.ardelean@analog.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/accel/adis16201.c
drivers/iio/accel/adis16209.c
drivers/iio/gyro/adis16136.c
drivers/iio/gyro/adis16260.c
drivers/iio/imu/adis.c
drivers/iio/imu/adis16400.c
drivers/iio/imu/adis16460.c
drivers/iio/imu/adis16480.c
drivers/staging/iio/accel/adis16203.c
drivers/staging/iio/accel/adis16240.c
include/linux/iio/imu/adis.h

index 0f0f27a..4154e73 100644 (file)
@@ -246,6 +246,7 @@ static const struct adis_data adis16201_data = {
        .diag_stat_reg = ADIS16201_DIAG_STAT_REG,
 
        .self_test_mask = ADIS16201_MSC_CTRL_SELF_TEST_EN,
+       .self_test_reg = ADIS16201_MSC_CTRL_REG,
        .self_test_no_autoclear = true,
        .timeouts = &adis16201_timeouts,
 
index c6dbd24..31d45e7 100644 (file)
@@ -256,6 +256,7 @@ static const struct adis_data adis16209_data = {
        .diag_stat_reg = ADIS16209_STAT_REG,
 
        .self_test_mask = ADIS16209_MSC_CTRL_SELF_TEST_EN,
+       .self_test_reg = ADIS16209_MSC_CTRL_REG,
        .self_test_no_autoclear = true,
        .timeouts = &adis16209_timeouts,
 
index 1db1131..a4c967a 100644 (file)
@@ -471,6 +471,7 @@ static const char * const adis16136_status_error_msgs[] = {
        .diag_stat_reg = ADIS16136_REG_DIAG_STAT,                       \
        .glob_cmd_reg = ADIS16136_REG_GLOB_CMD,                         \
        .msc_ctrl_reg = ADIS16136_REG_MSC_CTRL,                         \
+       .self_test_reg = ADIS16136_REG_MSC_CTRL,                        \
        .self_test_mask = ADIS16136_MSC_CTRL_SELF_TEST,                 \
        .read_delay = 10,                                               \
        .write_delay = 10,                                              \
index be09b3e..9823573 100644 (file)
@@ -346,6 +346,7 @@ static const struct adis_data adis16260_data = {
        .diag_stat_reg = ADIS16260_DIAG_STAT,
 
        .self_test_mask = ADIS16260_MSC_CTRL_MEM_TEST,
+       .self_test_reg = ADIS16260_MSC_CTRL,
        .timeouts = &adis16260_timeouts,
 
        .status_error_msgs = adis1620_status_error_msgs,
index e4897da..f7845a9 100644 (file)
@@ -346,8 +346,8 @@ static int adis_self_test(struct adis *adis)
        int ret;
        const struct adis_timeout *timeouts = adis->data->timeouts;
 
-       ret = __adis_write_reg_16(adis, adis->data->msc_ctrl_reg,
-                       adis->data->self_test_mask);
+       ret = __adis_write_reg_16(adis, adis->data->self_test_reg,
+                                 adis->data->self_test_mask);
        if (ret) {
                dev_err(&adis->spi->dev, "Failed to initiate self test: %d\n",
                        ret);
@@ -359,7 +359,7 @@ static int adis_self_test(struct adis *adis)
        ret = __adis_check_status(adis);
 
        if (adis->data->self_test_no_autoclear)
-               __adis_write_reg_16(adis, adis->data->msc_ctrl_reg, 0x00);
+               __adis_write_reg_16(adis, adis->data->self_test_reg, 0x00);
 
        return ret;
 }
index 1c0770e..05e70c1 100644 (file)
@@ -956,6 +956,7 @@ static const char * const adis16400_status_error_msgs[] = {
        .read_delay = 50,                                               \
        .write_delay = 50,                                              \
        .self_test_mask = ADIS16400_MSC_CTRL_MEM_TEST,                  \
+       .self_test_reg = ADIS16400_MSC_CTRL,                            \
        .status_error_msgs = adis16400_status_error_msgs,               \
        .status_error_mask = BIT(ADIS16400_DIAG_STAT_ZACCL_FAIL) |      \
                BIT(ADIS16400_DIAG_STAT_YACCL_FAIL) |                   \
index 9539cfe..42fa473 100644 (file)
@@ -392,6 +392,8 @@ static const struct adis_timeout adis16460_timeouts = {
 static const struct adis_data adis16460_data = {
        .diag_stat_reg = ADIS16460_REG_DIAG_STAT,
        .glob_cmd_reg = ADIS16460_REG_GLOB_CMD,
+       .self_test_mask = BIT(2),
+       .self_test_reg = ADIS16460_REG_GLOB_CMD,
        .has_paging = false,
        .read_delay = 5,
        .write_delay = 5,
index 4c4de1b..acbe170 100644 (file)
@@ -830,6 +830,7 @@ static int adis16480_enable_irq(struct adis *adis, bool enable);
        .read_delay = 5,                                                \
        .write_delay = 5,                                               \
        .self_test_mask = BIT(1),                                       \
+       .self_test_reg = ADIS16480_REG_GLOB_CMD,                        \
        .status_error_msgs = adis16480_status_error_msgs,               \
        .status_error_mask = BIT(ADIS16480_DIAG_STAT_XGYRO_FAIL) |      \
                BIT(ADIS16480_DIAG_STAT_YGYRO_FAIL) |                   \
index 39dfe3f..fef52d9 100644 (file)
@@ -250,6 +250,7 @@ static const struct adis_data adis16203_data = {
        .diag_stat_reg = ADIS16203_DIAG_STAT,
 
        .self_test_mask = ADIS16203_MSC_CTRL_SELF_TEST_EN,
+       .self_test_reg = ADIS16203_MSC_CTRL,
        .self_test_no_autoclear = true,
        .timeouts = &adis16203_timeouts,
 
index 39eb836..8bd35c6 100644 (file)
@@ -373,6 +373,7 @@ static const struct adis_data adis16240_data = {
        .diag_stat_reg = ADIS16240_DIAG_STAT,
 
        .self_test_mask = ADIS16240_MSC_CTRL_SELF_TEST_EN,
+       .self_test_reg = ADIS16240_MSC_CTRL,
        .self_test_no_autoclear = true,
        .timeouts = &adis16240_timeouts,
 
index 15e7567..b7feca4 100644 (file)
@@ -41,6 +41,7 @@ struct adis_timeout {
  * @glob_cmd_reg: Register address of the GLOB_CMD register
  * @msc_ctrl_reg: Register address of the MSC_CTRL register
  * @diag_stat_reg: Register address of the DIAG_STAT register
+ * @self_test_reg: Register address to request self test command
  * @status_error_msgs: Array of error messgaes
  * @status_error_mask:
  * @timeouts: Chip specific delays
@@ -55,6 +56,7 @@ struct adis_data {
        unsigned int diag_stat_reg;
 
        unsigned int self_test_mask;
+       unsigned int self_test_reg;
        bool self_test_no_autoclear;
        const struct adis_timeout *timeouts;