1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2021 Pengutronix, Oleksij Rempel <kernel@pengutronix.de>
6 #include <linux/counter.h>
7 #include <linux/gpio/consumer.h>
8 #include <linux/interrupt.h>
10 #include <linux/mod_devicetable.h>
11 #include <linux/module.h>
12 #include <linux/platform_device.h>
14 #define INTERRUPT_CNT_NAME "interrupt-cnt"
16 struct interrupt_cnt_priv {
18 struct counter_device counter;
19 struct gpio_desc *gpio;
22 struct counter_signal signals;
23 struct counter_synapse synapses;
24 struct counter_count cnts;
27 static irqreturn_t interrupt_cnt_isr(int irq, void *dev_id)
29 struct interrupt_cnt_priv *priv = dev_id;
31 atomic_inc(&priv->count);
36 static ssize_t interrupt_cnt_enable_read(struct counter_device *counter,
37 struct counter_count *count,
38 void *private, char *buf)
40 struct interrupt_cnt_priv *priv = counter->priv;
42 return sysfs_emit(buf, "%d\n", priv->enabled);
45 static ssize_t interrupt_cnt_enable_write(struct counter_device *counter,
46 struct counter_count *count,
47 void *private, const char *buf,
50 struct interrupt_cnt_priv *priv = counter->priv;
54 ret = kstrtobool(buf, &enable);
58 if (priv->enabled == enable)
63 enable_irq(priv->irq);
65 disable_irq(priv->irq);
66 priv->enabled = false;
72 static const struct counter_count_ext interrupt_cnt_ext[] = {
75 .read = interrupt_cnt_enable_read,
76 .write = interrupt_cnt_enable_write,
80 static const enum counter_synapse_action interrupt_cnt_synapse_actions[] = {
81 COUNTER_SYNAPSE_ACTION_RISING_EDGE,
84 static int interrupt_cnt_action_get(struct counter_device *counter,
85 struct counter_count *count,
86 struct counter_synapse *synapse,
94 static int interrupt_cnt_read(struct counter_device *counter,
95 struct counter_count *count, unsigned long *val)
97 struct interrupt_cnt_priv *priv = counter->priv;
99 *val = atomic_read(&priv->count);
104 static int interrupt_cnt_write(struct counter_device *counter,
105 struct counter_count *count,
106 const unsigned long val)
108 struct interrupt_cnt_priv *priv = counter->priv;
110 if (val != (typeof(priv->count.counter))val)
113 atomic_set(&priv->count, val);
118 static const enum counter_function interrupt_cnt_functions[] = {
119 COUNTER_FUNCTION_INCREASE,
122 static int interrupt_cnt_function_get(struct counter_device *counter,
123 struct counter_count *count,
131 static int interrupt_cnt_signal_read(struct counter_device *counter,
132 struct counter_signal *signal,
133 enum counter_signal_level *level)
135 struct interrupt_cnt_priv *priv = counter->priv;
141 ret = gpiod_get_value(priv->gpio);
145 *level = ret ? COUNTER_SIGNAL_LEVEL_HIGH : COUNTER_SIGNAL_LEVEL_LOW;
150 static const struct counter_ops interrupt_cnt_ops = {
151 .action_get = interrupt_cnt_action_get,
152 .count_read = interrupt_cnt_read,
153 .count_write = interrupt_cnt_write,
154 .function_get = interrupt_cnt_function_get,
155 .signal_read = interrupt_cnt_signal_read,
158 static int interrupt_cnt_probe(struct platform_device *pdev)
160 struct device *dev = &pdev->dev;
161 struct interrupt_cnt_priv *priv;
164 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
168 priv->irq = platform_get_irq_optional(pdev, 0);
169 if (priv->irq == -ENXIO)
171 else if (priv->irq < 0)
172 return dev_err_probe(dev, priv->irq, "failed to get IRQ\n");
174 priv->gpio = devm_gpiod_get_optional(dev, NULL, GPIOD_IN);
175 if (IS_ERR(priv->gpio))
176 return dev_err_probe(dev, PTR_ERR(priv->gpio), "failed to get GPIO\n");
178 if (!priv->irq && !priv->gpio) {
179 dev_err(dev, "IRQ and GPIO are not found. At least one source should be provided\n");
184 int irq = gpiod_to_irq(priv->gpio);
187 return dev_err_probe(dev, irq, "failed to get IRQ from GPIO\n");
192 priv->signals.name = devm_kasprintf(dev, GFP_KERNEL, "IRQ %d",
194 if (!priv->signals.name)
197 priv->counter.signals = &priv->signals;
198 priv->counter.num_signals = 1;
200 priv->synapses.actions_list = interrupt_cnt_synapse_actions;
201 priv->synapses.num_actions = ARRAY_SIZE(interrupt_cnt_synapse_actions);
202 priv->synapses.signal = &priv->signals;
204 priv->cnts.name = "Channel 0 Count";
205 priv->cnts.functions_list = interrupt_cnt_functions;
206 priv->cnts.num_functions = ARRAY_SIZE(interrupt_cnt_functions);
207 priv->cnts.synapses = &priv->synapses;
208 priv->cnts.num_synapses = 1;
209 priv->cnts.ext = interrupt_cnt_ext;
210 priv->cnts.num_ext = ARRAY_SIZE(interrupt_cnt_ext);
212 priv->counter.priv = priv;
213 priv->counter.name = dev_name(dev);
214 priv->counter.parent = dev;
215 priv->counter.ops = &interrupt_cnt_ops;
216 priv->counter.counts = &priv->cnts;
217 priv->counter.num_counts = 1;
219 irq_set_status_flags(priv->irq, IRQ_NOAUTOEN);
220 ret = devm_request_irq(dev, priv->irq, interrupt_cnt_isr,
221 IRQF_TRIGGER_RISING | IRQF_NO_THREAD,
222 dev_name(dev), priv);
226 return devm_counter_register(dev, &priv->counter);
229 static const struct of_device_id interrupt_cnt_of_match[] = {
230 { .compatible = "interrupt-counter", },
233 MODULE_DEVICE_TABLE(of, interrupt_cnt_of_match);
235 static struct platform_driver interrupt_cnt_driver = {
236 .probe = interrupt_cnt_probe,
238 .name = INTERRUPT_CNT_NAME,
239 .of_match_table = interrupt_cnt_of_match,
242 module_platform_driver(interrupt_cnt_driver);
244 MODULE_ALIAS("platform:interrupt-counter");
245 MODULE_AUTHOR("Oleksij Rempel <o.rempel@pengutronix.de>");
246 MODULE_DESCRIPTION("Interrupt counter driver");
247 MODULE_LICENSE("GPL v2");