Skip to content

Commit

Permalink
iio:imu:adis: Add debugfs register access support
Browse files Browse the repository at this point in the history
Provide a IIO debugfs register access function for the ADIS library. This
function can be used by individual drivers to allow raw register access via
debugfs.

Signed-off-by: Lars-Peter Clausen <[email protected]>
Signed-off-by: Jonathan Cameron <[email protected]>
  • Loading branch information
larsclausen authored and jic23 committed Nov 20, 2012
1 parent 709ab36 commit 78026a6
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
23 changes: 23 additions & 0 deletions drivers/iio/imu/adis.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,29 @@ int adis_read_reg_16(struct adis *adis, unsigned int reg, uint16_t *val)
}
EXPORT_SYMBOL_GPL(adis_read_reg_16);

#ifdef CONFIG_DEBUG_FS

int adis_debugfs_reg_access(struct iio_dev *indio_dev,
unsigned int reg, unsigned int writeval, unsigned int *readval)
{
struct adis *adis = iio_device_get_drvdata(indio_dev);

if (readval) {
uint16_t val16;
int ret;

ret = adis_read_reg_16(adis, reg, &val16);
*readval = val16;

return ret;
} else {
return adis_write_reg_16(adis, reg, writeval);
}
}
EXPORT_SYMBOL(adis_debugfs_reg_access);

#endif

/**
* adis_enable_irq() - Enable or disable data ready IRQ
* @adis: The adis device
Expand Down
11 changes: 11 additions & 0 deletions include/linux/iio/imu/adis.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,4 +183,15 @@ static inline void adis_remove_trigger(struct adis *adis)

#endif /* CONFIG_IIO_BUFFER */

#ifdef CONFIG_DEBUG_FS

int adis_debugfs_reg_access(struct iio_dev *indio_dev,
unsigned int reg, unsigned int writeval, unsigned int *readval);

#else

#define adis_debugfs_reg_access NULL

#endif

#endif

0 comments on commit 78026a6

Please sign in to comment.