1 /* The industrial I/O core
3 *Copyright (c) 2008 Jonathan Cameron
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
12 #ifndef _INDUSTRIAL_IO_SYSFS_H_
13 #define _INDUSTRIAL_IO_SYSFS_H_
18 * struct iio_event_attribute - event control attribute
19 * @dev_attr: underlying device attribute
20 * @mask: mask for the event when detecting
21 * @listel: list header to allow addition to list of event handlers
23 struct iio_event_attr
{
24 struct device_attribute dev_attr
;
26 struct iio_event_handler_list
*listel
;
29 #define to_iio_event_attr(_dev_attr) \
30 container_of(_dev_attr, struct iio_event_attr, dev_attr)
33 * struct iio_chrdev_minor_attr - simple attribute to allow reading of chrdev
35 * @dev_attr: underlying device attribute
36 * @minor: the minor number
38 struct iio_chrdev_minor_attr
{
39 struct device_attribute dev_attr
;
44 __init_iio_chrdev_minor_attr(struct iio_chrdev_minor_attr
*minor_attr
,
50 #define to_iio_chrdev_minor_attr(_dev_attr) \
51 container_of(_dev_attr, struct iio_chrdev_minor_attr, dev_attr);
54 * struct iio_dev_attr - iio specific device attribute
55 * @dev_attr: underlying device attribute
56 * @address: associated register address
59 struct device_attribute dev_attr
;
64 #define to_iio_dev_attr(_dev_attr) \
65 container_of(_dev_attr, struct iio_dev_attr, dev_attr)
67 ssize_t
iio_read_const_attr(struct device
*dev
,
68 struct device_attribute
*attr
,
72 * struct iio_const_attr - constant device specific attribute
73 * often used for things like available modes
75 struct iio_const_attr
{
77 struct device_attribute dev_attr
;
80 #define to_iio_const_attr(_dev_attr) \
81 container_of(_dev_attr, struct iio_const_attr, dev_attr)
83 /* Some attributes will be hard coded (device dependant) and not require an
84 address, in these cases pass a negative */
85 #define IIO_ATTR(_name, _mode, _show, _store, _addr) \
86 { .dev_attr = __ATTR(_name, _mode, _show, _store), \
89 #define IIO_ATTR_2(_name, _mode, _show, _store, _addr, _val2) \
90 { .dev_attr = __ATTR(_name, _mode, _show, _store), \
94 #define IIO_DEVICE_ATTR(_name, _mode, _show, _store, _addr) \
95 struct iio_dev_attr iio_dev_attr_##_name \
96 = IIO_ATTR(_name, _mode, _show, _store, _addr)
99 #define IIO_DEVICE_ATTR_2(_name, _mode, _show, _store, _addr, _val2) \
100 struct iio_dev_attr iio_dev_attr_##_name \
101 = IIO_ATTR_2(_name, _mode, _show, _store, _addr, _val2)
103 #define IIO_CONST_ATTR(_name, _string) \
104 struct iio_const_attr iio_const_attr_##_name \
105 = { .string = _string, \
106 .dev_attr = __ATTR(_name, S_IRUGO, iio_read_const_attr, NULL)}
108 /* Generic attributes of onetype or another */
111 * IIO_DEV_ATTR_REG: revision number for the device
113 * Very much device dependent.
115 #define IIO_DEV_ATTR_REV(_show) \
116 IIO_DEVICE_ATTR(revision, S_IRUGO, _show, NULL, 0)
118 * IIO_DEV_ATTR_NAME: chip type dependant identifier
120 #define IIO_DEV_ATTR_NAME(_show) \
121 IIO_DEVICE_ATTR(name, S_IRUGO, _show, NULL, 0)
124 * IIO_DEV_ATTR_SAMP_FREQ: sets any internal clock frequency
126 #define IIO_DEV_ATTR_SAMP_FREQ(_mode, _show, _store) \
127 IIO_DEVICE_ATTR(sampling_frequency, _mode, _show, _store, 0)
130 * IIO_DEV_ATTR_AVAIL_SAMP_FREQ: list available sampling frequencies.
132 * May be mode dependant on some devices
134 #define IIO_DEV_ATTR_AVAIL_SAMP_FREQ(_show) \
135 IIO_DEVICE_ATTR(available_sampling_frequency, S_IRUGO, _show, NULL, 0)
138 * IIO_DEV_ATTR_CONST_AVAIL_SAMP_FREQ: list available sampling frequencies.
142 #define IIO_CONST_ATTR_AVAIL_SAMP_FREQ(_string) \
143 IIO_CONST_ATTR(available_sampling_frequency, _string)
145 * IIO_DEV_ATTR_SCAN_MODE: select a scan mode
147 * This is used when only certain combinations of inputs may be read in one
150 #define IIO_DEV_ATTR_SCAN_MODE(_mode, _show, _store) \
151 IIO_DEVICE_ATTR(scan_mode, _mode, _show, _store, 0)
153 * IIO_DEV_ATTR_AVAIL_SCAN_MODES: list available scan modes
155 #define IIO_DEV_ATTR_AVAIL_SCAN_MODES(_show) \
156 IIO_DEVICE_ATTR(available_scan_modes, S_IRUGO, _show, NULL, 0)
159 * IIO_DEV_ATTR_SCAN: result of scan of multiple channels
161 #define IIO_DEV_ATTR_SCAN(_show) \
162 IIO_DEVICE_ATTR(scan, S_IRUGO, _show, NULL, 0);
165 * IIO_DEV_ATTR_INPUT: direct read of a single input channel
167 #define IIO_DEV_ATTR_INPUT(_number, _show) \
168 IIO_DEVICE_ATTR(in##_number, S_IRUGO, _show, NULL, _number)
172 * IIO_DEV_ATTR_SW_RING_ENABLE: enable software ring buffer
174 * Success may be dependant on attachment of trigger previously
176 #define IIO_DEV_ATTR_SW_RING_ENABLE(_show, _store) \
177 IIO_DEVICE_ATTR(sw_ring_enable, S_IRUGO | S_IWUSR, _show, _store, 0)
180 * IIO_DEV_ATTR_HW_RING_ENABLE: enable hardware ring buffer
182 * This is a different attribute from the software one as one can invision
183 * schemes where a combination of the two may be used.
185 #define IIO_DEV_ATTR_HW_RING_ENABLE(_show, _store) \
186 IIO_DEVICE_ATTR(hw_ring_enable, S_IRUGO | S_IWUSR, _show, _store, 0)
189 * IIO_DEV_ATTR_BPSE: set number of bits per scan element
191 #define IIO_DEV_ATTR_BPSE(_mode, _show, _store) \
192 IIO_DEVICE_ATTR(bpse, _mode, _show, _store, 0)
195 * IIO_DEV_ATTR_BPSE_AVAILABLE: no of bits per scan element supported
197 #define IIO_DEV_ATTR_BPSE_AVAILABLE(_show) \
198 IIO_DEVICE_ATTR(bpse_available, S_IRUGO, _show, NULL, 0)
201 * IIO_DEV_ATTR_TEMP: many sensors have auxiliary temperature sensors
203 #define IIO_DEV_ATTR_TEMP(_show) \
204 IIO_DEVICE_ATTR(temp, S_IRUGO, _show, NULL, 0)
206 * IIO_EVENT_SH: generic shared event handler
208 * This is used in cases where more than one event may result from a single
209 * handler. Often the case that some alarm register must be read and multiple
210 * alarms may have been triggered.
212 #define IIO_EVENT_SH(_name, _handler) \
213 static struct iio_event_handler_list \
214 iio_event_##_name = { \
215 .handler = _handler, \
217 .exist_lock = __MUTEX_INITIALIZER(iio_event_##_name \
220 .next = &iio_event_##_name.list, \
221 .prev = &iio_event_##_name.list, \
225 * IIO_EVENT_ATTR_SH: generic shared event attribute
227 * An attribute with an associated IIO_EVENT_SH
229 #define IIO_EVENT_ATTR_SH(_name, _ev_list, _show, _store, _mask) \
230 static struct iio_event_attr \
231 iio_event_attr_##_name \
232 = { .dev_attr = __ATTR(_name, S_IRUGO | S_IWUSR, \
235 .listel = &_ev_list };
238 * IIO_EVENT_ATTR: non shared event attribute
240 #define IIO_EVENT_ATTR(_name, _show, _store, _mask, _handler) \
241 static struct iio_event_handler_list \
242 iio_event_##_name = { \
243 .handler = _handler, \
247 iio_event_attr_##_name \
248 = { .dev_attr = __ATTR(_name, S_IRUGO | S_IWUSR, \
251 .listel = &iio_event_##_name }; \
254 * IIO_EVENT_ATTR_DATA_RDY: event driven by data ready signal
256 * Not typically implemented in devices where full triggering support
257 * has been implemented
259 #define IIO_EVENT_ATTR_DATA_RDY(_show, _store, _mask, _handler) \
260 IIO_EVENT_ATTR(data_rdy, _show, _store, _mask, _handler)
262 #define IIO_EVENT_CODE_DATA_RDY 100
263 #define IIO_EVENT_CODE_RING_BASE 200
264 #define IIO_EVENT_CODE_ACCEL_BASE 300
265 #define IIO_EVENT_CODE_GYRO_BASE 400
266 #define IIO_EVENT_CODE_ADC_BASE 500
267 #define IIO_EVENT_CODE_MISC_BASE 600
269 #define IIO_EVENT_CODE_DEVICE_SPECIFIC 1000
272 * IIO_EVENT_ATTR_RING_50_FULL: ring buffer event to indicate 50% full
274 #define IIO_EVENT_ATTR_RING_50_FULL(_show, _store, _mask, _handler) \
275 IIO_EVENT_ATTR(ring_50_full, _show, _store, _mask, _handler)
278 * IIO_EVENT_ATTR_RING_50_FULL_SH: shared ring event to indicate 50% full
280 #define IIO_EVENT_ATTR_RING_50_FULL_SH(_evlist, _show, _store, _mask) \
281 IIO_EVENT_ATTR_SH(ring_50_full, _evlist, _show, _store, _mask)
284 * IIO_EVENT_ATTR_RING_75_FULL_SH: shared ring event to indicate 75% full
286 #define IIO_EVENT_ATTR_RING_75_FULL_SH(_evlist, _show, _store, _mask) \
287 IIO_EVENT_ATTR_SH(ring_75_full, _evlist, _show, _store, _mask)
289 #define IIO_EVENT_CODE_RING_50_FULL IIO_EVENT_CODE_RING_BASE
290 #define IIO_EVENT_CODE_RING_75_FULL (IIO_EVENT_CODE_RING_BASE + 1)
291 #define IIO_EVENT_CODE_RING_100_FULL (IIO_EVENT_CODE_RING_BASE + 2)
293 #endif /* _INDUSTRIAL_IO_SYSFS_H_ */