blob: 4d748e93b97426e7f4148d2548b5cebcad876d77 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Sam Ravnborgf5e706a2008-07-17 21:55:51 -07002/* irq.h: IRQ registers on the 64-bit Sparc.
3 *
4 * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
5 * Copyright (C) 1998 Jakub Jelinek (jj@ultra.linux.cz)
6 */
7
8#ifndef _SPARC64_IRQ_H
9#define _SPARC64_IRQ_H
10
11#include <linux/linkage.h>
12#include <linux/kernel.h>
13#include <linux/errno.h>
14#include <linux/interrupt.h>
15#include <asm/pil.h>
16#include <asm/ptrace.h>
17
18/* IMAP/ICLR register defines */
19#define IMAP_VALID 0x80000000UL /* IRQ Enabled */
20#define IMAP_TID_UPA 0x7c000000UL /* UPA TargetID */
21#define IMAP_TID_JBUS 0x7c000000UL /* JBUS TargetID */
22#define IMAP_TID_SHIFT 26
23#define IMAP_AID_SAFARI 0x7c000000UL /* Safari AgentID */
24#define IMAP_AID_SHIFT 26
25#define IMAP_NID_SAFARI 0x03e00000UL /* Safari NodeID */
26#define IMAP_NID_SHIFT 21
27#define IMAP_IGN 0x000007c0UL /* IRQ Group Number */
28#define IMAP_INO 0x0000003fUL /* IRQ Number */
29#define IMAP_INR 0x000007ffUL /* Full interrupt number*/
30
31#define ICLR_IDLE 0x00000000UL /* Idle state */
32#define ICLR_TRANSMIT 0x00000001UL /* Transmit state */
33#define ICLR_PENDING 0x00000003UL /* Pending state */
34
35/* The largest number of unique interrupt sources we support.
36 * If this needs to ever be larger than 255, you need to change
Sam Ravnborg44ed3c02011-01-22 11:32:20 +000037 * the type of ino_bucket->irq as appropriate.
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070038 *
Sam Ravnborg44ed3c02011-01-22 11:32:20 +000039 * ino_bucket->irq allocation is made during {sun4v_,}build_irq().
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070040 */
bob piccoee6a9332014-09-25 12:25:03 -070041#define NR_IRQS (2048)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070042
Sam Ravnborgf05a6862014-05-16 23:25:50 +020043void irq_install_pre_handler(int irq,
44 void (*func)(unsigned int, void *, void *),
45 void *arg1, void *arg2);
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070046#define irq_canonicalize(irq) (irq)
Sam Ravnborgf05a6862014-05-16 23:25:50 +020047unsigned int build_irq(int inofixup, unsigned long iclr, unsigned long imap);
48unsigned int sun4v_build_irq(u32 devhandle, unsigned int devino);
49unsigned int sun4v_build_virq(u32 devhandle, unsigned int devino);
50unsigned int sun4v_build_msi(u32 devhandle, unsigned int *irq_p,
51 unsigned int msi_devino_start,
52 unsigned int msi_devino_end);
53void sun4v_destroy_msi(unsigned int irq);
54unsigned int sun4u_build_msi(u32 portid, unsigned int *irq_p,
55 unsigned int msi_devino_start,
56 unsigned int msi_devino_end,
57 unsigned long imap_base,
58 unsigned long iclr_base);
59void sun4u_destroy_msi(unsigned int irq);
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070060
bob piccoee6a9332014-09-25 12:25:03 -070061unsigned int irq_alloc(unsigned int dev_handle, unsigned int dev_ino);
Sam Ravnborgf05a6862014-05-16 23:25:50 +020062void irq_free(unsigned int irq);
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070063
Sam Ravnborgf05a6862014-05-16 23:25:50 +020064void __init init_IRQ(void);
65void fixup_irqs(void);
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070066
67static inline void set_softint(unsigned long bits)
68{
69 __asm__ __volatile__("wr %0, 0x0, %%set_softint"
70 : /* No outputs */
71 : "r" (bits));
72}
73
74static inline void clear_softint(unsigned long bits)
75{
76 __asm__ __volatile__("wr %0, 0x0, %%clear_softint"
77 : /* No outputs */
78 : "r" (bits));
79}
80
81static inline unsigned long get_softint(void)
82{
83 unsigned long retval;
84
85 __asm__ __volatile__("rd %%softint, %0"
86 : "=r" (retval));
87 return retval;
88}
89
Chris Metcalf9a01c3e2016-10-07 17:02:45 -070090void arch_trigger_cpumask_backtrace(const struct cpumask *mask,
91 bool exclude_self);
92#define arch_trigger_cpumask_backtrace arch_trigger_cpumask_backtrace
David S. Miller09ee1672008-07-30 22:35:00 -070093
David S. Miller4f70f7a2008-08-12 18:33:56 -070094extern void *hardirq_stack[NR_CPUS];
95extern void *softirq_stack[NR_CPUS];
96#define __ARCH_HAS_DO_SOFTIRQ
97
David S. Miller16550682011-03-18 15:03:16 -070098#define NO_IRQ 0xffffffff
99
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700100#endif