0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef __IRQ_ATMEL_AIC_COMMON_H
0017 #define __IRQ_ATMEL_AIC_COMMON_H
0018
0019
0020 int aic_common_set_type(struct irq_data *d, unsigned type, unsigned *val);
0021
0022 void aic_common_set_priority(int priority, unsigned *val);
0023
0024 int aic_common_irq_domain_xlate(struct irq_domain *d,
0025 struct device_node *ctrlr,
0026 const u32 *intspec,
0027 unsigned int intsize,
0028 irq_hw_number_t *out_hwirq,
0029 unsigned int *out_type);
0030
0031 struct irq_domain *__init aic_common_of_init(struct device_node *node,
0032 const struct irq_domain_ops *ops,
0033 const char *name, int nirqs,
0034 const struct of_device_id *matches);
0035
0036 void __init aic_common_rtc_irq_fixup(void);
0037
0038 void __init aic_common_rtt_irq_fixup(void);
0039
0040 #endif