2 * Copyright (c) 2016, Mellanox Technologies. All rights reserved.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 #include <linux/interrupt.h>
34 #include <linux/module.h>
36 #include <linux/irq.h>
37 #include <linux/irqdomain.h>
38 #include <linux/irqchip.h>
39 #include <soc/nps/common.h>
41 #define NPS_NR_CPU_IRQS 8 /* number of interrupt lines of NPS400 CPU */
42 #define NPS_TIMER0_IRQ 3
45 * NPS400 core includes an Interrupt Controller (IC) support.
46 * All cores can deactivate level irqs at first level control
47 * at cores mesh layer called MTM.
48 * For devices out side chip e.g. uart, network there is another
49 * level called Global Interrupt Manager (GIM).
50 * This second level can control level and edge interrupt.
52 * NOTE: AUX_IENABLE and CTOP_AUX_IACK are auxiliary registers
53 * with private HW copy per CPU.
56 static void nps400_irq_mask(struct irq_data *irqd)
59 unsigned int irq = irqd_to_hwirq(irqd);
61 ienb = read_aux_reg(AUX_IENABLE);
63 write_aux_reg(AUX_IENABLE, ienb);
66 static void nps400_irq_unmask(struct irq_data *irqd)
69 unsigned int irq = irqd_to_hwirq(irqd);
71 ienb = read_aux_reg(AUX_IENABLE);
73 write_aux_reg(AUX_IENABLE, ienb);
76 static void nps400_irq_eoi_global(struct irq_data *irqd)
78 unsigned int __maybe_unused irq = irqd_to_hwirq(irqd);
80 write_aux_reg(CTOP_AUX_IACK, 1 << irq);
82 /* Don't ack GIC before all device access attempts are done */
88 static void nps400_irq_ack(struct irq_data *irqd)
90 unsigned int __maybe_unused irq = irqd_to_hwirq(irqd);
92 write_aux_reg(CTOP_AUX_IACK, 1 << irq);
95 static struct irq_chip nps400_irq_chip_fasteoi = {
96 .name = "NPS400 IC Global",
97 .irq_mask = nps400_irq_mask,
98 .irq_unmask = nps400_irq_unmask,
99 .irq_eoi = nps400_irq_eoi_global,
102 static struct irq_chip nps400_irq_chip_percpu = {
104 .irq_mask = nps400_irq_mask,
105 .irq_unmask = nps400_irq_unmask,
106 .irq_ack = nps400_irq_ack,
109 static int nps400_irq_map(struct irq_domain *d, unsigned int virq,
117 irq_set_percpu_devid(virq);
118 irq_set_chip_and_handler(virq, &nps400_irq_chip_percpu,
119 handle_percpu_devid_irq);
122 irq_set_chip_and_handler(virq, &nps400_irq_chip_fasteoi,
130 static const struct irq_domain_ops nps400_irq_ops = {
131 .xlate = irq_domain_xlate_onecell,
132 .map = nps400_irq_map,
135 static int __init nps400_of_init(struct device_node *node,
136 struct device_node *parent)
138 struct irq_domain *nps400_root_domain;
141 pr_err("DeviceTree incore ic not a root irq controller\n");
145 nps400_root_domain = irq_domain_add_linear(node, NPS_NR_CPU_IRQS,
146 &nps400_irq_ops, NULL);
148 if (!nps400_root_domain) {
149 pr_err("nps400 root irq domain not avail\n");
154 * Needed for primary domain lookup to succeed
155 * This is a primary irqchip, and can never have a parent
157 irq_set_default_host(nps400_root_domain);
160 irq_create_mapping(nps400_root_domain, NPS_IPI_IRQ);
165 IRQCHIP_DECLARE(ezchip_nps400_ic, "ezchip,nps400-ic", nps400_of_init);