Commit f356dc6e authored by Nishad Kamdar's avatar Nishad Kamdar Committed by Jonathan Cameron

staging: iio: ad2s1210: Switch to the gpio descriptor interface

Use the gpiod interface instead of the deprecated old non-descriptor
interface.
Signed-off-by: default avatarNishad Kamdar <nishadkamdar@gmail.com>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 74cf7b86
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/sysfs.h> #include <linux/sysfs.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/gpio.h> #include <linux/gpio/consumer.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/iio/iio.h> #include <linux/iio/iio.h>
...@@ -67,12 +67,42 @@ enum ad2s1210_mode { ...@@ -67,12 +67,42 @@ enum ad2s1210_mode {
MOD_RESERVED, MOD_RESERVED,
}; };
enum ad2s1210_gpios {
AD2S1210_SAMPLE,
AD2S1210_A0,
AD2S1210_A1,
AD2S1210_RES0,
AD2S1210_RES1,
};
struct ad2s1210_gpio {
const char *name;
unsigned long flags;
};
static const struct ad2s1210_gpio gpios_in[] = {
[AD2S1210_SAMPLE] = { .name = "adi,sample", .flags = GPIOD_IN },
[AD2S1210_A0] = { .name = "adi,a0", .flags = GPIOD_IN },
[AD2S1210_A1] = { .name = "adi,a1", .flags = GPIOD_IN },
[AD2S1210_RES0] = { .name = "adi,res0", .flags = GPIOD_IN },
[AD2S1210_RES1] = { .name = "adi,res1", .flags = GPIOD_IN },
};
static const struct ad2s1210_gpio gpios_out[] = {
[AD2S1210_SAMPLE] = { .name = "adi,sample", .flags = GPIOD_OUT_LOW },
[AD2S1210_A0] = { .name = "adi,a0", .flags = GPIOD_OUT_LOW },
[AD2S1210_A1] = { .name = "adi,a1", .flags = GPIOD_OUT_LOW },
[AD2S1210_RES0] = { .name = "adi,res0", .flags = GPIOD_OUT_LOW },
[AD2S1210_RES1] = { .name = "adi,res1", .flags = GPIOD_OUT_LOW },
};
static const unsigned int ad2s1210_resolution_value[] = { 10, 12, 14, 16 }; static const unsigned int ad2s1210_resolution_value[] = { 10, 12, 14, 16 };
struct ad2s1210_state { struct ad2s1210_state {
const struct ad2s1210_platform_data *pdata; const struct ad2s1210_platform_data *pdata;
struct mutex lock; struct mutex lock;
struct spi_device *sdev; struct spi_device *sdev;
struct gpio_desc *gpios[5];
unsigned int fclkin; unsigned int fclkin;
unsigned int fexcit; unsigned int fexcit;
bool hysteresis; bool hysteresis;
...@@ -91,8 +121,8 @@ static const int ad2s1210_mode_vals[4][2] = { ...@@ -91,8 +121,8 @@ static const int ad2s1210_mode_vals[4][2] = {
static inline void ad2s1210_set_mode(enum ad2s1210_mode mode, static inline void ad2s1210_set_mode(enum ad2s1210_mode mode,
struct ad2s1210_state *st) struct ad2s1210_state *st)
{ {
gpio_set_value(st->pdata->a[0], ad2s1210_mode_vals[mode][0]); gpiod_set_value(st->gpios[AD2S1210_A0], ad2s1210_mode_vals[mode][0]);
gpio_set_value(st->pdata->a[1], ad2s1210_mode_vals[mode][1]); gpiod_set_value(st->gpios[AD2S1210_A1], ad2s1210_mode_vals[mode][1]);
st->mode = mode; st->mode = mode;
} }
...@@ -152,8 +182,8 @@ int ad2s1210_update_frequency_control_word(struct ad2s1210_state *st) ...@@ -152,8 +182,8 @@ int ad2s1210_update_frequency_control_word(struct ad2s1210_state *st)
static unsigned char ad2s1210_read_resolution_pin(struct ad2s1210_state *st) static unsigned char ad2s1210_read_resolution_pin(struct ad2s1210_state *st)
{ {
int resolution = (gpio_get_value(st->pdata->res[0]) << 1) | int resolution = (gpiod_get_value(st->gpios[AD2S1210_RES0]) << 1) |
gpio_get_value(st->pdata->res[1]); gpiod_get_value(st->gpios[AD2S1210_RES1]);
return ad2s1210_resolution_value[resolution]; return ad2s1210_resolution_value[resolution];
} }
...@@ -164,10 +194,10 @@ static const int ad2s1210_res_pins[4][2] = { ...@@ -164,10 +194,10 @@ static const int ad2s1210_res_pins[4][2] = {
static inline void ad2s1210_set_resolution_pin(struct ad2s1210_state *st) static inline void ad2s1210_set_resolution_pin(struct ad2s1210_state *st)
{ {
gpio_set_value(st->pdata->res[0], gpiod_set_value(st->gpios[AD2S1210_RES0],
ad2s1210_res_pins[(st->resolution - 10) / 2][0]); ad2s1210_res_pins[(st->resolution - 10) / 2][0]);
gpio_set_value(st->pdata->res[1], gpiod_set_value(st->gpios[AD2S1210_RES1],
ad2s1210_res_pins[(st->resolution - 10) / 2][1]); ad2s1210_res_pins[(st->resolution - 10) / 2][1]);
} }
static inline int ad2s1210_soft_reset(struct ad2s1210_state *st) static inline int ad2s1210_soft_reset(struct ad2s1210_state *st)
...@@ -401,15 +431,15 @@ static ssize_t ad2s1210_clear_fault(struct device *dev, ...@@ -401,15 +431,15 @@ static ssize_t ad2s1210_clear_fault(struct device *dev,
int ret; int ret;
mutex_lock(&st->lock); mutex_lock(&st->lock);
gpio_set_value(st->pdata->sample, 0); gpiod_set_value(st->gpios[AD2S1210_SAMPLE], 0);
/* delay (2 * tck + 20) nano seconds */ /* delay (2 * tck + 20) nano seconds */
udelay(1); udelay(1);
gpio_set_value(st->pdata->sample, 1); gpiod_set_value(st->gpios[AD2S1210_SAMPLE], 1);
ret = ad2s1210_config_read(st, AD2S1210_REG_FAULT); ret = ad2s1210_config_read(st, AD2S1210_REG_FAULT);
if (ret < 0) if (ret < 0)
goto error_ret; goto error_ret;
gpio_set_value(st->pdata->sample, 0); gpiod_set_value(st->gpios[AD2S1210_SAMPLE], 0);
gpio_set_value(st->pdata->sample, 1); gpiod_set_value(st->gpios[AD2S1210_SAMPLE], 1);
error_ret: error_ret:
mutex_unlock(&st->lock); mutex_unlock(&st->lock);
...@@ -466,7 +496,7 @@ static int ad2s1210_read_raw(struct iio_dev *indio_dev, ...@@ -466,7 +496,7 @@ static int ad2s1210_read_raw(struct iio_dev *indio_dev,
s16 vel; s16 vel;
mutex_lock(&st->lock); mutex_lock(&st->lock);
gpio_set_value(st->pdata->sample, 0); gpiod_set_value(st->gpios[AD2S1210_SAMPLE], 0);
/* delay (6 * tck + 20) nano seconds */ /* delay (6 * tck + 20) nano seconds */
udelay(1); udelay(1);
...@@ -512,7 +542,7 @@ static int ad2s1210_read_raw(struct iio_dev *indio_dev, ...@@ -512,7 +542,7 @@ static int ad2s1210_read_raw(struct iio_dev *indio_dev,
} }
error_ret: error_ret:
gpio_set_value(st->pdata->sample, 1); gpiod_set_value(st->gpios[AD2S1210_SAMPLE], 1);
/* delay (2 * tck + 20) nano seconds */ /* delay (2 * tck + 20) nano seconds */
udelay(1); udelay(1);
mutex_unlock(&st->lock); mutex_unlock(&st->lock);
...@@ -630,30 +660,24 @@ static const struct iio_info ad2s1210_info = { ...@@ -630,30 +660,24 @@ static const struct iio_info ad2s1210_info = {
static int ad2s1210_setup_gpios(struct ad2s1210_state *st) static int ad2s1210_setup_gpios(struct ad2s1210_state *st)
{ {
unsigned long flags = st->pdata->gpioin ? GPIOF_DIR_IN : GPIOF_DIR_OUT; const struct ad2s1210_gpio *pin = st->pdata->gpioin ?
struct gpio ad2s1210_gpios[] = { &gpios_in[0] : &gpios_out[0];
{ st->pdata->sample, GPIOF_DIR_IN, "sample" }, struct spi_device *spi = st->sdev;
{ st->pdata->a[0], flags, "a0" }, int i, ret;
{ st->pdata->a[1], flags, "a1" },
{ st->pdata->res[0], flags, "res0" }, for (i = 0; i < ARRAY_SIZE(gpios_in); i++) {
{ st->pdata->res[0], flags, "res1" }, st->gpios[i] = devm_gpiod_get(&spi->dev, pin[i].name,
}; pin[i].flags);
if (IS_ERR(st->gpios[i])) {
return gpio_request_array(ad2s1210_gpios, ARRAY_SIZE(ad2s1210_gpios)); ret = PTR_ERR(st->gpios[i]);
} dev_err(&spi->dev,
"ad2s1210: failed to request %s GPIO: %d\n",
static void ad2s1210_free_gpios(struct ad2s1210_state *st) pin[i].name, ret);
{ return ret;
unsigned long flags = st->pdata->gpioin ? GPIOF_DIR_IN : GPIOF_DIR_OUT; }
struct gpio ad2s1210_gpios[] = { }
{ st->pdata->sample, GPIOF_DIR_IN, "sample" },
{ st->pdata->a[0], flags, "a0" },
{ st->pdata->a[1], flags, "a1" },
{ st->pdata->res[0], flags, "res0" },
{ st->pdata->res[0], flags, "res1" },
};
gpio_free_array(ad2s1210_gpios, ARRAY_SIZE(ad2s1210_gpios)); return 0;
} }
static int ad2s1210_probe(struct spi_device *spi) static int ad2s1210_probe(struct spi_device *spi)
...@@ -692,7 +716,7 @@ static int ad2s1210_probe(struct spi_device *spi) ...@@ -692,7 +716,7 @@ static int ad2s1210_probe(struct spi_device *spi)
ret = iio_device_register(indio_dev); ret = iio_device_register(indio_dev);
if (ret) if (ret)
goto error_free_gpios; return ret;
st->fclkin = spi->max_speed_hz; st->fclkin = spi->max_speed_hz;
spi->mode = SPI_MODE_3; spi->mode = SPI_MODE_3;
...@@ -700,10 +724,6 @@ static int ad2s1210_probe(struct spi_device *spi) ...@@ -700,10 +724,6 @@ static int ad2s1210_probe(struct spi_device *spi)
ad2s1210_initial(st); ad2s1210_initial(st);
return 0; return 0;
error_free_gpios:
ad2s1210_free_gpios(st);
return ret;
} }
static int ad2s1210_remove(struct spi_device *spi) static int ad2s1210_remove(struct spi_device *spi)
...@@ -711,7 +731,6 @@ static int ad2s1210_remove(struct spi_device *spi) ...@@ -711,7 +731,6 @@ static int ad2s1210_remove(struct spi_device *spi)
struct iio_dev *indio_dev = spi_get_drvdata(spi); struct iio_dev *indio_dev = spi_get_drvdata(spi);
iio_device_unregister(indio_dev); iio_device_unregister(indio_dev);
ad2s1210_free_gpios(iio_priv(indio_dev));
return 0; return 0;
} }
......
...@@ -12,9 +12,6 @@ ...@@ -12,9 +12,6 @@
#define _AD2S1210_H #define _AD2S1210_H
struct ad2s1210_platform_data { struct ad2s1210_platform_data {
unsigned int sample;
unsigned int a[2];
unsigned int res[2];
bool gpioin; bool gpioin;
}; };
#endif /* _AD2S1210_H */ #endif /* _AD2S1210_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment