1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2017-2018 Bartosz Golaszewski <brgl@bgdev.pl>
4 * Copyright (C) 2020 Bartosz Golaszewski <bgolaszewski@baylibre.com>
8 #include <linux/irq_sim.h>
9 #include <linux/irq_work.h>
10 #include <linux/interrupt.h>
11 #include <linux/slab.h>
13 struct irq_sim_work_ctx {
16 unsigned int irq_count;
17 unsigned long *pending;
18 struct irq_domain *domain;
21 struct irq_sim_irq_ctx {
24 struct irq_sim_work_ctx *work_ctx;
27 static void irq_sim_irqmask(struct irq_data *data)
29 struct irq_sim_irq_ctx *irq_ctx = irq_data_get_irq_chip_data(data);
31 irq_ctx->enabled = false;
34 static void irq_sim_irqunmask(struct irq_data *data)
36 struct irq_sim_irq_ctx *irq_ctx = irq_data_get_irq_chip_data(data);
38 irq_ctx->enabled = true;
41 static int irq_sim_set_type(struct irq_data *data, unsigned int type)
43 /* We only support rising and falling edge trigger types. */
44 if (type & ~IRQ_TYPE_EDGE_BOTH)
47 irqd_set_trigger_type(data, type);
52 static int irq_sim_get_irqchip_state(struct irq_data *data,
53 enum irqchip_irq_state which, bool *state)
55 struct irq_sim_irq_ctx *irq_ctx = irq_data_get_irq_chip_data(data);
56 irq_hw_number_t hwirq = irqd_to_hwirq(data);
59 case IRQCHIP_STATE_PENDING:
61 *state = test_bit(hwirq, irq_ctx->work_ctx->pending);
70 static int irq_sim_set_irqchip_state(struct irq_data *data,
71 enum irqchip_irq_state which, bool state)
73 struct irq_sim_irq_ctx *irq_ctx = irq_data_get_irq_chip_data(data);
74 irq_hw_number_t hwirq = irqd_to_hwirq(data);
77 case IRQCHIP_STATE_PENDING:
78 if (irq_ctx->enabled) {
79 assign_bit(hwirq, irq_ctx->work_ctx->pending, state);
81 irq_work_queue(&irq_ctx->work_ctx->work);
91 static struct irq_chip irq_sim_irqchip = {
93 .irq_mask = irq_sim_irqmask,
94 .irq_unmask = irq_sim_irqunmask,
95 .irq_set_type = irq_sim_set_type,
96 .irq_get_irqchip_state = irq_sim_get_irqchip_state,
97 .irq_set_irqchip_state = irq_sim_set_irqchip_state,
100 static void irq_sim_handle_irq(struct irq_work *work)
102 struct irq_sim_work_ctx *work_ctx;
103 unsigned int offset = 0;
106 work_ctx = container_of(work, struct irq_sim_work_ctx, work);
108 while (!bitmap_empty(work_ctx->pending, work_ctx->irq_count)) {
109 offset = find_next_bit(work_ctx->pending,
110 work_ctx->irq_count, offset);
111 clear_bit(offset, work_ctx->pending);
112 irqnum = irq_find_mapping(work_ctx->domain, offset);
113 handle_simple_irq(irq_to_desc(irqnum));
117 static int irq_sim_domain_map(struct irq_domain *domain,
118 unsigned int virq, irq_hw_number_t hw)
120 struct irq_sim_work_ctx *work_ctx = domain->host_data;
121 struct irq_sim_irq_ctx *irq_ctx;
123 irq_ctx = kzalloc(sizeof(*irq_ctx), GFP_KERNEL);
127 irq_set_chip(virq, &irq_sim_irqchip);
128 irq_set_chip_data(virq, irq_ctx);
129 irq_set_handler(virq, handle_simple_irq);
130 irq_modify_status(virq, IRQ_NOREQUEST | IRQ_NOAUTOEN, IRQ_NOPROBE);
131 irq_ctx->work_ctx = work_ctx;
136 static void irq_sim_domain_unmap(struct irq_domain *domain, unsigned int virq)
138 struct irq_sim_irq_ctx *irq_ctx;
139 struct irq_data *irqd;
141 irqd = irq_domain_get_irq_data(domain, virq);
142 irq_ctx = irq_data_get_irq_chip_data(irqd);
144 irq_set_handler(virq, NULL);
145 irq_domain_reset_irq_data(irqd);
149 static const struct irq_domain_ops irq_sim_domain_ops = {
150 .map = irq_sim_domain_map,
151 .unmap = irq_sim_domain_unmap,
155 * irq_domain_create_sim - Create a new interrupt simulator irq_domain and
156 * allocate a range of dummy interrupts.
158 * @fwnode: struct fwnode_handle to be associated with this domain.
159 * @num_irqs: Number of interrupts to allocate.
161 * On success: return a new irq_domain object.
162 * On failure: a negative errno wrapped with ERR_PTR().
164 struct irq_domain *irq_domain_create_sim(struct fwnode_handle *fwnode,
165 unsigned int num_irqs)
167 struct irq_sim_work_ctx *work_ctx;
169 work_ctx = kmalloc(sizeof(*work_ctx), GFP_KERNEL);
173 work_ctx->pending = bitmap_zalloc(num_irqs, GFP_KERNEL);
174 if (!work_ctx->pending)
175 goto err_free_work_ctx;
177 work_ctx->domain = irq_domain_create_linear(fwnode, num_irqs,
180 if (!work_ctx->domain)
181 goto err_free_bitmap;
183 work_ctx->irq_count = num_irqs;
184 init_irq_work(&work_ctx->work, irq_sim_handle_irq);
186 return work_ctx->domain;
189 bitmap_free(work_ctx->pending);
193 return ERR_PTR(-ENOMEM);
195 EXPORT_SYMBOL_GPL(irq_domain_create_sim);
198 * irq_domain_remove_sim - Deinitialize the interrupt simulator domain: free
199 * the interrupt descriptors and allocated memory.
201 * @domain: The interrupt simulator domain to tear down.
203 void irq_domain_remove_sim(struct irq_domain *domain)
205 struct irq_sim_work_ctx *work_ctx = domain->host_data;
207 irq_work_sync(&work_ctx->work);
208 bitmap_free(work_ctx->pending);
211 irq_domain_remove(domain);
213 EXPORT_SYMBOL_GPL(irq_domain_remove_sim);
215 static void devm_irq_domain_remove_sim(void *data)
217 struct irq_domain *domain = data;
219 irq_domain_remove_sim(domain);
223 * devm_irq_domain_create_sim - Create a new interrupt simulator for
226 * @dev: Device to initialize the simulator object for.
227 * @fwnode: struct fwnode_handle to be associated with this domain.
228 * @num_irqs: Number of interrupts to allocate
230 * On success: return a new irq_domain object.
231 * On failure: a negative errno wrapped with ERR_PTR().
233 struct irq_domain *devm_irq_domain_create_sim(struct device *dev,
234 struct fwnode_handle *fwnode,
235 unsigned int num_irqs)
237 struct irq_domain *domain;
240 domain = irq_domain_create_sim(fwnode, num_irqs);
244 ret = devm_add_action_or_reset(dev, devm_irq_domain_remove_sim, domain);
250 EXPORT_SYMBOL_GPL(devm_irq_domain_create_sim);