1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 #ifndef __IRQ_ATMEL_AIC_COMMON_H
17 #define __IRQ_ATMEL_AIC_COMMON_H
18
19
20 int aic_common_set_type(struct irq_data *d, unsigned type, unsigned *val);
21
22 void aic_common_set_priority(int priority, unsigned *val);
23
24 int aic_common_irq_domain_xlate(struct irq_domain *d,
25 struct device_node *ctrlr,
26 const u32 *intspec,
27 unsigned int intsize,
28 irq_hw_number_t *out_hwirq,
29 unsigned int *out_type);
30
31 struct irq_domain *__init aic_common_of_init(struct device_node *node,
32 const struct irq_domain_ops *ops,
33 const char *name, int nirqs,
34 const struct of_device_id *matches);
35
36 void __init aic_common_rtc_irq_fixup(void);
37
38 void __init aic_common_rtt_irq_fixup(void);
39
40 #endif