1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright 2013 Analog Devices Inc.
6 * Author: Lars-Peter Clausen <lars@metafoo.de>
9 #include <linux/iio/events.h>
10 #include <linux/iio/iio.h>
11 #include <linux/kernel.h>
13 #include "xilinx-xadc.h"
15 static const struct iio_chan_spec
*xadc_event_to_channel(
16 struct iio_dev
*indio_dev
, unsigned int event
)
19 case XADC_THRESHOLD_OT_MAX
:
20 case XADC_THRESHOLD_TEMP_MAX
:
21 return &indio_dev
->channels
[0];
22 case XADC_THRESHOLD_VCCINT_MAX
:
23 case XADC_THRESHOLD_VCCAUX_MAX
:
24 return &indio_dev
->channels
[event
];
26 return &indio_dev
->channels
[event
-1];
30 static void xadc_handle_event(struct iio_dev
*indio_dev
, unsigned int event
)
32 const struct iio_chan_spec
*chan
;
34 /* Temperature threshold error, we don't handle this yet */
38 chan
= xadc_event_to_channel(indio_dev
, event
);
40 if (chan
->type
== IIO_TEMP
) {
42 * The temperature channel only supports over-temperature
45 iio_push_event(indio_dev
,
46 IIO_UNMOD_EVENT_CODE(chan
->type
, chan
->channel
,
47 IIO_EV_TYPE_THRESH
, IIO_EV_DIR_RISING
),
48 iio_get_time_ns(indio_dev
));
51 * For other channels we don't know whether it is a upper or
52 * lower threshold event. Userspace will have to check the
53 * channel value if it wants to know.
55 iio_push_event(indio_dev
,
56 IIO_UNMOD_EVENT_CODE(chan
->type
, chan
->channel
,
57 IIO_EV_TYPE_THRESH
, IIO_EV_DIR_EITHER
),
58 iio_get_time_ns(indio_dev
));
62 void xadc_handle_events(struct iio_dev
*indio_dev
, unsigned long events
)
66 for_each_set_bit(i
, &events
, 8)
67 xadc_handle_event(indio_dev
, i
);
70 static unsigned int xadc_get_threshold_offset(const struct iio_chan_spec
*chan
,
71 enum iio_event_direction dir
)
75 if (chan
->type
== IIO_TEMP
) {
76 offset
= XADC_THRESHOLD_OT_MAX
;
78 if (chan
->channel
< 2)
79 offset
= chan
->channel
+ 1;
81 offset
= chan
->channel
+ 6;
84 if (dir
== IIO_EV_DIR_FALLING
)
90 static unsigned int xadc_get_alarm_mask(const struct iio_chan_spec
*chan
)
92 if (chan
->type
== IIO_TEMP
)
93 return XADC_ALARM_OT_MASK
;
94 switch (chan
->channel
) {
96 return XADC_ALARM_VCCINT_MASK
;
98 return XADC_ALARM_VCCAUX_MASK
;
100 return XADC_ALARM_VCCBRAM_MASK
;
102 return XADC_ALARM_VCCPINT_MASK
;
104 return XADC_ALARM_VCCPAUX_MASK
;
106 return XADC_ALARM_VCCODDR_MASK
;
108 /* We will never get here */
113 int xadc_read_event_config(struct iio_dev
*indio_dev
,
114 const struct iio_chan_spec
*chan
, enum iio_event_type type
,
115 enum iio_event_direction dir
)
117 struct xadc
*xadc
= iio_priv(indio_dev
);
119 return (bool)(xadc
->alarm_mask
& xadc_get_alarm_mask(chan
));
122 int xadc_write_event_config(struct iio_dev
*indio_dev
,
123 const struct iio_chan_spec
*chan
, enum iio_event_type type
,
124 enum iio_event_direction dir
, bool state
)
126 unsigned int alarm
= xadc_get_alarm_mask(chan
);
127 struct xadc
*xadc
= iio_priv(indio_dev
);
128 uint16_t cfg
, old_cfg
;
131 mutex_lock(&xadc
->mutex
);
134 xadc
->alarm_mask
|= alarm
;
136 xadc
->alarm_mask
&= ~alarm
;
138 xadc
->ops
->update_alarm(xadc
, xadc
->alarm_mask
);
140 ret
= _xadc_read_adc_reg(xadc
, XADC_REG_CONF1
, &cfg
);
145 cfg
|= XADC_CONF1_ALARM_MASK
;
146 cfg
&= ~((xadc
->alarm_mask
& 0xf0) << 4); /* bram, pint, paux, ddr */
147 cfg
&= ~((xadc
->alarm_mask
& 0x08) >> 3); /* ot */
148 cfg
&= ~((xadc
->alarm_mask
& 0x07) << 1); /* temp, vccint, vccaux */
150 ret
= _xadc_write_adc_reg(xadc
, XADC_REG_CONF1
, cfg
);
153 mutex_unlock(&xadc
->mutex
);
158 int xadc_read_event_value(struct iio_dev
*indio_dev
,
159 const struct iio_chan_spec
*chan
, enum iio_event_type type
,
160 enum iio_event_direction dir
, enum iio_event_info info
,
163 unsigned int offset
= xadc_get_threshold_offset(chan
, dir
);
164 struct xadc
*xadc
= iio_priv(indio_dev
);
167 case IIO_EV_INFO_VALUE
:
168 *val
= xadc
->threshold
[offset
];
170 case IIO_EV_INFO_HYSTERESIS
:
171 *val
= xadc
->temp_hysteresis
;
178 *val
>>= 16 - chan
->scan_type
.realbits
;
183 int xadc_write_event_value(struct iio_dev
*indio_dev
,
184 const struct iio_chan_spec
*chan
, enum iio_event_type type
,
185 enum iio_event_direction dir
, enum iio_event_info info
,
188 unsigned int offset
= xadc_get_threshold_offset(chan
, dir
);
189 struct xadc
*xadc
= iio_priv(indio_dev
);
193 val
<<= 16 - chan
->scan_type
.realbits
;
195 if (val
< 0 || val
> 0xffff)
198 mutex_lock(&xadc
->mutex
);
201 case IIO_EV_INFO_VALUE
:
202 xadc
->threshold
[offset
] = val
;
204 case IIO_EV_INFO_HYSTERESIS
:
205 xadc
->temp_hysteresis
= val
;
208 mutex_unlock(&xadc
->mutex
);
212 if (chan
->type
== IIO_TEMP
) {
214 * According to the datasheet we need to set the lower 4 bits to
215 * 0x3, otherwise 125 degree celsius will be used as the
221 * Since we store the hysteresis as relative (to the threshold)
222 * value, but the hardware expects an absolute value we need to
223 * recalculate this value whenever the hysteresis or the
226 if (xadc
->threshold
[offset
] < xadc
->temp_hysteresis
)
227 xadc
->threshold
[offset
+ 4] = 0;
229 xadc
->threshold
[offset
+ 4] = xadc
->threshold
[offset
] -
230 xadc
->temp_hysteresis
;
231 ret
= _xadc_write_adc_reg(xadc
, XADC_REG_THRESHOLD(offset
+ 4),
232 xadc
->threshold
[offset
+ 4]);
237 if (info
== IIO_EV_INFO_VALUE
)
238 ret
= _xadc_write_adc_reg(xadc
, XADC_REG_THRESHOLD(offset
), val
);
241 mutex_unlock(&xadc
->mutex
);