1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2015 Endless Mobile, Inc.
4 * Author: Carlo Caione <carlo@endlessm.com>
5 * Copyright (c) 2016 BayLibre, SAS.
6 * Author: Jerome Brunet <jbrunet@baylibre.com>
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12 #include <linux/module.h>
13 #include <linux/irq.h>
14 #include <linux/irqdomain.h>
15 #include <linux/irqchip.h>
17 #include <linux/of_address.h>
20 #define MAX_INPUT_MUX 256
22 #define REG_EDGE_POL 0x00
23 #define REG_PIN_03_SEL 0x04
24 #define REG_PIN_47_SEL 0x08
25 #define REG_FILTER_SEL 0x0c
28 * Note: The S905X3 datasheet reports that BOTH_EDGE is controlled by
29 * bits 24 to 31. Tests on the actual HW show that these bits are
30 * stuck at 0. Bits 8 to 15 are responsive and have the expected
33 #define REG_EDGE_POL_EDGE(x) BIT(x)
34 #define REG_EDGE_POL_LOW(x) BIT(16 + (x))
35 #define REG_BOTH_EDGE(x) BIT(8 + (x))
36 #define REG_EDGE_POL_MASK(x) ( \
37 REG_EDGE_POL_EDGE(x) | \
38 REG_EDGE_POL_LOW(x) | \
40 #define REG_PIN_SEL_SHIFT(x) (((x) % 4) * 8)
41 #define REG_FILTER_SEL_SHIFT(x) ((x) * 4)
43 struct meson_gpio_irq_params
{
44 unsigned int nr_hwirq
;
45 bool support_edge_both
;
48 static const struct meson_gpio_irq_params meson8_params
= {
52 static const struct meson_gpio_irq_params meson8b_params
= {
56 static const struct meson_gpio_irq_params gxbb_params
= {
60 static const struct meson_gpio_irq_params gxl_params
= {
64 static const struct meson_gpio_irq_params axg_params
= {
68 static const struct meson_gpio_irq_params sm1_params
= {
70 .support_edge_both
= true,
73 static const struct of_device_id meson_irq_gpio_matches
[] = {
74 { .compatible
= "amlogic,meson8-gpio-intc", .data
= &meson8_params
},
75 { .compatible
= "amlogic,meson8b-gpio-intc", .data
= &meson8b_params
},
76 { .compatible
= "amlogic,meson-gxbb-gpio-intc", .data
= &gxbb_params
},
77 { .compatible
= "amlogic,meson-gxl-gpio-intc", .data
= &gxl_params
},
78 { .compatible
= "amlogic,meson-axg-gpio-intc", .data
= &axg_params
},
79 { .compatible
= "amlogic,meson-g12a-gpio-intc", .data
= &axg_params
},
80 { .compatible
= "amlogic,meson-sm1-gpio-intc", .data
= &sm1_params
},
84 struct meson_gpio_irq_controller
{
85 const struct meson_gpio_irq_params
*params
;
87 u32 channel_irqs
[NUM_CHANNEL
];
88 DECLARE_BITMAP(channel_map
, NUM_CHANNEL
);
92 static void meson_gpio_irq_update_bits(struct meson_gpio_irq_controller
*ctl
,
93 unsigned int reg
, u32 mask
, u32 val
)
97 tmp
= readl_relaxed(ctl
->base
+ reg
);
100 writel_relaxed(tmp
, ctl
->base
+ reg
);
103 static unsigned int meson_gpio_irq_channel_to_reg(unsigned int channel
)
105 return (channel
< 4) ? REG_PIN_03_SEL
: REG_PIN_47_SEL
;
109 meson_gpio_irq_request_channel(struct meson_gpio_irq_controller
*ctl
,
113 unsigned int reg
, idx
;
115 spin_lock(&ctl
->lock
);
117 /* Find a free channel */
118 idx
= find_first_zero_bit(ctl
->channel_map
, NUM_CHANNEL
);
119 if (idx
>= NUM_CHANNEL
) {
120 spin_unlock(&ctl
->lock
);
121 pr_err("No channel available\n");
125 /* Mark the channel as used */
126 set_bit(idx
, ctl
->channel_map
);
129 * Setup the mux of the channel to route the signal of the pad
130 * to the appropriate input of the GIC
132 reg
= meson_gpio_irq_channel_to_reg(idx
);
133 meson_gpio_irq_update_bits(ctl
, reg
,
134 0xff << REG_PIN_SEL_SHIFT(idx
),
135 hwirq
<< REG_PIN_SEL_SHIFT(idx
));
138 * Get the hwirq number assigned to this channel through
139 * a pointer the channel_irq table. The added benifit of this
140 * method is that we can also retrieve the channel index with
141 * it, using the table base.
143 *channel_hwirq
= &(ctl
->channel_irqs
[idx
]);
145 spin_unlock(&ctl
->lock
);
147 pr_debug("hwirq %lu assigned to channel %d - irq %u\n",
148 hwirq
, idx
, **channel_hwirq
);
154 meson_gpio_irq_get_channel_idx(struct meson_gpio_irq_controller
*ctl
,
157 return channel_hwirq
- ctl
->channel_irqs
;
161 meson_gpio_irq_release_channel(struct meson_gpio_irq_controller
*ctl
,
166 idx
= meson_gpio_irq_get_channel_idx(ctl
, channel_hwirq
);
167 clear_bit(idx
, ctl
->channel_map
);
170 static int meson_gpio_irq_type_setup(struct meson_gpio_irq_controller
*ctl
,
177 idx
= meson_gpio_irq_get_channel_idx(ctl
, channel_hwirq
);
180 * The controller has a filter block to operate in either LEVEL or
181 * EDGE mode, then signal is sent to the GIC. To enable LEVEL_LOW and
182 * EDGE_FALLING support (which the GIC does not support), the filter
183 * block is also able to invert the input signal it gets before
184 * providing it to the GIC.
186 type
&= IRQ_TYPE_SENSE_MASK
;
189 * New controller support EDGE_BOTH trigger. This setting takes
190 * precedence over the other edge/polarity settings
192 if (type
== IRQ_TYPE_EDGE_BOTH
) {
193 if (!ctl
->params
->support_edge_both
)
196 val
|= REG_BOTH_EDGE(idx
);
198 if (type
& (IRQ_TYPE_EDGE_RISING
| IRQ_TYPE_EDGE_FALLING
))
199 val
|= REG_EDGE_POL_EDGE(idx
);
201 if (type
& (IRQ_TYPE_LEVEL_LOW
| IRQ_TYPE_EDGE_FALLING
))
202 val
|= REG_EDGE_POL_LOW(idx
);
205 spin_lock(&ctl
->lock
);
207 meson_gpio_irq_update_bits(ctl
, REG_EDGE_POL
,
208 REG_EDGE_POL_MASK(idx
), val
);
210 spin_unlock(&ctl
->lock
);
215 static unsigned int meson_gpio_irq_type_output(unsigned int type
)
217 unsigned int sense
= type
& IRQ_TYPE_SENSE_MASK
;
219 type
&= ~IRQ_TYPE_SENSE_MASK
;
222 * The polarity of the signal provided to the GIC should always
225 if (sense
& (IRQ_TYPE_LEVEL_HIGH
| IRQ_TYPE_LEVEL_LOW
))
226 type
|= IRQ_TYPE_LEVEL_HIGH
;
228 type
|= IRQ_TYPE_EDGE_RISING
;
233 static int meson_gpio_irq_set_type(struct irq_data
*data
, unsigned int type
)
235 struct meson_gpio_irq_controller
*ctl
= data
->domain
->host_data
;
236 u32
*channel_hwirq
= irq_data_get_irq_chip_data(data
);
239 ret
= meson_gpio_irq_type_setup(ctl
, type
, channel_hwirq
);
243 return irq_chip_set_type_parent(data
,
244 meson_gpio_irq_type_output(type
));
247 static struct irq_chip meson_gpio_irq_chip
= {
248 .name
= "meson-gpio-irqchip",
249 .irq_mask
= irq_chip_mask_parent
,
250 .irq_unmask
= irq_chip_unmask_parent
,
251 .irq_eoi
= irq_chip_eoi_parent
,
252 .irq_set_type
= meson_gpio_irq_set_type
,
253 .irq_retrigger
= irq_chip_retrigger_hierarchy
,
255 .irq_set_affinity
= irq_chip_set_affinity_parent
,
257 .flags
= IRQCHIP_SET_TYPE_MASKED
,
260 static int meson_gpio_irq_domain_translate(struct irq_domain
*domain
,
261 struct irq_fwspec
*fwspec
,
262 unsigned long *hwirq
,
265 if (is_of_node(fwspec
->fwnode
) && fwspec
->param_count
== 2) {
266 *hwirq
= fwspec
->param
[0];
267 *type
= fwspec
->param
[1];
274 static int meson_gpio_irq_allocate_gic_irq(struct irq_domain
*domain
,
279 struct irq_fwspec fwspec
;
281 fwspec
.fwnode
= domain
->parent
->fwnode
;
282 fwspec
.param_count
= 3;
283 fwspec
.param
[0] = 0; /* SPI */
284 fwspec
.param
[1] = hwirq
;
285 fwspec
.param
[2] = meson_gpio_irq_type_output(type
);
287 return irq_domain_alloc_irqs_parent(domain
, virq
, 1, &fwspec
);
290 static int meson_gpio_irq_domain_alloc(struct irq_domain
*domain
,
292 unsigned int nr_irqs
,
295 struct irq_fwspec
*fwspec
= data
;
296 struct meson_gpio_irq_controller
*ctl
= domain
->host_data
;
302 if (WARN_ON(nr_irqs
!= 1))
305 ret
= meson_gpio_irq_domain_translate(domain
, fwspec
, &hwirq
, &type
);
309 ret
= meson_gpio_irq_request_channel(ctl
, hwirq
, &channel_hwirq
);
313 ret
= meson_gpio_irq_allocate_gic_irq(domain
, virq
,
314 *channel_hwirq
, type
);
316 pr_err("failed to allocate gic irq %u\n", *channel_hwirq
);
317 meson_gpio_irq_release_channel(ctl
, channel_hwirq
);
321 irq_domain_set_hwirq_and_chip(domain
, virq
, hwirq
,
322 &meson_gpio_irq_chip
, channel_hwirq
);
327 static void meson_gpio_irq_domain_free(struct irq_domain
*domain
,
329 unsigned int nr_irqs
)
331 struct meson_gpio_irq_controller
*ctl
= domain
->host_data
;
332 struct irq_data
*irq_data
;
335 if (WARN_ON(nr_irqs
!= 1))
338 irq_domain_free_irqs_parent(domain
, virq
, 1);
340 irq_data
= irq_domain_get_irq_data(domain
, virq
);
341 channel_hwirq
= irq_data_get_irq_chip_data(irq_data
);
343 meson_gpio_irq_release_channel(ctl
, channel_hwirq
);
346 static const struct irq_domain_ops meson_gpio_irq_domain_ops
= {
347 .alloc
= meson_gpio_irq_domain_alloc
,
348 .free
= meson_gpio_irq_domain_free
,
349 .translate
= meson_gpio_irq_domain_translate
,
352 static int __init
meson_gpio_irq_parse_dt(struct device_node
*node
,
353 struct meson_gpio_irq_controller
*ctl
)
355 const struct of_device_id
*match
;
358 match
= of_match_node(meson_irq_gpio_matches
, node
);
362 ctl
->params
= match
->data
;
364 ret
= of_property_read_variable_u32_array(node
,
365 "amlogic,channel-interrupts",
370 pr_err("can't get %d channel interrupts\n", NUM_CHANNEL
);
377 static int __init
meson_gpio_irq_of_init(struct device_node
*node
,
378 struct device_node
*parent
)
380 struct irq_domain
*domain
, *parent_domain
;
381 struct meson_gpio_irq_controller
*ctl
;
385 pr_err("missing parent interrupt node\n");
389 parent_domain
= irq_find_host(parent
);
390 if (!parent_domain
) {
391 pr_err("unable to obtain parent domain\n");
395 ctl
= kzalloc(sizeof(*ctl
), GFP_KERNEL
);
399 spin_lock_init(&ctl
->lock
);
401 ctl
->base
= of_iomap(node
, 0);
407 ret
= meson_gpio_irq_parse_dt(node
, ctl
);
409 goto free_channel_irqs
;
411 domain
= irq_domain_create_hierarchy(parent_domain
, 0,
412 ctl
->params
->nr_hwirq
,
413 of_node_to_fwnode(node
),
414 &meson_gpio_irq_domain_ops
,
417 pr_err("failed to add domain\n");
419 goto free_channel_irqs
;
422 pr_info("%d to %d gpio interrupt mux initialized\n",
423 ctl
->params
->nr_hwirq
, NUM_CHANNEL
);
435 IRQCHIP_DECLARE(meson_gpio_intc
, "amlogic,meson-gpio-intc",
436 meson_gpio_irq_of_init
);