xilinx_irq.h
来自「linux-2.4.29操作系统的源码」· C头文件 代码 · 共 32 行
H
32 行
/* * Copyright 2003 PMC-Sierra * Author: Manish Lachwani (lachwani@pmc-sierra.com) * * Board specific definititions for the PMC-Sierra Big Sur * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. */#ifndef __XILINX_IRQ_H__#define __XILINX_IRQ_H__#define BIG_SUR_BASE 0xfb000000#define BIG_SUR_WRITE(ofs, data) \ *(volatile u32 *)(BIG_SUR_BASE + ofs) = data#define BIG_SUR_READ(ofs) *(volatile u32 *)(BIG_SUR_BASE + ofs)#define BIG_SUR_INTERRUPT_MASK_1 0x0c00#define BIG_SUR_INTERRUPT_STATUS_1 0x0d00#define BIG_SUR_UART1_IRQ#define BIG_SUR_UART2_IRQ#define BIG_SUR_TIMER_IRQ#define BIG_SUR_PCI_IRQ#define BIG_SUR_IDE_IRQ#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?