⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 base_irq.h

📁 操作系统试验!通过这个试验
💻 H
字号:
/* * base_irq.h * Modified for use in 15-410 at CMU * Zachary Anderson(zra) *//* * Copyright (c) 1995-1998, 2000 University of Utah and the Flux Group. * All rights reserved. *  * This file is part of the Flux OSKit.  The OSKit is free software, also known * as "open source;" you can redistribute it and/or modify it under the terms * of the GNU General Public License (GPL), version 2, as published by the Free * Software Foundation (FSF).  To explore alternate licensing terms, contact * the University of Utah at csl-dist@cs.utah.edu or +1-801-585-3271. *  * The OSKit is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE.  See the GPL for more details.  You should have * received a copy of the GPL along with the OSKit; see the file COPYING.  If * not, write to the FSF, 59 Temple Place #330, Boston, MA 02111-1307, USA. *//* * This header defines the OSKIT's base IRQ handling facilities. * The default environment provides a high-level, easy-to-use, * and not-too-horrendously-inefficient mechanism * for hooking into hardware interrupts and installing interrupt handlers. * It also provides a basic software interrupt facility. */#ifndef _BASE_IRQ_H_#define _BASE_IRQ_H_/* On normal PCs, there are always 16 IRQ lines.  */#define BASE_IRQ_COUNT		0x10/* This is the default location in the IDT at which we program the PICs. */#define BASE_IRQ_MASTER_BASE	0x20#define BASE_IRQ_SLAVE_BASE	0x28#ifndef ASSEMBLER/* Variables storing the current master and slave PIC interrupt vector base */extern int irq_master_base, irq_slave_base;struct trap_state;/* * In the base oskit environment, * each hardware interrupt vector points to a small assembly language stub * that saves the standard trap frame (see x86/base_trap.h), * disables and acknowledges the hardware interrupt, * and calls a designated high-level handler routine through this table. * Initially, all the entries in this table point to base_irq_default_handler(); * to install a custom handler, simply change the appropriate table entry. * Custom interrupt handlers can freely examine and modify * the processor state of the interrupted activity, * e.g., to implement threads and preemption. * On entry, the processor's IDT interrupt vector number is in ts->trapno * and the hardware IRQ number that caused the interrupt is in ts->err. */extern unsigned int (*base_irq_handlers[])(struct trap_state *ts);#endif /* ASSEMBLER *//* * Flags returned by the handler. */#define BASE_IRQ_NOFLAGS		0x00#define BASE_IRQ_LEAVE_MASKED		0x01#define BASE_IRQ_SKIP_SOFTINT		0x02#ifndef ASSEMBLER/* Fill an IRQ gate in the base IDT.   Always uses an interrupt gate; just set `access' to the privilege level.  */#define fill_irq_gate(irq_num, entry, selector, access)			\	fill_gate(&base_idt[(irq_num) < 8				\			    ? irq_master_base+(irq_num)			\			    : irq_slave_base+(irq_num)-8],		\		  entry, selector, ACC_INTR_GATE | (access), 0)/* * Program the PICs to the standard vector base addresses above, * and initialize the corresponding entries in the base IDT. * Assumes the processor's interrupt flag is disabled throughout. */void base_irq_init(void);/* * This gate initialization table is used by base_irq_init * to initialize the hardware interrupt vectors in the base IDT. */extern struct gate_init_entry base_irq_inittab[];/* * Default IRQ handler for unexpected hardware interrupts * simply displays a warning message and returns. */unsigned int base_irq_default_handler(struct trap_state *ts);/*** Software Interrupt Handling ***//* * Hardware interrupt nesting counter, * used to ensure that the software interrupt handler isn't called * until all outstanding hardware interrupts have been processed. * * In addition, this word also acts as the software interrupt pending * and enabled flag: * if the high bit is set, no software interrupt is pending; * if the high bit is clear, a software interrupt is pending; * if the next-highest bit is set, software interrupts are disabled; * if the next-highest bit is clear, software interrupts are enabled. * This design allows the interrupt path to decide * whether to call the software interrupt handler * simply by testing the word for zero (pending and enabled). */extern unsigned char base_irq_nest;#endif /* ASSEMBLER *//* * Request a software interrupt (usually from a hardware interrupt handler). * The base_irq_softint_handler() function will be called later * after all hardware interrupt handlers have completed processing. */#define BASE_IRQ_SOFTINT_CLEARED		0x80#define BASE_IRQ_SOFTINT_DISABLED		0x40#ifndef ASSEMBLER#define base_irq_softint_request()	\	base_irq_nest &= ~BASE_IRQ_SOFTINT_CLEARED#define base_irq_softint_pending()	\	(! (base_irq_nest & BASE_IRQ_SOFTINT_CLEARED))#define base_irq_softint_clear()	\	base_irq_nest |= BASE_IRQ_SOFTINT_CLEARED#define base_irq_softint_enable()	\	base_irq_nest &= ~BASE_IRQ_SOFTINT_DISABLED#define base_irq_softint_enabled()	\	(! (base_irq_nest & BASE_IRQ_SOFTINT_DISABLED))#define base_irq_softint_disable()	\	base_irq_nest |= BASE_IRQ_SOFTINT_DISABLED/* * Software interrupt handler called by the entry/exit stub code * when a software interrupt has been requested and needs to be run. * The default implementation of this routine simply returns; * to use software interrupts, the kernel must override it. */void base_irq_softint_default_handler(struct trap_state *ts);/* * And the pointer to hold it so that it can be easily overridden! */extern void (*base_irq_softint_handler)(struct trap_state *ts);#endif /* ASSEMBLER */#endif /* _BASE_IRQ_H_ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -