2000-11-20 22:24:36 +03:00
|
|
|
/* $NetBSD: intr.h,v 1.36 2000/11/20 19:24:36 thorpej Exp $ */
|
2000-06-04 00:47:36 +04:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Jason R. Thorpe.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
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_
|
|
|
|
|
2000-06-06 01:47:10 +04:00
|
|
|
#include <sys/device.h>
|
2000-06-04 00:47:36 +04:00
|
|
|
#include <sys/lock.h>
|
1996-11-17 05:03:08 +03:00
|
|
|
#include <sys/queue.h>
|
1999-12-02 04:09:11 +03:00
|
|
|
#include <machine/atomic.h>
|
1996-11-17 05:03:08 +03:00
|
|
|
|
2000-06-04 00:47:36 +04:00
|
|
|
/*
|
|
|
|
* Alpha interrupts come in at one of 4 levels:
|
|
|
|
*
|
|
|
|
* software interrupt level
|
|
|
|
* i/o level 1
|
|
|
|
* i/o level 2
|
|
|
|
* clock level
|
|
|
|
*
|
|
|
|
* However, since we do not have any way to know which hardware
|
|
|
|
* level a particular i/o interrupt comes in on, we have to
|
|
|
|
* whittle it down to 3.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define IPL_NONE 1 /* disable only this interrupt */
|
1996-04-12 05:42:17 +04:00
|
|
|
#define IPL_BIO 1 /* disable block I/O interrupts */
|
2000-06-04 00:47:36 +04:00
|
|
|
#define IPL_NET 1 /* disable network interrupts */
|
|
|
|
#define IPL_TTY 1 /* disable terminal interrupts */
|
|
|
|
#define IPL_CLOCK 2 /* disable clock interrupts */
|
|
|
|
#define IPL_HIGH 3 /* disable all interrupts */
|
|
|
|
#define IPL_SERIAL 1 /* disable serial interrupts */
|
|
|
|
|
|
|
|
#define IPL_SOFTSERIAL 0 /* serial software interrupts */
|
|
|
|
#define IPL_SOFTNET 1 /* network software interrupts */
|
|
|
|
#define IPL_SOFTCLOCK 2 /* clock software interrupts */
|
|
|
|
#define IPL_SOFT 3 /* other software interrupts */
|
|
|
|
#define IPL_NSOFT 4
|
1996-04-12 05:42:17 +04:00
|
|
|
|
2000-06-06 01:47:10 +04:00
|
|
|
#define IPL_SOFTNAMES { \
|
|
|
|
"serial", \
|
|
|
|
"net", \
|
|
|
|
"clock", \
|
|
|
|
"misc", \
|
|
|
|
}
|
|
|
|
|
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 */
|
2000-06-09 05:40:12 +04:00
|
|
|
void spl0(void);
|
|
|
|
static __inline void
|
|
|
|
splx(int s)
|
|
|
|
{
|
|
|
|
if (s == ALPHA_PSL_IPL_0)
|
|
|
|
spl0();
|
|
|
|
else
|
|
|
|
alpha_pal_swpipl(s);
|
|
|
|
}
|
|
|
|
#define spllowersoftclock() ((void)alpha_pal_swpipl(ALPHA_PSL_IPL_SOFT))
|
1997-06-05 21:08:06 +04:00
|
|
|
|
1997-06-05 21:31:16 +04:00
|
|
|
/* IPL-raising functions/macros */
|
|
|
|
static __inline int
|
2000-06-04 09:23:18 +04:00
|
|
|
_splraise(int s)
|
1997-06-05 21:31:16 +04:00
|
|
|
{
|
|
|
|
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
|
|
|
}
|
1999-08-05 22:08:08 +04:00
|
|
|
#define splsoft() _splraise(ALPHA_PSL_IPL_SOFT)
|
|
|
|
#define splsoftserial() splsoft()
|
|
|
|
#define splsoftclock() splsoft()
|
|
|
|
#define splsoftnet() splsoft()
|
2000-07-13 09:47:39 +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)
|
|
|
|
#define splserial() _splraise(ALPHA_PSL_IPL_IO)
|
|
|
|
#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
|
|
|
|
2000-08-21 06:03:12 +04:00
|
|
|
#define splsched() splhigh()
|
2000-08-22 23:46:26 +04:00
|
|
|
#define spllock() splhigh()
|
1998-07-19 01:27:25 +04:00
|
|
|
#define spllpt() spltty()
|
|
|
|
|
1998-09-26 04:03:51 +04:00
|
|
|
/*
|
1999-02-24 22:17:09 +03:00
|
|
|
* Interprocessor interrupts. In order how we want them processed.
|
1998-09-26 04:03:51 +04:00
|
|
|
*/
|
1999-11-29 22:58:39 +03:00
|
|
|
#define ALPHA_IPI_HALT 0x0000000000000001UL
|
|
|
|
#define ALPHA_IPI_TBIA 0x0000000000000002UL
|
|
|
|
#define ALPHA_IPI_TBIAP 0x0000000000000004UL
|
|
|
|
#define ALPHA_IPI_SHOOTDOWN 0x0000000000000008UL
|
|
|
|
#define ALPHA_IPI_IMB 0x0000000000000010UL
|
|
|
|
#define ALPHA_IPI_AST 0x0000000000000020UL
|
2000-08-16 02:16:17 +04:00
|
|
|
#define ALPHA_IPI_SYNCH_FPU 0x0000000000000040UL
|
|
|
|
#define ALPHA_IPI_DISCARD_FPU 0x0000000000000080UL
|
2000-08-21 06:03:12 +04:00
|
|
|
#define ALPHA_IPI_PAUSE 0x0000000000000100UL
|
1999-02-24 22:17:09 +03:00
|
|
|
|
2000-08-21 06:03:12 +04:00
|
|
|
#define ALPHA_NIPIS 9 /* must not exceed 64 */
|
1998-09-26 04:03:51 +04:00
|
|
|
|
2000-11-18 22:25:35 +03:00
|
|
|
struct cpu_info;
|
|
|
|
|
|
|
|
void alpha_ipi_init(struct cpu_info *);
|
2000-11-20 22:24:36 +03:00
|
|
|
void alpha_ipi_process(struct cpu_info *);
|
2000-06-04 09:23:18 +04:00
|
|
|
void alpha_send_ipi(unsigned long, unsigned long);
|
|
|
|
void alpha_broadcast_ipi(unsigned long);
|
2000-08-13 22:20:55 +04:00
|
|
|
void alpha_multicast_ipi(unsigned long, unsigned long);
|
1998-09-26 04:03:51 +04:00
|
|
|
|
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;
|
2000-03-19 04:46:18 +03:00
|
|
|
struct alpha_shared_intr *ih_intrhead;
|
2000-06-04 09:23:18 +04:00
|
|
|
int (*ih_fn)(void *);
|
1996-11-17 05:03:08 +03:00
|
|
|
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;
|
2000-06-06 01:47:10 +04:00
|
|
|
struct evcnt intr_evcnt;
|
|
|
|
char *intr_string;
|
1999-11-29 22:58:39 +03:00
|
|
|
void *intr_private;
|
1996-11-17 05:03:08 +03:00
|
|
|
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
|
|
|
|
2000-06-04 00:47:36 +04:00
|
|
|
/*
|
|
|
|
* simulated software interrupt register
|
|
|
|
*/
|
|
|
|
extern u_int64_t ssir;
|
|
|
|
|
|
|
|
#define setsoft(x) atomic_setbits_ulong(&ssir, 1 << (x))
|
|
|
|
|
|
|
|
#define __GENERIC_SOFT_INTERRUPTS
|
|
|
|
struct alpha_soft_intrhand {
|
|
|
|
LIST_ENTRY(alpha_soft_intrhand)
|
|
|
|
sih_q;
|
|
|
|
struct alpha_soft_intr *sih_intrhead;
|
2000-06-04 09:23:18 +04:00
|
|
|
void (*sih_fn)(void *);
|
2000-06-04 00:47:36 +04:00
|
|
|
void *sih_arg;
|
|
|
|
int sih_pending;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct alpha_soft_intr {
|
|
|
|
LIST_HEAD(, alpha_soft_intrhand)
|
|
|
|
softintr_q;
|
2000-06-06 01:47:10 +04:00
|
|
|
struct evcnt softintr_evcnt;
|
2000-06-04 00:47:36 +04:00
|
|
|
struct simplelock softintr_slock;
|
|
|
|
unsigned long softintr_ipl;
|
|
|
|
};
|
|
|
|
|
2000-06-04 09:23:18 +04:00
|
|
|
void *softintr_establish(int, void (*)(void *), void *);
|
|
|
|
void softintr_disestablish(void *);
|
|
|
|
void softintr_init(void);
|
|
|
|
void softintr_dispatch(void);
|
2000-06-04 00:47:36 +04:00
|
|
|
|
|
|
|
#define softintr_schedule(arg) \
|
|
|
|
do { \
|
|
|
|
struct alpha_soft_intrhand *__sih = (arg); \
|
|
|
|
__sih->sih_pending = 1; \
|
|
|
|
setsoft(__sih->sih_intrhead->softintr_ipl); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/* XXX For legacy software interrupts. */
|
|
|
|
extern struct alpha_soft_intrhand *softnet_intrhand;
|
|
|
|
extern struct alpha_soft_intrhand *softclock_intrhand;
|
|
|
|
|
|
|
|
#define setsoftnet() softintr_schedule(softnet_intrhand)
|
|
|
|
#define setsoftclock() softintr_schedule(softclock_intrhand)
|
|
|
|
|
2000-06-06 01:47:10 +04:00
|
|
|
struct alpha_shared_intr *alpha_shared_intr_alloc(unsigned int, unsigned int);
|
2000-06-04 09:23:18 +04:00
|
|
|
int alpha_shared_intr_dispatch(struct alpha_shared_intr *,
|
|
|
|
unsigned int);
|
|
|
|
void *alpha_shared_intr_establish(struct alpha_shared_intr *,
|
|
|
|
unsigned int, int, int, int (*)(void *), void *, const char *);
|
|
|
|
void alpha_shared_intr_disestablish(struct alpha_shared_intr *,
|
|
|
|
void *, const char *);
|
|
|
|
int alpha_shared_intr_get_sharetype(struct alpha_shared_intr *,
|
|
|
|
unsigned int);
|
|
|
|
int alpha_shared_intr_isactive(struct alpha_shared_intr *,
|
|
|
|
unsigned int);
|
|
|
|
void alpha_shared_intr_set_dfltsharetype(struct alpha_shared_intr *,
|
|
|
|
unsigned int, int);
|
|
|
|
void alpha_shared_intr_set_maxstrays(struct alpha_shared_intr *,
|
|
|
|
unsigned int, int);
|
|
|
|
void alpha_shared_intr_stray(struct alpha_shared_intr *, unsigned int,
|
|
|
|
const char *);
|
|
|
|
void alpha_shared_intr_set_private(struct alpha_shared_intr *,
|
|
|
|
unsigned int, void *);
|
|
|
|
void *alpha_shared_intr_get_private(struct alpha_shared_intr *,
|
|
|
|
unsigned int);
|
2000-06-06 01:47:10 +04:00
|
|
|
char *alpha_shared_intr_string(struct alpha_shared_intr *,
|
|
|
|
unsigned int);
|
|
|
|
struct evcnt *alpha_shared_intr_evcnt(struct alpha_shared_intr *,
|
|
|
|
unsigned int);
|
|
|
|
|
|
|
|
void set_iointr(void (*)(void *, unsigned long));
|
1996-11-17 05:03:08 +03:00
|
|
|
|
1998-09-26 02:06:33 +04:00
|
|
|
#endif /* _KERNEL */
|
|
|
|
#endif /* ! _ALPHA_INTR_H_ */
|