irq-renesas-irqc.c 7.4 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
M
Magnus Damm 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Renesas IRQC Driver
 *
 *  Copyright (C) 2013 Magnus Damm
 */

#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/spinlock.h>
#include <linux/interrupt.h>
#include <linux/ioport.h>
#include <linux/io.h>
#include <linux/irq.h>
#include <linux/irqdomain.h>
#include <linux/err.h>
#include <linux/slab.h>
#include <linux/module.h>
19
#include <linux/pm_runtime.h>
M
Magnus Damm 已提交
20

21
#define IRQC_IRQ_MAX	32	/* maximum 32 interrupts per driver instance */
M
Magnus Damm 已提交
22

23 24 25
#define IRQC_REQ_STS	0x00	/* Interrupt Request Status Register */
#define IRQC_EN_STS	0x04	/* Interrupt Enable Status Register */
#define IRQC_EN_SET	0x08	/* Interrupt Enable Set Register */
M
Magnus Damm 已提交
26
#define IRQC_INT_CPU_BASE(n) (0x000 + ((n) * 0x10))
27 28 29 30 31 32 33 34 35 36
				/* SYS-CPU vs. RT-CPU */
#define DETECT_STATUS	0x100	/* IRQn Detect Status Register */
#define MONITOR		0x104	/* IRQn Signal Level Monitor Register */
#define HLVL_STS	0x108	/* IRQn High Level Detect Status Register */
#define LLVL_STS	0x10c	/* IRQn Low Level Detect Status Register */
#define S_R_EDGE_STS	0x110	/* IRQn Sync Rising Edge Detect Status Reg. */
#define S_F_EDGE_STS	0x114	/* IRQn Sync Falling Edge Detect Status Reg. */
#define A_R_EDGE_STS	0x118	/* IRQn Async Rising Edge Detect Status Reg. */
#define A_F_EDGE_STS	0x11c	/* IRQn Async Falling Edge Detect Status Reg. */
#define CHTEN_STS	0x120	/* Chattering Reduction Status Register */
M
Magnus Damm 已提交
37
#define IRQC_CONFIG(n) (0x180 + ((n) * 0x04))
38
				/* IRQn Configuration Register */
M
Magnus Damm 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51

struct irqc_irq {
	int hw_irq;
	int requested_irq;
	struct irqc_priv *p;
};

struct irqc_priv {
	void __iomem *iomem;
	void __iomem *cpu_int_base;
	struct irqc_irq irq[IRQC_IRQ_MAX];
	unsigned int number_of_irqs;
	struct platform_device *pdev;
52
	struct irq_chip_generic *gc;
M
Magnus Damm 已提交
53
	struct irq_domain *irq_domain;
54
	atomic_t wakeup_path;
M
Magnus Damm 已提交
55 56
};

57
static struct irqc_priv *irq_data_to_priv(struct irq_data *data)
M
Magnus Damm 已提交
58
{
59
	return data->domain->host_data;
M
Magnus Damm 已提交
60 61
}

62
static void irqc_dbg(struct irqc_irq *i, char *str)
M
Magnus Damm 已提交
63
{
64 65
	dev_dbg(&i->p->pdev->dev, "%s (%d:%d)\n",
		str, i->requested_irq, i->hw_irq);
M
Magnus Damm 已提交
66 67 68
}

static unsigned char irqc_sense[IRQ_TYPE_SENSE_MASK + 1] = {
69 70 71 72 73
	[IRQ_TYPE_LEVEL_LOW]	= 0x01,
	[IRQ_TYPE_LEVEL_HIGH]	= 0x02,
	[IRQ_TYPE_EDGE_FALLING]	= 0x04,	/* Synchronous */
	[IRQ_TYPE_EDGE_RISING]	= 0x08,	/* Synchronous */
	[IRQ_TYPE_EDGE_BOTH]	= 0x0c,	/* Synchronous */
M
Magnus Damm 已提交
74 75 76 77
};

