.. | .. |
---|
12 | 12 | #define _LINUX_IRQCHIP_H |
---|
13 | 13 | |
---|
14 | 14 | #include <linux/acpi.h> |
---|
| 15 | +#include <linux/module.h> |
---|
15 | 16 | #include <linux/of.h> |
---|
| 17 | +#include <linux/platform_device.h> |
---|
16 | 18 | |
---|
17 | 19 | /* |
---|
18 | 20 | * This macro must be used by the different irqchip drivers to declare |
---|
19 | 21 | * the association between their DT compatible string and their |
---|
20 | 22 | * initialization function. |
---|
21 | 23 | * |
---|
22 | | - * @name: name that must be unique accross all IRQCHIP_DECLARE of the |
---|
| 24 | + * @name: name that must be unique across all IRQCHIP_DECLARE of the |
---|
23 | 25 | * same file. |
---|
24 | 26 | * @compstr: compatible string of the irqchip driver |
---|
25 | 27 | * @fn: initialization function |
---|
26 | 28 | */ |
---|
27 | 29 | #define IRQCHIP_DECLARE(name, compat, fn) OF_DECLARE_2(irqchip, name, compat, fn) |
---|
28 | 30 | |
---|
| 31 | +extern int platform_irqchip_probe(struct platform_device *pdev); |
---|
| 32 | + |
---|
| 33 | +#define IRQCHIP_PLATFORM_DRIVER_BEGIN(drv_name) \ |
---|
| 34 | +static const struct of_device_id drv_name##_irqchip_match_table[] = { |
---|
| 35 | + |
---|
| 36 | +#define IRQCHIP_MATCH(compat, fn) { .compatible = compat, .data = fn }, |
---|
| 37 | + |
---|
| 38 | +#define IRQCHIP_PLATFORM_DRIVER_END(drv_name) \ |
---|
| 39 | + {}, \ |
---|
| 40 | +}; \ |
---|
| 41 | +MODULE_DEVICE_TABLE(of, drv_name##_irqchip_match_table); \ |
---|
| 42 | +static struct platform_driver drv_name##_driver = { \ |
---|
| 43 | + .probe = platform_irqchip_probe, \ |
---|
| 44 | + .driver = { \ |
---|
| 45 | + .name = #drv_name, \ |
---|
| 46 | + .owner = THIS_MODULE, \ |
---|
| 47 | + .of_match_table = drv_name##_irqchip_match_table, \ |
---|
| 48 | + .suppress_bind_attrs = true, \ |
---|
| 49 | + }, \ |
---|
| 50 | +}; \ |
---|
| 51 | +builtin_platform_driver(drv_name##_driver) |
---|
| 52 | + |
---|
29 | 53 | /* |
---|
30 | 54 | * This macro must be used by the different irqchip drivers to declare |
---|
31 | 55 | * the association between their version and their initialization function. |
---|
32 | 56 | * |
---|
33 | | - * @name: name that must be unique accross all IRQCHIP_ACPI_DECLARE of the |
---|
| 57 | + * @name: name that must be unique across all IRQCHIP_ACPI_DECLARE of the |
---|
34 | 58 | * same file. |
---|
35 | 59 | * @subtable: Subtable to be identified in MADT |
---|
36 | 60 | * @validate: Function to be called on that subtable to check its validity. |
---|
.. | .. |
---|
39 | 63 | * @fn: initialization function |
---|
40 | 64 | */ |
---|
41 | 65 | #define IRQCHIP_ACPI_DECLARE(name, subtable, validate, data, fn) \ |
---|
42 | | - ACPI_DECLARE_PROBE_ENTRY(irqchip, name, ACPI_SIG_MADT, \ |
---|
43 | | - subtable, validate, data, fn) |
---|
| 66 | + ACPI_DECLARE_SUBTABLE_PROBE_ENTRY(irqchip, name, \ |
---|
| 67 | + ACPI_SIG_MADT, subtable, \ |
---|
| 68 | + validate, data, fn) |
---|
44 | 69 | |
---|
45 | 70 | #ifdef CONFIG_IRQCHIP |
---|
46 | 71 | void irqchip_init(void); |
---|