blob: 77a4f63cba7a721cf8c09e15c873fa2c52448b2c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $Id: irq.h,v 1.21 2002/01/23 11:27:36 davem Exp $
2 * irq.h: IRQ registers on the 64-bit Sparc.
3 *
4 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
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/config.h>
12#include <linux/linkage.h>
13#include <linux/kernel.h>
14#include <linux/errno.h>
15#include <linux/interrupt.h>
16#include <asm/pil.h>
17#include <asm/ptrace.h>
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019/* IMAP/ICLR register defines */
20#define IMAP_VALID 0x80000000 /* IRQ Enabled */
21#define IMAP_TID_UPA 0x7c000000 /* UPA TargetID */
22#define IMAP_TID_JBUS 0x7c000000 /* JBUS TargetID */
David S. Millerebd8c562006-02-17 08:38:06 -080023#define IMAP_TID_SHIFT 26
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#define IMAP_AID_SAFARI 0x7c000000 /* Safari AgentID */
David S. Millerebd8c562006-02-17 08:38:06 -080025#define IMAP_AID_SHIFT 26
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#define IMAP_NID_SAFARI 0x03e00000 /* Safari NodeID */
David S. Millerebd8c562006-02-17 08:38:06 -080027#define IMAP_NID_SHIFT 21
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#define IMAP_IGN 0x000007c0 /* IRQ Group Number */
29#define IMAP_INO 0x0000003f /* IRQ Number */
30#define IMAP_INR 0x000007ff /* Full interrupt number*/
31
32#define ICLR_IDLE 0x00000000 /* Idle state */
33#define ICLR_TRANSMIT 0x00000001 /* Transmit state */
34#define ICLR_PENDING 0x00000003 /* Pending state */
35
David S. Miller8047e242006-06-20 01:22:35 -070036/* The largest number of unique interrupt sources we support.
37 * If this needs to ever be larger than 255, you need to change
38 * the type of ino_bucket->virt_irq as appropriate.
39 *
40 * ino_bucket->virt_irq allocation is made during {sun4v_,}build_irq().
41 */
42#define NR_IRQS 255
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
David S. Miller8047e242006-06-20 01:22:35 -070044extern void irq_install_pre_handler(int virt_irq,
David S. Millere18e2a02006-06-20 01:23:32 -070045 void (*func)(unsigned int, void *, void *),
David S. Miller8047e242006-06-20 01:22:35 -070046 void *arg1, void *arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define irq_canonicalize(irq) (irq)
David S. Millere18e2a02006-06-20 01:23:32 -070048extern unsigned int build_irq(int inofixup, unsigned long iclr, unsigned long imap);
49extern unsigned int sun4v_build_irq(u32 devhandle, unsigned int devino);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050extern unsigned int sbus_build_irq(void *sbus, unsigned int ino);
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static __inline__ void set_softint(unsigned long bits)
53{
54 __asm__ __volatile__("wr %0, 0x0, %%set_softint"
55 : /* No outputs */
56 : "r" (bits));
57}
58
59static __inline__ void clear_softint(unsigned long bits)
60{
61 __asm__ __volatile__("wr %0, 0x0, %%clear_softint"
62 : /* No outputs */
63 : "r" (bits));
64}
65
66static __inline__ unsigned long get_softint(void)
67{
68 unsigned long retval;
69
70 __asm__ __volatile__("rd %%softint, %0"
71 : "=r" (retval));
72 return retval;
73}
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#endif