1*b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */ 22be6bb0cSPaul Mundt #include <linux/sh_intc.h> 32be6bb0cSPaul Mundt #include <linux/irq.h> 41d6a21b0SPaul Mundt #include <linux/irqdomain.h> 52be6bb0cSPaul Mundt #include <linux/list.h> 62be6bb0cSPaul Mundt #include <linux/kernel.h> 72be6bb0cSPaul Mundt #include <linux/types.h> 82be6bb0cSPaul Mundt #include <linux/radix-tree.h> 9f4e73bfcSKay Sievers #include <linux/device.h> 102be6bb0cSPaul Mundt 112be6bb0cSPaul Mundt #define _INTC_MK(fn, mode, addr_e, addr_d, width, shift) \ 122be6bb0cSPaul Mundt ((shift) | ((width) << 5) | ((fn) << 9) | ((mode) << 13) | \ 132be6bb0cSPaul Mundt ((addr_e) << 16) | ((addr_d << 24))) 142be6bb0cSPaul Mundt 152be6bb0cSPaul Mundt #define _INTC_SHIFT(h) (h & 0x1f) 162be6bb0cSPaul Mundt #define _INTC_WIDTH(h) ((h >> 5) & 0xf) 172be6bb0cSPaul Mundt #define _INTC_FN(h) ((h >> 9) & 0xf) 182be6bb0cSPaul Mundt #define _INTC_MODE(h) ((h >> 13) & 0x7) 192be6bb0cSPaul Mundt #define _INTC_ADDR_E(h) ((h >> 16) & 0xff) 202be6bb0cSPaul Mundt #define _INTC_ADDR_D(h) ((h >> 24) & 0xff) 212be6bb0cSPaul Mundt 222be6bb0cSPaul Mundt #ifdef CONFIG_SMP 232be6bb0cSPaul Mundt #define IS_SMP(x) (x.smp) 242be6bb0cSPaul Mundt #define INTC_REG(d, x, c) (d->reg[(x)] + ((d->smp[(x)] & 0xff) * c)) 252be6bb0cSPaul Mundt #define SMP_NR(d, x) ((d->smp[(x)] >> 8) ? (d->smp[(x)] >> 8) : 1) 262be6bb0cSPaul Mundt #else 272be6bb0cSPaul Mundt #define IS_SMP(x) 0 282be6bb0cSPaul Mundt #define INTC_REG(d, x, c) (d->reg[(x)]) 292be6bb0cSPaul Mundt #define SMP_NR(d, x) 1 302be6bb0cSPaul Mundt #endif 312be6bb0cSPaul Mundt 322be6bb0cSPaul Mundt struct intc_handle_int { 332be6bb0cSPaul Mundt unsigned int irq; 342be6bb0cSPaul Mundt unsigned long handle; 352be6bb0cSPaul Mundt }; 362be6bb0cSPaul Mundt 372be6bb0cSPaul Mundt struct intc_window { 382be6bb0cSPaul Mundt phys_addr_t phys; 392be6bb0cSPaul Mundt void __iomem *virt; 402be6bb0cSPaul Mundt unsigned long size; 412be6bb0cSPaul Mundt }; 422be6bb0cSPaul Mundt 432be6bb0cSPaul Mundt struct intc_map_entry { 442be6bb0cSPaul Mundt intc_enum enum_id; 452be6bb0cSPaul Mundt struct intc_desc_int *desc; 462be6bb0cSPaul Mundt }; 472be6bb0cSPaul Mundt 482be6bb0cSPaul Mundt struct intc_subgroup_entry { 492be6bb0cSPaul Mundt unsigned int pirq; 502be6bb0cSPaul Mundt intc_enum enum_id; 512be6bb0cSPaul Mundt unsigned long handle; 522be6bb0cSPaul Mundt }; 532be6bb0cSPaul Mundt 542be6bb0cSPaul Mundt struct intc_desc_int { 552be6bb0cSPaul Mundt struct list_head list; 56f4e73bfcSKay Sievers struct device dev; 572be6bb0cSPaul Mundt struct radix_tree_root tree; 582be6bb0cSPaul Mundt raw_spinlock_t lock; 592be6bb0cSPaul Mundt unsigned int index; 602be6bb0cSPaul Mundt unsigned long *reg; 612be6bb0cSPaul Mundt #ifdef CONFIG_SMP 622be6bb0cSPaul Mundt unsigned long *smp; 632be6bb0cSPaul Mundt #endif 642be6bb0cSPaul Mundt unsigned int nr_reg; 652be6bb0cSPaul Mundt struct intc_handle_int *prio; 662be6bb0cSPaul Mundt unsigned int nr_prio; 672be6bb0cSPaul Mundt struct intc_handle_int *sense; 682be6bb0cSPaul Mundt unsigned int nr_sense; 692be6bb0cSPaul Mundt struct intc_window *window; 702be6bb0cSPaul Mundt unsigned int nr_windows; 711d6a21b0SPaul Mundt struct irq_domain *domain; 722be6bb0cSPaul Mundt struct irq_chip chip; 730f966d74SRafael J. Wysocki bool skip_suspend; 742be6bb0cSPaul Mundt }; 752be6bb0cSPaul Mundt 762be6bb0cSPaul Mundt 772be6bb0cSPaul Mundt enum { 782be6bb0cSPaul Mundt REG_FN_ERR = 0, 792be6bb0cSPaul Mundt REG_FN_TEST_BASE = 1, 802be6bb0cSPaul Mundt REG_FN_WRITE_BASE = 5, 812be6bb0cSPaul Mundt REG_FN_MODIFY_BASE = 9 822be6bb0cSPaul Mundt }; 832be6bb0cSPaul Mundt 842be6bb0cSPaul Mundt enum { MODE_ENABLE_REG = 0, /* Bit(s) set -> interrupt enabled */ 852be6bb0cSPaul Mundt MODE_MASK_REG, /* Bit(s) set -> interrupt disabled */ 862be6bb0cSPaul Mundt MODE_DUAL_REG, /* Two registers, set bit to enable / disable */ 872be6bb0cSPaul Mundt MODE_PRIO_REG, /* Priority value written to enable interrupt */ 882be6bb0cSPaul Mundt MODE_PCLR_REG, /* Above plus all bits set to disable interrupt */ 892be6bb0cSPaul Mundt }; 902be6bb0cSPaul Mundt 912be6bb0cSPaul Mundt static inline struct intc_desc_int *get_intc_desc(unsigned int irq) 922be6bb0cSPaul Mundt { 93286b9bfeSThomas Gleixner struct irq_chip *chip = irq_get_chip(irq); 942be6bb0cSPaul Mundt 952be6bb0cSPaul Mundt return container_of(chip, struct intc_desc_int, chip); 962be6bb0cSPaul Mundt } 972be6bb0cSPaul Mundt 982be6bb0cSPaul Mundt /* 992be6bb0cSPaul Mundt * Grumble. 1002be6bb0cSPaul Mundt */ 1012be6bb0cSPaul Mundt static inline void activate_irq(int irq) 1022be6bb0cSPaul Mundt { 1033e15135bSRob Herring irq_modify_status(irq, IRQ_NOREQUEST, IRQ_NOPROBE); 1042be6bb0cSPaul Mundt } 1052be6bb0cSPaul Mundt 106b59f9f97SPaul Mundt static inline int intc_handle_int_cmp(const void *a, const void *b) 107b59f9f97SPaul Mundt { 108b59f9f97SPaul Mundt const struct intc_handle_int *_a = a; 109b59f9f97SPaul Mundt const struct intc_handle_int *_b = b; 110b59f9f97SPaul Mundt 111b59f9f97SPaul Mundt return _a->irq - _b->irq; 112b59f9f97SPaul Mundt } 113b59f9f97SPaul Mundt 1142be6bb0cSPaul Mundt /* access.c */ 1152be6bb0cSPaul Mundt extern unsigned long 1162be6bb0cSPaul Mundt (*intc_reg_fns[])(unsigned long addr, unsigned long h, unsigned long data); 1172be6bb0cSPaul Mundt 1182be6bb0cSPaul Mundt extern unsigned long 1192be6bb0cSPaul Mundt (*intc_enable_fns[])(unsigned long addr, unsigned long handle, 1202be6bb0cSPaul Mundt unsigned long (*fn)(unsigned long, 1212be6bb0cSPaul Mundt unsigned long, unsigned long), 1222be6bb0cSPaul Mundt unsigned int irq); 1232be6bb0cSPaul Mundt extern unsigned long 1242be6bb0cSPaul Mundt (*intc_disable_fns[])(unsigned long addr, unsigned long handle, 1252be6bb0cSPaul Mundt unsigned long (*fn)(unsigned long, 1262be6bb0cSPaul Mundt unsigned long, unsigned long), 1272be6bb0cSPaul Mundt unsigned int irq); 1282be6bb0cSPaul Mundt extern unsigned long 1292be6bb0cSPaul Mundt (*intc_enable_noprio_fns[])(unsigned long addr, unsigned long handle, 1302be6bb0cSPaul Mundt unsigned long (*fn)(unsigned long, 1312be6bb0cSPaul Mundt unsigned long, unsigned long), 1322be6bb0cSPaul Mundt unsigned int irq); 1332be6bb0cSPaul Mundt 1342be6bb0cSPaul Mundt unsigned long intc_phys_to_virt(struct intc_desc_int *d, unsigned long address); 1352be6bb0cSPaul Mundt unsigned int intc_get_reg(struct intc_desc_int *d, unsigned long address); 1362be6bb0cSPaul Mundt unsigned int intc_set_field_from_handle(unsigned int value, 1372be6bb0cSPaul Mundt unsigned int field_value, 1382be6bb0cSPaul Mundt unsigned int handle); 1392be6bb0cSPaul Mundt unsigned long intc_get_field_from_handle(unsigned int value, 1402be6bb0cSPaul Mundt unsigned int handle); 1412be6bb0cSPaul Mundt 1422be6bb0cSPaul Mundt /* balancing.c */ 1432be6bb0cSPaul Mundt #ifdef CONFIG_INTC_BALANCING 1442be6bb0cSPaul Mundt void intc_balancing_enable(unsigned int irq); 1452be6bb0cSPaul Mundt void intc_balancing_disable(unsigned int irq); 1462be6bb0cSPaul Mundt void intc_set_dist_handle(unsigned int irq, struct intc_desc *desc, 1472be6bb0cSPaul Mundt struct intc_desc_int *d, intc_enum id); 1482be6bb0cSPaul Mundt #else 1496966fed9SPaul Mundt static inline void intc_balancing_enable(unsigned int irq) { } 1506966fed9SPaul Mundt static inline void intc_balancing_disable(unsigned int irq) { } 1516966fed9SPaul Mundt static inline void 1526966fed9SPaul Mundt intc_set_dist_handle(unsigned int irq, struct intc_desc *desc, 1532be6bb0cSPaul Mundt struct intc_desc_int *d, intc_enum id) { } 1542be6bb0cSPaul Mundt #endif 1552be6bb0cSPaul Mundt 1562be6bb0cSPaul Mundt /* chip.c */ 1572be6bb0cSPaul Mundt extern struct irq_chip intc_irq_chip; 15826599a94SPaul Mundt void _intc_enable(struct irq_data *data, unsigned long handle); 1592be6bb0cSPaul Mundt 1602be6bb0cSPaul Mundt /* core.c */ 1612be6bb0cSPaul Mundt extern struct list_head intc_list; 1622be6bb0cSPaul Mundt extern raw_spinlock_t intc_big_lock; 163f4e73bfcSKay Sievers extern struct bus_type intc_subsys; 1642be6bb0cSPaul Mundt 1652be6bb0cSPaul Mundt unsigned int intc_get_dfl_prio_level(void); 1662be6bb0cSPaul Mundt unsigned int intc_get_prio_level(unsigned int irq); 1672be6bb0cSPaul Mundt void intc_set_prio_level(unsigned int irq, unsigned int level); 1682be6bb0cSPaul Mundt 1692be6bb0cSPaul Mundt /* handle.c */ 1702be6bb0cSPaul Mundt unsigned int intc_get_mask_handle(struct intc_desc *desc, 1712be6bb0cSPaul Mundt struct intc_desc_int *d, 1722be6bb0cSPaul Mundt intc_enum enum_id, int do_grps); 1732be6bb0cSPaul Mundt unsigned int intc_get_prio_handle(struct intc_desc *desc, 1742be6bb0cSPaul Mundt struct intc_desc_int *d, 1752be6bb0cSPaul Mundt intc_enum enum_id, int do_grps); 1762be6bb0cSPaul Mundt unsigned int intc_get_sense_handle(struct intc_desc *desc, 1772be6bb0cSPaul Mundt struct intc_desc_int *d, 1782be6bb0cSPaul Mundt intc_enum enum_id); 1792be6bb0cSPaul Mundt void intc_set_ack_handle(unsigned int irq, struct intc_desc *desc, 1802be6bb0cSPaul Mundt struct intc_desc_int *d, intc_enum id); 1812be6bb0cSPaul Mundt unsigned long intc_get_ack_handle(unsigned int irq); 1822be6bb0cSPaul Mundt void intc_enable_disable_enum(struct intc_desc *desc, struct intc_desc_int *d, 1832be6bb0cSPaul Mundt intc_enum enum_id, int enable); 1842be6bb0cSPaul Mundt 1851d6a21b0SPaul Mundt /* irqdomain.c */ 1861d6a21b0SPaul Mundt void intc_irq_domain_init(struct intc_desc_int *d, struct intc_hw_desc *hw); 1871d6a21b0SPaul Mundt 1882be6bb0cSPaul Mundt /* virq.c */ 1892be6bb0cSPaul Mundt void intc_subgroup_init(struct intc_desc *desc, struct intc_desc_int *d); 1902be6bb0cSPaul Mundt void intc_irq_xlate_set(unsigned int irq, intc_enum id, struct intc_desc_int *d); 1912be6bb0cSPaul Mundt struct intc_map_entry *intc_irq_xlate_get(unsigned int irq); 192