mirror of https://github.com/OpenIPC/firmware.git
246 lines
6.7 KiB
Diff
246 lines
6.7 KiB
Diff
diff -drupN a/drivers/irqchip/irq-sunxi-8i-nmi.c b/drivers/irqchip/irq-sunxi-8i-nmi.c
|
|
--- a/drivers/irqchip/irq-sunxi-8i-nmi.c 1970-01-01 03:00:00.000000000 +0300
|
|
+++ b/drivers/irqchip/irq-sunxi-8i-nmi.c 2022-06-12 05:28:14.000000000 +0300
|
|
@@ -0,0 +1,241 @@
|
|
+/*
|
|
+ * Allwinner A20/A31 SoCs NMI IRQ chip driver.
|
|
+ *
|
|
+ * Carlo Caione <carlo.caione@gmail.com>
|
|
+ *
|
|
+ * This file is licensed under the terms of the GNU General Public
|
|
+ * License version 2. This program is licensed "as is" without any
|
|
+ * warranty of any kind, whether express or implied.
|
|
+ */
|
|
+
|
|
+#define DRV_NAME "sunxi-8i-nmi"
|
|
+#define pr_fmt(fmt) DRV_NAME ": " fmt
|
|
+
|
|
+#include <linux/bitops.h>
|
|
+#include <linux/device.h>
|
|
+#include <linux/io.h>
|
|
+#include <linux/irq.h>
|
|
+#include <linux/interrupt.h>
|
|
+#include <linux/irqdomain.h>
|
|
+#include <linux/of_irq.h>
|
|
+#include <linux/of_address.h>
|
|
+#include <linux/of_platform.h>
|
|
+#include <linux/irqchip.h>
|
|
+#include <linux/irqchip/chained_irq.h>
|
|
+#include <linux/syscore_ops.h>
|
|
+
|
|
+#define SUNXI_NMI_SRC_TYPE_MASK 0x00000003
|
|
+
|
|
+enum {
|
|
+ SUNXI_SRC_TYPE_LEVEL_LOW = 0,
|
|
+ SUNXI_SRC_TYPE_EDGE_FALLING,
|
|
+ SUNXI_SRC_TYPE_LEVEL_HIGH,
|
|
+ SUNXI_SRC_TYPE_EDGE_RISING,
|
|
+};
|
|
+
|
|
+struct sunxi_sc_nmi_reg_offs {
|
|
+ u32 ctrl;
|
|
+ u32 pend;
|
|
+ u32 enable;
|
|
+};
|
|
+
|
|
+static struct sunxi_sc_nmi_reg_offs sun8i_reg_offs = {
|
|
+ .ctrl = 0x00,
|
|
+ .pend = 0x08,
|
|
+ .enable = 0x04,
|
|
+};
|
|
+
|
|
+static inline void sunxi_sc_nmi_write(struct irq_chip_generic *gc, u32 off,
|
|
+ u32 val)
|
|
+{
|
|
+ irq_reg_writel(gc, val, off);
|
|
+}
|
|
+
|
|
+static inline u32 sunxi_sc_nmi_read(struct irq_chip_generic *gc, u32 off)
|
|
+{
|
|
+ return irq_reg_readl(gc, off);
|
|
+}
|
|
+
|
|
+static void sunxi_sc_nmi_handle_irq(struct irq_desc *desc)
|
|
+{
|
|
+ struct irq_domain *domain = irq_desc_get_handler_data(desc);
|
|
+ struct irq_chip *chip = irq_desc_get_chip(desc);
|
|
+ unsigned int virq = irq_find_mapping(domain, 0);
|
|
+
|
|
+ chained_irq_enter(chip, desc);
|
|
+ generic_handle_irq(virq);
|
|
+ chained_irq_exit(chip, desc);
|
|
+}
|
|
+
|
|
+static int sunxi_sc_nmi_set_type(struct irq_data *data, unsigned int flow_type)
|
|
+{
|
|
+ struct irq_chip_generic *gc = irq_data_get_irq_chip_data(data);
|
|
+ struct irq_chip_type *ct = gc->chip_types;
|
|
+ u32 src_type_reg;
|
|
+ u32 ctrl_off = ct->regs.type;
|
|
+ unsigned int src_type;
|
|
+ unsigned int i;
|
|
+
|
|
+ irq_gc_lock(gc);
|
|
+
|
|
+ switch (flow_type & IRQF_TRIGGER_MASK) {
|
|
+ case IRQ_TYPE_EDGE_FALLING:
|
|
+ src_type = SUNXI_SRC_TYPE_EDGE_FALLING;
|
|
+ break;
|
|
+ case IRQ_TYPE_EDGE_RISING:
|
|
+ src_type = SUNXI_SRC_TYPE_EDGE_RISING;
|
|
+ break;
|
|
+ case IRQ_TYPE_LEVEL_HIGH:
|
|
+ src_type = SUNXI_SRC_TYPE_LEVEL_HIGH;
|
|
+ break;
|
|
+ case IRQ_TYPE_NONE:
|
|
+ case IRQ_TYPE_LEVEL_LOW:
|
|
+ src_type = SUNXI_SRC_TYPE_LEVEL_LOW;
|
|
+ break;
|
|
+ default:
|
|
+ irq_gc_unlock(gc);
|
|
+ pr_err("Cannot assign multiple trigger modes to IRQ %d.\n",
|
|
+ data->irq);
|
|
+ return -EBADR;
|
|
+ }
|
|
+
|
|
+ irqd_set_trigger_type(data, flow_type);
|
|
+ irq_setup_alt_chip(data, flow_type);
|
|
+
|
|
+ for (i = 0; i < gc->num_ct; i++, ct++)
|
|
+ if (ct->type & flow_type)
|
|
+ ctrl_off = ct->regs.type;
|
|
+
|
|
+ src_type_reg = sunxi_sc_nmi_read(gc, ctrl_off);
|
|
+ src_type_reg &= ~SUNXI_NMI_SRC_TYPE_MASK;
|
|
+ src_type_reg |= src_type;
|
|
+ sunxi_sc_nmi_write(gc, ctrl_off, src_type_reg);
|
|
+
|
|
+ irq_gc_unlock(gc);
|
|
+
|
|
+ return IRQ_SET_MASK_OK;
|
|
+}
|
|
+
|
|
+static void __init sunxi_nmi_pad_control(struct device_node *node)
|
|
+{
|
|
+ u32 v;
|
|
+ u32 __iomem *pad;
|
|
+
|
|
+ /* if we read pad-control-v1, the we use the addr to contorl nmi */
|
|
+ if (of_property_read_u32(node, "pad-control-v1", &v))
|
|
+ return;
|
|
+
|
|
+ pad = ioremap(v, 4);
|
|
+ *pad = *pad & ~BIT(0);
|
|
+}
|
|
+
|
|
+/*
|
|
+ * on some standby, the prcm control register can lowpower down
|
|
+ * so it must resume the register value first
|
|
+ */
|
|
+static struct irq_chip_generic *sys_gc;
|
|
+static struct sunxi_sc_nmi_reg_offs *sys_reg_offs;
|
|
+static uint32_t sys_vaule;
|
|
+static int sunxi_nmi_suspend(void)
|
|
+{
|
|
+ sys_vaule = sunxi_sc_nmi_read(sys_gc, sys_reg_offs->enable);
|
|
+ return 0;
|
|
+}
|
|
+
|
|
+static void sunxi_nmi_resume(void)
|
|
+{
|
|
+ sunxi_sc_nmi_write(sys_gc, sys_reg_offs->enable, sys_vaule);
|
|
+}
|
|
+
|
|
+static struct syscore_ops sunxi_nmi_syscore_ops = {
|
|
+ .suspend = sunxi_nmi_suspend,
|
|
+ .resume = sunxi_nmi_resume,
|
|
+};
|
|
+
|
|
+static int __init sunxi_sc_nmi_irq_init(struct device_node *node,
|
|
+ struct sunxi_sc_nmi_reg_offs *reg_offs)
|
|
+{
|
|
+ struct irq_domain *domain;
|
|
+ struct irq_chip_generic *gc;
|
|
+ unsigned int irq;
|
|
+ unsigned int clr = IRQ_NOREQUEST | IRQ_NOPROBE | IRQ_NOAUTOEN;
|
|
+ int ret;
|
|
+
|
|
+
|
|
+ domain = irq_domain_add_linear(node, 1, &irq_generic_chip_ops, NULL);
|
|
+ if (!domain) {
|
|
+ pr_err("Could not register interrupt domain.\n");
|
|
+ return -ENOMEM;
|
|
+ }
|
|
+
|
|
+ ret = irq_alloc_domain_generic_chips(domain, 1, 2, DRV_NAME,
|
|
+ handle_fasteoi_irq, clr, 0,
|
|
+ IRQ_GC_INIT_MASK_CACHE);
|
|
+ if (ret) {
|
|
+ pr_err("Could not allocate generic interrupt chip.\n");
|
|
+ goto fail_irqd_remove;
|
|
+ }
|
|
+
|
|
+ irq = irq_of_parse_and_map(node, 0);
|
|
+ if (irq <= 0) {
|
|
+ pr_err("unable to parse irq\n");
|
|
+ ret = -EINVAL;
|
|
+ goto fail_irqd_remove;
|
|
+ }
|
|
+
|
|
+ gc = irq_get_domain_generic_chip(domain, 0);
|
|
+ gc->reg_base = of_io_request_and_map(node, 0, of_node_full_name(node));
|
|
+ if (IS_ERR(gc->reg_base)) {
|
|
+ pr_err("unable to map resource\n");
|
|
+ ret = PTR_ERR(gc->reg_base);
|
|
+ goto fail_irqd_remove;
|
|
+ }
|
|
+
|
|
+ gc->chip_types[0].type = IRQ_TYPE_LEVEL_MASK;
|
|
+ gc->chip_types[0].chip.irq_mask = irq_gc_mask_clr_bit;
|
|
+ gc->chip_types[0].chip.irq_unmask = irq_gc_mask_set_bit;
|
|
+ gc->chip_types[0].chip.irq_eoi = irq_gc_ack_set_bit;
|
|
+ gc->chip_types[0].chip.irq_set_type = sunxi_sc_nmi_set_type;
|
|
+ gc->chip_types[0].chip.flags = IRQCHIP_EOI_THREADED |
|
|
+ IRQCHIP_EOI_IF_HANDLED |
|
|
+ IRQCHIP_SKIP_SET_WAKE;
|
|
+ gc->chip_types[0].regs.ack = reg_offs->pend;
|
|
+ gc->chip_types[0].regs.mask = reg_offs->enable;
|
|
+ gc->chip_types[0].regs.type = reg_offs->ctrl;
|
|
+
|
|
+ gc->chip_types[1].type = IRQ_TYPE_EDGE_BOTH;
|
|
+ gc->chip_types[1].chip.name = gc->chip_types[0].chip.name;
|
|
+ gc->chip_types[1].chip.irq_ack = irq_gc_ack_set_bit;
|
|
+ gc->chip_types[1].chip.irq_mask = irq_gc_mask_clr_bit;
|
|
+ gc->chip_types[1].chip.irq_unmask = irq_gc_mask_set_bit;
|
|
+ gc->chip_types[1].chip.irq_set_type = sunxi_sc_nmi_set_type;
|
|
+ gc->chip_types[1].regs.ack = reg_offs->pend;
|
|
+ gc->chip_types[1].regs.mask = reg_offs->enable;
|
|
+ gc->chip_types[1].regs.type = reg_offs->ctrl;
|
|
+ gc->chip_types[1].handler = handle_edge_irq;
|
|
+
|
|
+ sunxi_sc_nmi_write(gc, reg_offs->enable, 0);
|
|
+ sunxi_sc_nmi_write(gc, reg_offs->pend, 0x1);
|
|
+
|
|
+ sunxi_nmi_pad_control(node);
|
|
+ sys_gc = gc;
|
|
+ sys_reg_offs = reg_offs;
|
|
+ register_syscore_ops(&sunxi_nmi_syscore_ops);
|
|
+
|
|
+ irq_set_chained_handler_and_data(irq, sunxi_sc_nmi_handle_irq, domain);
|
|
+
|
|
+ return 0;
|
|
+
|
|
+fail_irqd_remove:
|
|
+ irq_domain_remove(domain);
|
|
+
|
|
+ return ret;
|
|
+}
|
|
+
|
|
+
|
|
+static int __init sun8i_nmi_irq_init(struct device_node *node,
|
|
+ struct device_node *parent)
|
|
+{
|
|
+ return sunxi_sc_nmi_irq_init(node, &sun8i_reg_offs);
|
|
+}
|
|
+IRQCHIP_DECLARE(sun8i_nmi, "allwinner,sun8i-nmi", sun8i_nmi_irq_init);
|