1998-09-26 04:03:51 +04:00
|
|
|
/* $NetBSD: intr.h,v 1.18 1998/09/26 00:03:52 thorpej Exp $ */
|
1996-04-12 05:42:17 +04:00
|
|
|
|
|
|
|
/*
|
1997-06-05 21:08:06 +04:00
|
|
|
* Copyright (c) 1997 Christopher G. Demetriou. All rights reserved.
|
1996-04-12 05:42:17 +04:00
|
|
|
* Copyright (c) 1996 Carnegie-Mellon University.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Author: Chris G. Demetriou
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify and distribute this software and
|
|
|
|
* its documentation is hereby granted, provided that both the copyright
|
|
|
|
* notice and this permission notice appear in all copies of the
|
|
|
|
* software, derivative works or modified versions, and any portions
|
|
|
|
* thereof, and that both notices appear in supporting documentation.
|
|
|
|
*
|
|
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
|
|
|
|
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
* Carnegie Mellon requests users of this software to return to
|
|
|
|
*
|
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
|
|
* School of Computer Science
|
|
|
|
* Carnegie Mellon University
|
|
|
|
* Pittsburgh PA 15213-3890
|
|
|
|
*
|
|
|
|
* any improvements or extensions that they make and grant Carnegie the
|
|
|
|
* rights to redistribute these changes.
|
|
|
|
*/
|
|
|
|
|
1996-07-09 04:33:20 +04:00
|
|
|
#ifndef _ALPHA_INTR_H_
|
|
|
|
#define _ALPHA_INTR_H_
|
|
|
|
|
1996-11-17 05:03:08 +03:00
|
|
|
#include <sys/queue.h>
|
|
|
|
|
1996-04-12 05:42:17 +04:00
|
|
|
#define IPL_NONE 0 /* disable only this interrupt */
|
|
|
|
#define IPL_BIO 1 /* disable block I/O interrupts */
|
|
|
|
#define IPL_NET 2 /* disable network interrupts */
|
|
|
|
#define IPL_TTY 3 /* disable terminal interrupts */
|
|
|
|
#define IPL_CLOCK 4 /* disable clock interrupts */
|
|
|
|
#define IPL_HIGH 5 /* disable all interrupts */
|
1998-09-21 04:33:16 +04:00
|
|
|
#define IPL_SERIAL 6 /* disable serial interrupts */
|
1996-04-12 05:42:17 +04:00
|
|
|
|
1996-11-17 05:03:08 +03:00
|
|
|
#define IST_UNUSABLE -1 /* interrupt cannot be used */
|
1996-04-12 05:42:17 +04:00
|
|
|
#define IST_NONE 0 /* none (dummy) */
|
|
|
|
#define IST_PULSE 1 /* pulsed */
|
|
|
|
#define IST_EDGE 2 /* edge-triggered */
|
|
|
|
#define IST_LEVEL 3 /* level-triggered */
|
1998-09-26 02:06:33 +04:00
|
|
|
|
1997-11-10 21:23:50 +03:00
|
|
|
#ifdef _KERNEL
|
1996-07-09 04:33:20 +04:00
|
|
|
|
1997-06-05 21:08:06 +04:00
|
|
|
/* IPL-lowering/restoring macros */
|
1996-07-09 04:33:20 +04:00
|
|
|
#define splx(s) \
|
1997-06-05 21:20:17 +04:00
|
|
|
((s) == ALPHA_PSL_IPL_0 ? spl0() : alpha_pal_swpipl(s))
|
1996-07-09 04:33:20 +04:00
|
|
|
#define splsoft() alpha_pal_swpipl(ALPHA_PSL_IPL_SOFT)
|
1998-09-21 04:33:16 +04:00
|
|
|
#define splsoftserial() splsoft()
|
|
|
|
#define splsoftclock() splsoft()
|
|
|
|
#define splsoftnet() splsoft()
|
1997-06-05 21:08:06 +04:00
|
|
|
|
1997-06-05 21:31:16 +04:00
|
|
|
/* IPL-raising functions/macros */
|
1997-07-08 00:37:34 +04:00
|
|
|
static __inline int _splraise __P((int)) __attribute__ ((unused));
|
1997-06-05 21:31:16 +04:00
|
|
|
static __inline int
|
|
|
|
_splraise(s)
|
|
|
|
int s;
|
|
|
|
{
|
|
|
|
int cur = alpha_pal_rdps() & ALPHA_PSL_IPL_MASK;
|
1997-06-05 21:36:26 +04:00
|
|
|
return (s > cur ? alpha_pal_swpipl(s) : cur);
|
1997-06-05 21:31:16 +04:00
|
|
|
}
|
1997-06-05 21:08:06 +04:00
|
|
|
#define splnet() _splraise(ALPHA_PSL_IPL_IO)
|
|
|
|
#define splbio() _splraise(ALPHA_PSL_IPL_IO)
|
|
|
|
#define splimp() _splraise(ALPHA_PSL_IPL_IO)
|
|
|
|
#define spltty() _splraise(ALPHA_PSL_IPL_IO)
|
1998-09-21 04:33:16 +04:00
|
|
|
#define splserial() _splraise(ALPHA_PSL_IPL_IO)
|
1997-06-05 21:08:06 +04:00
|
|
|
#define splclock() _splraise(ALPHA_PSL_IPL_CLOCK)
|
|
|
|
#define splstatclock() _splraise(ALPHA_PSL_IPL_CLOCK)
|
|
|
|
#define splhigh() _splraise(ALPHA_PSL_IPL_HIGH)
|
1996-07-09 04:33:20 +04:00
|
|
|
|
1998-07-19 01:27:25 +04:00
|
|
|
#define spllpt() spltty()
|
|
|
|
|
1996-07-09 04:33:20 +04:00
|
|
|
/*
|
|
|
|
* simulated software interrupt register
|
|
|
|
*/
|
|
|
|
extern u_int64_t ssir;
|
|
|
|
|
|
|
|
#define SIR_NET 0x1
|
|
|
|
#define SIR_CLOCK 0x2
|
1998-09-21 04:33:16 +04:00
|
|
|
#define SIR_SERIAL 0x4
|
1996-07-09 04:33:20 +04:00
|
|
|
|
|
|
|
#define setsoftnet() ssir |= SIR_NET
|
|
|
|
#define setsoftclock() ssir |= SIR_CLOCK
|
1998-09-21 04:33:16 +04:00
|
|
|
#define setsoftserial() ssir |= SIR_SERIAL
|
1996-07-09 04:33:20 +04:00
|
|
|
|
1998-09-26 04:03:51 +04:00
|
|
|
/*
|
|
|
|
* Interprocessor interrupts.
|
|
|
|
*/
|
|
|
|
#define ALPHA_IPI_HALT 0UL /* halt processor */
|
|
|
|
#define ALPHA_IPI_IMB 1UL /* perform an I-stream barrier */
|
|
|
|
#define ALPHA_IPI_TBIA 2UL /* TBI all TB entries */
|
|
|
|
#define ALPHA_IPI_TBIAP 3UL /* TBI all per-process TB entries */
|
|
|
|
#define ALPHA_NIPIS 4UL /* must not exceed 64 */
|
|
|
|
|
|
|
|
typedef void (*ipifunc_t) __P((void));
|
|
|
|
extern ipifunc_t ipifuncs[ALPHA_NIPIS];
|
|
|
|
|
|
|
|
void alpha_send_ipi __P((unsigned long, unsigned long));
|
|
|
|
|
1996-11-17 05:03:08 +03:00
|
|
|
/*
|
|
|
|
* Alpha shared-interrupt-line common code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct alpha_shared_intrhand {
|
|
|
|
TAILQ_ENTRY(alpha_shared_intrhand)
|
|
|
|
ih_q;
|
|
|
|
int (*ih_fn) __P((void *));
|
|
|
|
void *ih_arg;
|
|
|
|
int ih_level;
|
1998-08-01 22:52:36 +04:00
|
|
|
unsigned int ih_num;
|
1996-11-17 05:03:08 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct alpha_shared_intr {
|
|
|
|
TAILQ_HEAD(,alpha_shared_intrhand)
|
|
|
|
intr_q;
|
|
|
|
int intr_sharetype;
|
|
|
|
int intr_dfltsharetype;
|
|
|
|
int intr_nstrays;
|
|
|
|
int intr_maxstrays;
|
|
|
|
};
|
|
|
|
|
1998-07-08 02:24:38 +04:00
|
|
|
#define ALPHA_SHARED_INTR_DISABLE(asi, num) \
|
|
|
|
((asi)[num].intr_maxstrays != 0 && \
|
|
|
|
(asi)[num].intr_nstrays == (asi)[num].intr_maxstrays)
|
1998-07-08 01:37:11 +04:00
|
|
|
|
1996-11-17 05:03:08 +03:00
|
|
|
struct alpha_shared_intr *alpha_shared_intr_alloc __P((unsigned int));
|
|
|
|
int alpha_shared_intr_dispatch __P((struct alpha_shared_intr *,
|
|
|
|
unsigned int));
|
|
|
|
void *alpha_shared_intr_establish __P((struct alpha_shared_intr *,
|
|
|
|
unsigned int, int, int, int (*)(void *), void *, const char *));
|
1998-08-01 22:52:36 +04:00
|
|
|
void alpha_shared_intr_disestablish __P((struct alpha_shared_intr *,
|
|
|
|
void *, const char *));
|
1996-11-17 05:03:08 +03:00
|
|
|
int alpha_shared_intr_get_sharetype __P((struct alpha_shared_intr *,
|
|
|
|
unsigned int));
|
|
|
|
int alpha_shared_intr_isactive __P((struct alpha_shared_intr *,
|
|
|
|
unsigned int));
|
|
|
|
void alpha_shared_intr_set_dfltsharetype __P((struct alpha_shared_intr *,
|
|
|
|
unsigned int, int));
|
|
|
|
void alpha_shared_intr_set_maxstrays __P((struct alpha_shared_intr *,
|
|
|
|
unsigned int, int));
|
|
|
|
void alpha_shared_intr_stray __P((struct alpha_shared_intr *, unsigned int,
|
|
|
|
const char *));
|
|
|
|
|
1998-09-26 02:06:33 +04:00
|
|
|
#endif /* _KERNEL */
|
|
|
|
#endif /* ! _ALPHA_INTR_H_ */
|