devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
  • [parent not found: <20200928090959.88842-4-cristian.pop@analog.com>]
  • * [PATCH v7 1/5] iio: core: Add optional symbolic label to a device channel
    @ 2020-11-02 14:16 Cristian Pop
      2020-11-02 14:16 ` [PATCH v7 4/5] dt-bindings:iio:adc:adi,ad7768-1: Add documentation for channel label Cristian Pop
      0 siblings, 1 reply; 5+ messages in thread
    From: Cristian Pop @ 2020-11-02 14:16 UTC (permalink / raw)
      To: linux-iio, linux-kernel; +Cc: jic23, devicetree, robh+dt, Cristian Pop
    
    If a label is defined in the device tree for this channel add that
    to the channel specific attributes. This is useful for userspace to
    be able to identify an individual channel.
    
    Signed-off-by: Cristian Pop <cristian.pop@analog.com>
    ---
     drivers/iio/industrialio-core.c | 40 +++++++++++++++++++++++++++++++++
     include/linux/iio/iio.h         |  6 +++++
     2 files changed, 46 insertions(+)
    
    diff --git a/drivers/iio/industrialio-core.c b/drivers/iio/industrialio-core.c
    index 6e388293c828..b577fff35641 100644
    --- a/drivers/iio/industrialio-core.c
    +++ b/drivers/iio/industrialio-core.c
    @@ -669,6 +669,19 @@ ssize_t iio_format_value(char *buf, unsigned int type, int size, int *vals)
     }
     EXPORT_SYMBOL_GPL(iio_format_value);
     
    +static ssize_t iio_read_channel_label(struct device *dev,
    +				      struct device_attribute *attr,
    +				      char *buf)
    +{
    +	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
    +	struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
    +
    +	if (!indio_dev->info->read_label)
    +		return -EINVAL;
    +
    +	return indio_dev->info->read_label(indio_dev, this_attr->c, buf);
    +}
    +
     static ssize_t iio_read_channel_info(struct device *dev,
     				     struct device_attribute *attr,
     				     char *buf)
    @@ -1137,6 +1150,28 @@ int __iio_add_chan_devattr(const char *postfix,
     	return ret;
     }
     
    +static int iio_device_add_channel_label(struct iio_dev *indio_dev,
    +					 struct iio_chan_spec const *chan)
    +{
    +	int ret;
    +
    +	if (!indio_dev->info->read_label)
    +		return 0;
    +
    +	ret = __iio_add_chan_devattr("label",
    +				     chan,
    +				     &iio_read_channel_label,
    +				     NULL,
    +				     0,
    +				     IIO_SEPARATE,
    +				     &indio_dev->dev,
    +				     &indio_dev->channel_attr_list);
    +	if (ret < 0)
    +		return ret;
    +
    +	return 1;
    +}
    +
     static int iio_device_add_info_mask_type(struct iio_dev *indio_dev,
     					 struct iio_chan_spec const *chan,
     					 enum iio_shared_by shared_by,
    @@ -1270,6 +1305,11 @@ static int iio_device_add_channel_sysfs(struct iio_dev *indio_dev,
     		return ret;
     	attrcount += ret;
     
    +	ret = iio_device_add_channel_label(indio_dev, chan);
    +	if (ret < 0)
    +		return ret;
    +	attrcount += ret;
    +
     	if (chan->ext_info) {
     		unsigned int i = 0;
     		for (ext_info = chan->ext_info; ext_info->name; ext_info++) {
    diff --git a/include/linux/iio/iio.h b/include/linux/iio/iio.h
    index 2e45b3ceafa7..9a3cf4815148 100644
    --- a/include/linux/iio/iio.h
    +++ b/include/linux/iio/iio.h
    @@ -362,6 +362,8 @@ struct iio_trigger; /* forward declaration */
      *			and max. For lists, all possible values are enumerated.
      * @write_raw:		function to write a value to the device.
      *			Parameters are the same as for read_raw.
    + * @read_label:		function to request label name for a specified label,
    + *			for better channel identification.
      * @write_raw_get_fmt:	callback function to query the expected
      *			format/precision. If not set by the driver, write_raw
      *			returns IIO_VAL_INT_PLUS_MICRO.
    @@ -420,6 +422,10 @@ struct iio_info {
     			 int val2,
     			 long mask);
     
    +	int (*read_label)(struct iio_dev *indio_dev,
    +			 struct iio_chan_spec const *chan,
    +			 char *label);
    +
     	int (*write_raw_get_fmt)(struct iio_dev *indio_dev,
     			 struct iio_chan_spec const *chan,
     			 long mask);
    -- 
    2.17.1
    
    
    ^ permalink raw reply related	[flat|nested] 5+ messages in thread
    * [PATCH v7 1/5] iio: core: Add optional symbolic label to a device channel
    @ 2020-11-02 14:19 Cristian Pop
      2020-11-02 14:19 ` [PATCH v7 4/5] dt-bindings:iio:adc:adi,ad7768-1: Add documentation for channel label Cristian Pop
      0 siblings, 1 reply; 5+ messages in thread
    From: Cristian Pop @ 2020-11-02 14:19 UTC (permalink / raw)
      To: linux-iio, linux-kernel; +Cc: jic23, devicetree, robh+dt, Cristian Pop
    
    If a label is defined in the device tree for this channel add that
    to the channel specific attributes. This is useful for userspace to
    be able to identify an individual channel.
    
    Signed-off-by: Cristian Pop <cristian.pop@analog.com>
    ---
     drivers/iio/industrialio-core.c | 40 +++++++++++++++++++++++++++++++++
     include/linux/iio/iio.h         |  6 +++++
     2 files changed, 46 insertions(+)
    
    diff --git a/drivers/iio/industrialio-core.c b/drivers/iio/industrialio-core.c
    index 6e388293c828..b577fff35641 100644
    --- a/drivers/iio/industrialio-core.c
    +++ b/drivers/iio/industrialio-core.c
    @@ -669,6 +669,19 @@ ssize_t iio_format_value(char *buf, unsigned int type, int size, int *vals)
     }
     EXPORT_SYMBOL_GPL(iio_format_value);
     
    +static ssize_t iio_read_channel_label(struct device *dev,
    +				      struct device_attribute *attr,
    +				      char *buf)
    +{
    +	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
    +	struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
    +
    +	if (!indio_dev->info->read_label)
    +		return -EINVAL;
    +
    +	return indio_dev->info->read_label(indio_dev, this_attr->c, buf);
    +}
    +
     static ssize_t iio_read_channel_info(struct device *dev,
     				     struct device_attribute *attr,
     				     char *buf)
    @@ -1137,6 +1150,28 @@ int __iio_add_chan_devattr(const char *postfix,
     	return ret;
     }
     
    +static int iio_device_add_channel_label(struct iio_dev *indio_dev,
    +					 struct iio_chan_spec const *chan)
    +{
    +	int ret;
    +
    +	if (!indio_dev->info->read_label)
    +		return 0;
    +
    +	ret = __iio_add_chan_devattr("label",
    +				     chan,
    +				     &iio_read_channel_label,
    +				     NULL,
    +				     0,
    +				     IIO_SEPARATE,
    +				     &indio_dev->dev,
    +				     &indio_dev->channel_attr_list);
    +	if (ret < 0)
    +		return ret;
    +
    +	return 1;
    +}
    +
     static int iio_device_add_info_mask_type(struct iio_dev *indio_dev,
     					 struct iio_chan_spec const *chan,
     					 enum iio_shared_by shared_by,
    @@ -1270,6 +1305,11 @@ static int iio_device_add_channel_sysfs(struct iio_dev *indio_dev,
     		return ret;
     	attrcount += ret;
     
    +	ret = iio_device_add_channel_label(indio_dev, chan);
    +	if (ret < 0)
    +		return ret;
    +	attrcount += ret;
    +
     	if (chan->ext_info) {
     		unsigned int i = 0;
     		for (ext_info = chan->ext_info; ext_info->name; ext_info++) {
    diff --git a/include/linux/iio/iio.h b/include/linux/iio/iio.h
    index 2e45b3ceafa7..9a3cf4815148 100644
    --- a/include/linux/iio/iio.h
    +++ b/include/linux/iio/iio.h
    @@ -362,6 +362,8 @@ struct iio_trigger; /* forward declaration */
      *			and max. For lists, all possible values are enumerated.
      * @write_raw:		function to write a value to the device.
      *			Parameters are the same as for read_raw.
    + * @read_label:		function to request label name for a specified label,
    + *			for better channel identification.
      * @write_raw_get_fmt:	callback function to query the expected
      *			format/precision. If not set by the driver, write_raw
      *			returns IIO_VAL_INT_PLUS_MICRO.
    @@ -420,6 +422,10 @@ struct iio_info {
     			 int val2,
     			 long mask);
     
    +	int (*read_label)(struct iio_dev *indio_dev,
    +			 struct iio_chan_spec const *chan,
    +			 char *label);
    +
     	int (*write_raw_get_fmt)(struct iio_dev *indio_dev,
     			 struct iio_chan_spec const *chan,
     			 long mask);
    -- 
    2.17.1
    
    
    ^ permalink raw reply related	[flat|nested] 5+ messages in thread

    end of thread, other threads:[~2020-11-05 17:19 UTC | newest]
    
    Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
    -- links below jump to the message on this page --
         [not found] <20200928090959.88842-1-cristian.pop@analog.com>
         [not found] ` <20200928090959.88842-5-cristian.pop@analog.com>
    2020-09-29 15:48   ` [PATCH v7 5/5] dt-bindings:iio:adc:adc.txt: Add documentation for channel label attribute Jonathan Cameron
         [not found] ` <20200928090959.88842-4-cristian.pop@analog.com>
    2020-09-29 15:48   ` [PATCH v7 4/5] dt-bindings:iio:adc:adi,ad7768-1: Add documentation for channel label Jonathan Cameron
    2020-11-02 14:16 [PATCH v7 1/5] iio: core: Add optional symbolic label to a device channel Cristian Pop
    2020-11-02 14:16 ` [PATCH v7 4/5] dt-bindings:iio:adc:adi,ad7768-1: Add documentation for channel label Cristian Pop
      -- strict thread matches above, loose matches on Subject: below --
    2020-11-02 14:19 [PATCH v7 1/5] iio: core: Add optional symbolic label to a device channel Cristian Pop
    2020-11-02 14:19 ` [PATCH v7 4/5] dt-bindings:iio:adc:adi,ad7768-1: Add documentation for channel label Cristian Pop
    2020-11-05 17:19   ` Rob Herring
    

    This is a public inbox, see mirroring instructions
    for how to clone and mirror all data and code used for this inbox;
    as well as URLs for NNTP newsgroup(s).