intr.h revision 1.10
11.10Syamt/* $NetBSD: intr.h,v 1.10 2006/12/21 15:55:22 yamt Exp $ */ 21.1Ssimonb 31.1Ssimonb/*- 41.1Ssimonb * Copyright (c) 2000, 2001 The NetBSD Foundation, Inc. 51.1Ssimonb * All rights reserved. 61.1Ssimonb * 71.1Ssimonb * This code is derived from software contributed to The NetBSD Foundation 81.1Ssimonb * by Jason R. Thorpe. 91.1Ssimonb * 101.1Ssimonb * Redistribution and use in source and binary forms, with or without 111.1Ssimonb * modification, are permitted provided that the following conditions 121.1Ssimonb * are met: 131.1Ssimonb * 1. Redistributions of source code must retain the above copyright 141.1Ssimonb * notice, this list of conditions and the following disclaimer. 151.1Ssimonb * 2. Redistributions in binary form must reproduce the above copyright 161.1Ssimonb * notice, this list of conditions and the following disclaimer in the 171.1Ssimonb * documentation and/or other materials provided with the distribution. 181.1Ssimonb * 3. All advertising materials mentioning features or use of this software 191.1Ssimonb * must display the following acknowledgement: 201.1Ssimonb * This product includes software developed by the NetBSD 211.1Ssimonb * Foundation, Inc. and its contributors. 221.1Ssimonb * 4. Neither the name of The NetBSD Foundation nor the names of its 231.1Ssimonb * contributors may be used to endorse or promote products derived 241.1Ssimonb * from this software without specific prior written permission. 251.1Ssimonb * 261.1Ssimonb * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 271.1Ssimonb * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 281.1Ssimonb * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 291.1Ssimonb * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 301.1Ssimonb * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 311.1Ssimonb * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 321.1Ssimonb * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 331.1Ssimonb * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 341.1Ssimonb * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 351.1Ssimonb * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 361.1Ssimonb * POSSIBILITY OF SUCH DAMAGE. 371.1Ssimonb */ 381.1Ssimonb 391.1Ssimonb#ifndef _EVBMIPS_INTR_H_ 401.8Ssimonb#define _EVBMIPS_INTR_H_ 411.1Ssimonb 421.1Ssimonb#include <sys/device.h> 431.1Ssimonb#include <sys/lock.h> 441.1Ssimonb#include <sys/queue.h> 451.1Ssimonb 461.1Ssimonb#define IPL_NONE 0 /* disable only this interrupt */ 471.2Ssimonb#define IPL_SOFT 1 /* generic software interrupts */ 481.2Ssimonb#define IPL_SOFTCLOCK 2 /* clock software interrupts */ 491.2Ssimonb#define IPL_SOFTNET 3 /* network software interrupts */ 501.2Ssimonb#define IPL_SOFTSERIAL 4 /* serial software interrupts */ 511.1Ssimonb#define IPL_BIO 5 /* disable block I/O interrupts */ 521.1Ssimonb#define IPL_NET 6 /* disable network interrupts */ 531.1Ssimonb#define IPL_TTY 7 /* disable terminal interrupts */ 541.6Syamt#define IPL_LPT IPL_TTY 551.6Syamt#define IPL_VM IPL_TTY 561.1Ssimonb#define IPL_SERIAL 7 /* disable serial interrupts */ 571.1Ssimonb#define IPL_CLOCK 8 /* disable clock interrupts */ 581.6Syamt#define IPL_STATCLOCK IPL_CLOCK 591.6Syamt#define IPL_SCHED IPL_CLOCK 601.1Ssimonb#define IPL_HIGH 8 /* disable all interrupts */ 611.6Syamt#define IPL_LOCK IPL_HIGH 621.1Ssimonb 631.2Ssimonb#define _IPL_N 9 /* max IPL + 1 */ 641.1Ssimonb 651.1Ssimonb#define _IPL_SI0_FIRST IPL_SOFT 661.1Ssimonb#define _IPL_SI0_LAST IPL_SOFTCLOCK 671.1Ssimonb 681.1Ssimonb#define _IPL_SI1_FIRST IPL_SOFTNET 691.1Ssimonb#define _IPL_SI1_LAST IPL_SOFTSERIAL 701.1Ssimonb 711.10Syamt#define SI_SOFT 0 721.10Syamt#define SI_SOFTCLOCK 1 731.10Syamt#define SI_SOFTNET 2 741.10Syamt#define SI_SOFTSERIAL 3 751.10Syamt 761.10Syamt#define SI_NQUEUES 4 771.10Syamt 781.10Syamt#define SI_QUEUENAMES { \ 791.1Ssimonb "misc", \ 801.1Ssimonb "clock", \ 811.1Ssimonb "net", \ 821.1Ssimonb "serial", \ 831.1Ssimonb} 841.1Ssimonb 851.1Ssimonb#define IST_UNUSABLE -1 /* interrupt cannot be used */ 861.1Ssimonb#define IST_NONE 0 /* none (dummy) */ 871.1Ssimonb#define IST_PULSE 1 /* pulsed */ 881.1Ssimonb#define IST_EDGE 2 /* edge-triggered */ 891.1Ssimonb#define IST_LEVEL 3 /* level-triggered */ 901.8Ssimonb#define IST_LEVEL_HIGH 4 /* level triggered, active high */ 911.8Ssimonb#define IST_LEVEL_LOW 5 /* level triggered, active low */ 921.1Ssimonb 931.1Ssimonb#ifdef _KERNEL 941.1Ssimonb 951.7Sgdamoreextern const uint32_t ipl_sr_bits[_IPL_N]; 961.1Ssimonb 971.9Stsutsuiint _splraise(int); 981.9Stsutsuiint _spllower(int); 991.9Stsutsuiint _splset(int); 1001.9Stsutsuiint _splget(void); 1011.9Stsutsuivoid _splnone(void); 1021.9Stsutsuivoid _setsoftintr(int); 1031.9Stsutsuivoid _clrsoftintr(int); 1041.1Ssimonb 1051.1Ssimonb#define spl0() (void) _spllower(0) 1061.1Ssimonb#define splx(s) (void) _splset(s) 1071.1Ssimonb 1081.1Ssimonb#define splsoft() _splraise(ipl_sr_bits[IPL_SOFT]) 1091.1Ssimonb 1101.1Ssimonb#define spllowersoftclock() _spllower(ipl_sr_bits[IPL_SOFTCLOCK]) 1111.1Ssimonb 1121.10Syamttypedef int ipl_t; 1131.10Syamttypedef struct { 1141.10Syamt ipl_t _sr; 1151.10Syamt} ipl_cookie_t; 1161.10Syamt 1171.10Syamtstatic inline ipl_cookie_t 1181.10Syamtmakeiplcookie(ipl_t ipl) 1191.10Syamt{ 1201.10Syamt 1211.10Syamt return (ipl_cookie_t){._sr = ipl_sr_bits[ipl]}; 1221.10Syamt} 1231.10Syamt 1241.10Syamtstatic inline int 1251.10Syamtsplraiseipl(ipl_cookie_t icookie) 1261.10Syamt{ 1271.10Syamt 1281.10Syamt return _splraise(icookie._sr); 1291.10Syamt} 1301.6Syamt 1311.6Syamt#include <sys/spl.h> 1321.6Syamt 1331.1Ssimonbstruct evbmips_intrhand { 1341.1Ssimonb LIST_ENTRY(evbmips_intrhand) ih_q; 1351.1Ssimonb int (*ih_func)(void *); 1361.1Ssimonb void *ih_arg; 1371.1Ssimonb int ih_irq; 1381.1Ssimonb}; 1391.1Ssimonb 1401.5Stsutsui#include <mips/softintr.h> 1411.1Ssimonb 1421.1Ssimonbvoid evbmips_intr_init(void); 1431.1Ssimonbvoid intr_init(void); 1441.7Sgdamorevoid evbmips_iointr(uint32_t, uint32_t, uint32_t, uint32_t); 1451.1Ssimonbvoid *evbmips_intr_establish(int, int (*)(void *), void *); 1461.1Ssimonbvoid evbmips_intr_disestablish(void *); 1471.1Ssimonb#endif /* _KERNEL */ 1481.1Ssimonb#endif /* ! _EVBMIPS_INTR_H_ */ 149