static int irqc_irq_set_type(struct irq_data *d, unsigned int type)
{
78
	struct irqc_priv *p = irq_data_to_priv(d);
M
Magnus Damm 已提交
79 80
	int hw_irq = irqd_to_hwirq(d);
	unsigned char value = irqc_sense[type & IRQ_TYPE_SENSE_MASK];
81
	u32 tmp;
M
Magnus Damm 已提交
82 83 84

	irqc_dbg(&p->irq[hw_irq], "sense");

85
	if (!value)
M
Magnus Damm 已提交
86 87 88 89
		return -EINVAL;

	tmp = ioread32(p->iomem + IRQC_CONFIG(hw_irq));
	tmp &= ~0x3f;
90
	tmp |= value;
M
Magnus Damm 已提交
91 92 93 94
	iowrite32(tmp, p->iomem + IRQC_CONFIG(hw_irq));
	return 0;
}

95 96
static int irqc_irq_set_wake(struct irq_data *d, unsigned int on)
{
97
	struct irqc_priv *p = irq_data_to_priv(d);
98 99 100
	int hw_irq = irqd_to_hwirq(d);

	irq_set_irq_wake(p->irq[hw_irq].requested_irq, on);
101
	if (on)
102
		atomic_inc(&p->wakeup_path);
103
	else
104
		atomic_dec(&p->wakeup_path);
105 106 107 108

	return 0;
}

M
Magnus Damm 已提交
109 110 111 112
static irqreturn_t irqc_irq_handler(int irq, void *dev_id)
{
	struct irqc_irq *i = dev_id;
	struct irqc_priv *p = i->p;
113
	u32 bit = BIT(i->hw_irq);
M
Magnus Damm 已提交
114 115 116 117 118 119

	irqc_dbg(i, "demux1");

	if (ioread32(p->iomem + DETECT_STATUS) & bit) {
		iowrite32(bit, p->iomem + DETECT_STATUS);
		irqc_dbg(i, "demux2");
120
		generic_handle_irq(irq_find_mapping(p->irq_domain, i->hw_irq));
M
Magnus Damm 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
		return IRQ_HANDLED;
	}
	return IRQ_NONE;
}

static int irqc_probe(struct platform_device *pdev)
{
	struct irqc_priv *p;
	struct resource *io;
	struct resource *irq;
	const char *name = dev_name(&pdev->dev);
	int ret;
	int k;

	p = kzalloc(sizeof(*p), GFP_KERNEL);
	if (!p) {
		dev_err(&pdev->dev, "failed to allocate driver data\n");
		ret = -ENOMEM;
		goto err0;
	}

	p->pdev = pdev;
	platform_set_drvdata(pdev, p);

145 146 147
	pm_runtime_enable(&pdev->dev);
	pm_runtime_get_sync(&pdev->dev);

M
Magnus Damm 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
	/* get hold of manadatory IOMEM */
	io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!io) {
		dev_err(&pdev->dev, "not enough IOMEM resources\n");
		ret = -EINVAL;
		goto err1;
	}

	/* allow any number of IRQs between 1 and IRQC_IRQ_MAX */
	for (k = 0; k < IRQC_IRQ_MAX; k++) {
		irq = platform_get_resource(pdev, IORESOURCE_IRQ, k);
		if (!irq)
			break;

		p->irq[k].p = p;
163
		p->irq[k].hw_irq = k;
M
Magnus Damm 已提交
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
		p->irq[k].requested_irq = irq->start;
	}

	p->number_of_irqs = k;
	if (p->number_of_irqs < 1) {
		dev_err(&pdev->dev, "not enough IRQ resources\n");
		ret = -EINVAL;
		goto err1;
	}

	/* ioremap IOMEM and setup read/write callbacks */
	p->iomem = ioremap_nocache(io->start, resource_size(io));
	if (!p->iomem) {
		dev_err(&pdev->dev, "failed to remap IOMEM\n");
		ret = -ENXIO;
		goto err2;
	}

	p->cpu_int_base = p->iomem + IRQC_INT_CPU_BASE(0); /* SYS-SPI */

184 185
	p->irq_domain = irq_domain_add_linear(pdev->dev.of_node,
					      p->number_of_irqs,
186
					      &irq_generic_chip_ops, p);
M
Magnus Damm 已提交
187 188 189 190 191 192
	if (!p->irq_domain) {
		ret = -ENXIO;
		dev_err(&pdev->dev, "cannot initialize irq domain\n");
		goto err2;
	}

