2 * Copyright (C) 2012 Thomas Petazzoni
4 * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
11 #ifndef _LINUX_IRQCHIP_H
12 #define _LINUX_IRQCHIP_H
14 #include <linux/acpi.h>
15 #include <linux/module.h>
17 #include <linux/of_irq.h>
18 #include <linux/platform_device.h>
20 /* Undefined on purpose */
21 extern of_irq_init_cb_t typecheck_irq_init_cb;
23 #define typecheck_irq_init_cb(fn) \
24 (__typecheck(typecheck_irq_init_cb, &fn) ? fn : fn)
27 * This macro must be used by the different irqchip drivers to declare
28 * the association between their DT compatible string and their
29 * initialization function.
31 * @name: name that must be unique across all IRQCHIP_DECLARE of the
33 * @compat: compatible string of the irqchip driver
34 * @fn: initialization function
36 #define IRQCHIP_DECLARE(name, compat, fn) \
37 OF_DECLARE_2(irqchip, name, compat, typecheck_irq_init_cb(fn))
39 extern int platform_irqchip_probe(struct platform_device *pdev);
41 #define IRQCHIP_PLATFORM_DRIVER_BEGIN(drv_name) \
42 static const struct of_device_id drv_name##_irqchip_match_table[] = {
44 #define IRQCHIP_MATCH(compat, fn) { .compatible = compat, \
45 .data = typecheck_irq_init_cb(fn), },
48 #define IRQCHIP_PLATFORM_DRIVER_END(drv_name, ...) \
51 MODULE_DEVICE_TABLE(of, drv_name##_irqchip_match_table); \
52 static struct platform_driver drv_name##_driver = { \
53 .probe = IS_ENABLED(CONFIG_IRQCHIP) ? \
54 platform_irqchip_probe : NULL, \
57 .owner = THIS_MODULE, \
58 .of_match_table = drv_name##_irqchip_match_table, \
59 .suppress_bind_attrs = true, \
63 builtin_platform_driver(drv_name##_driver)
66 * This macro must be used by the different irqchip drivers to declare
67 * the association between their version and their initialization function.
69 * @name: name that must be unique across all IRQCHIP_ACPI_DECLARE of the
71 * @subtable: Subtable to be identified in MADT
72 * @validate: Function to be called on that subtable to check its validity.
74 * @data: data to be checked by the validate function.
75 * @fn: initialization function
77 #define IRQCHIP_ACPI_DECLARE(name, subtable, validate, data, fn) \
78 ACPI_DECLARE_SUBTABLE_PROBE_ENTRY(irqchip, name, \
79 ACPI_SIG_MADT, subtable, \
83 void irqchip_init(void);
85 static inline void irqchip_init(void) {}