Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 338318
b: refs/heads/master
c: dd2c101
h: refs/heads/master
v: v3
  • Loading branch information
Lars-Peter Clausen authored and Jonathan Cameron committed Nov 30, 2012
1 parent 55d037f commit 7503bcb
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 22 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d21f30c99e7c46cceb19f45e378a8d6a0a707428
refs/heads/master: dd2c101348cb725cfd3c9aa6c53c3443f2746c93
44 changes: 26 additions & 18 deletions trunk/drivers/staging/iio/adc/ad7793.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ static int ad7793_calibrate_all(struct ad7793_state *st)
}

static int ad7793_setup(struct iio_dev *indio_dev,
const struct ad7793_platform_data *pdata)
const struct ad7793_platform_data *pdata,
unsigned int vref_mv)
{
struct ad7793_state *st = iio_priv(indio_dev);
int i, ret = -1;
Expand Down Expand Up @@ -175,7 +176,7 @@ static int ad7793_setup(struct iio_dev *indio_dev,

/* Populate available ADC input ranges */
for (i = 0; i < ARRAY_SIZE(st->scale_avail); i++) {
scale_uv = ((u64)st->int_vref_mv * 100000000)
scale_uv = ((u64)vref_mv * 100000000)
>> (st->chip_info->channels[0].scan_type.realbits -
(!!(st->conf & AD7793_CONF_UNIPOLAR) ? 0 : 1));
scale_uv >>= i;
Expand Down Expand Up @@ -463,7 +464,7 @@ static int ad7793_probe(struct spi_device *spi)
const struct ad7793_platform_data *pdata = spi->dev.platform_data;
struct ad7793_state *st;
struct iio_dev *indio_dev;
int ret, voltage_uv = 0;
int ret, vref_mv = 0;

if (!pdata) {
dev_err(&spi->dev, "no platform data?\n");
Expand All @@ -483,25 +484,31 @@ static int ad7793_probe(struct spi_device *spi)

ad_sd_init(&st->sd, indio_dev, spi, &ad7793_sigma_delta_info);

st->reg = regulator_get(&spi->dev, "vcc");
if (!IS_ERR(st->reg)) {
if (pdata->refsel != AD7793_REFSEL_INTERNAL) {
st->reg = regulator_get(&spi->dev, "refin");
if (IS_ERR(st->reg)) {
ret = PTR_ERR(st->reg);
goto error_device_free;
}

ret = regulator_enable(st->reg);
if (ret)
goto error_put_reg;

voltage_uv = regulator_get_voltage(st->reg);
vref_mv = regulator_get_voltage(st->reg);
if (vref_mv < 0) {
ret = vref_mv;
goto error_disable_reg;
}

vref_mv /= 1000;
} else {
vref_mv = 1170; /* Build-in ref */
}

st->chip_info =
&ad7793_chip_info_tbl[spi_get_device_id(spi)->driver_data];

if (pdata && pdata->vref_mv)
st->int_vref_mv = pdata->vref_mv;
else if (voltage_uv)
st->int_vref_mv = voltage_uv / 1000;
else
st->int_vref_mv = 1170; /* Build-in ref */

spi_set_drvdata(spi, indio_dev);

indio_dev->dev.parent = &spi->dev;
Expand All @@ -515,7 +522,7 @@ static int ad7793_probe(struct spi_device *spi)
if (ret)
goto error_disable_reg;

ret = ad7793_setup(indio_dev, pdata);
ret = ad7793_setup(indio_dev, pdata, vref_mv);
if (ret)
goto error_remove_trigger;

Expand All @@ -528,26 +535,27 @@ static int ad7793_probe(struct spi_device *spi)
error_remove_trigger:
ad_sd_cleanup_buffer_and_trigger(indio_dev);
error_disable_reg:
if (!IS_ERR(st->reg))
if (pdata->refsel != AD7793_REFSEL_INTERNAL)
regulator_disable(st->reg);
error_put_reg:
if (!IS_ERR(st->reg))
if (pdata->refsel != AD7793_REFSEL_INTERNAL)
regulator_put(st->reg);

error_device_free:
iio_device_free(indio_dev);

return ret;
}

static int ad7793_remove(struct spi_device *spi)
{
const struct ad7793_platform_data *pdata = spi->dev.platform_data;
struct iio_dev *indio_dev = spi_get_drvdata(spi);
struct ad7793_state *st = iio_priv(indio_dev);

iio_device_unregister(indio_dev);
ad_sd_cleanup_buffer_and_trigger(indio_dev);

if (!IS_ERR(st->reg)) {
if (pdata->refsel != AD7793_REFSEL_INTERNAL) {
regulator_disable(st->reg);
regulator_put(st->reg);
}
Expand Down
3 changes: 0 additions & 3 deletions trunk/drivers/staging/iio/adc/ad7793.h
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ enum ad7793_excitation_current {

/**
* struct ad7793_platform_data - AD7793 platform data
* @vref_mv: Reference voltage in milli-Volt
* @clock_src: Clock source selection
* @burnout_current: If set to true the 100nA burnout current is enabled.
* @boost_enable: Enable boost for the bias voltage generator.
Expand All @@ -195,8 +194,6 @@ enum ad7793_excitation_current {
* @current_source_direction: Excitation current direction selection
*/
struct ad7793_platform_data {
u16 vref_mv;

enum ad7793_clock_source clock_src;
bool burnout_current;
bool boost_enable;
Expand Down

0 comments on commit 7503bcb

Please sign in to comment.