193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
	ret = irq_alloc_domain_generic_chips(p->irq_domain, p->number_of_irqs,
					     1, name, handle_level_irq,
					     0, 0, IRQ_GC_INIT_NESTED_LOCK);
	if (ret) {
		dev_err(&pdev->dev, "cannot allocate generic chip\n");
		goto err3;
	}

	p->gc = irq_get_domain_generic_chip(p->irq_domain, 0);
	p->gc->reg_base = p->cpu_int_base;
	p->gc->chip_types[0].regs.enable = IRQC_EN_SET;
	p->gc->chip_types[0].regs.disable = IRQC_EN_STS;
	p->gc->chip_types[0].chip.irq_mask = irq_gc_mask_disable_reg;
	p->gc->chip_types[0].chip.irq_unmask = irq_gc_unmask_enable_reg;
	p->gc->chip_types[0].chip.irq_set_type	= irqc_irq_set_type;
	p->gc->chip_types[0].chip.irq_set_wake	= irqc_irq_set_wake;
	p->gc->chip_types[0].chip.flags	= IRQCHIP_MASK_ON_SUSPEND;

M
Magnus Damm 已提交
211 212 213 214 215 216
	/* request interrupts one by one */
	for (k = 0; k < p->number_of_irqs; k++) {
		if (request_irq(p->irq[k].requested_irq, irqc_irq_handler,
				0, name, &p->irq[k])) {
			dev_err(&pdev->dev, "failed to request IRQ\n");
			ret = -ENOENT;
217
			goto err4;
M
Magnus Damm 已提交
218 219 220 221 222 223
		}
	}

	dev_info(&pdev->dev, "driving %d irqs\n", p->number_of_irqs);

	return 0;
224
err4:
225 226
	while (--k >= 0)
		free_irq(p->irq[k].requested_irq, &p->irq[k]);
M
Magnus Damm 已提交
227

228
err3:
M
Magnus Damm 已提交
229 230 231 232
	irq_domain_remove(p->irq_domain);
err2:
	iounmap(p->iomem);
err1:
233 234
	pm_runtime_put(&pdev->dev);
	pm_runtime_disable(&pdev->dev);
M
Magnus Damm 已提交
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
	kfree(p);
err0:
	return ret;
}

static int irqc_remove(struct platform_device *pdev)
{
	struct irqc_priv *p = platform_get_drvdata(pdev);
	int k;

	for (k = 0; k < p->number_of_irqs; k++)
		free_irq(p->irq[k].requested_irq, &p->irq[k]);

	irq_domain_remove(p->irq_domain);
	iounmap(p->iomem);
250 251
	pm_runtime_put(&pdev->dev);
	pm_runtime_disable(&pdev->dev);
M
Magnus Damm 已提交
252 253 254 255
	kfree(p);
	return 0;
}

256 257 258 259 260 261 262 263 264 265 266 267
static int __maybe_unused irqc_suspend(struct device *dev)
{
	struct irqc_priv *p = dev_get_drvdata(dev);

	if (atomic_read(&p->wakeup_path))
		device_set_wakeup_path(dev);

	return 0;
}

static SIMPLE_DEV_PM_OPS(irqc_pm_ops, irqc_suspend, NULL);

M
Magnus Damm 已提交
268 269 270 271 272 273
static const struct of_device_id irqc_dt_ids[] = {
	{ .compatible = "renesas,irqc", },
	{},
};
MODULE_DEVICE_TABLE(of, irqc_dt_ids);

M
Magnus Damm 已提交
274 275 276 277 278
static struct platform_driver irqc_device_driver = {
	.probe		= irqc_probe,
	.remove		= irqc_remove,
	.driver		= {
		.name	= "renesas_irqc",
M
Magnus Damm 已提交
279
		.of_match_table	= irqc_dt_ids,
280
		.pm	= &irqc_pm_ops,
M
Magnus Damm 已提交
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
	}
};

static int __init irqc_init(void)
{
	return platform_driver_register(&irqc_device_driver);
}
postcore_initcall(irqc_init);

static void __exit irqc_exit(void)
{
	platform_driver_unregister(&irqc_device_driver);
}
module_exit(irqc_exit);

MODULE_AUTHOR("Magnus Damm");
MODULE_DESCRIPTION("Renesas IRQC Driver");
MODULE_LICENSE("GPL v2");