1 /*
2  * Copyright 2003 PMC-Sierra
3  * Author: Manish Lachwani (lachwani@pmc-sierra.com)
4  *
5  * Board specific definititions for the PMC-Sierra Big Sur
6  *
7  * This program is free software; you can redistribute  it and/or modify it
8  * under  the terms of  the GNU General  Public License as published by the
9  * Free Software Foundation;  either version 2 of the  License, or (at your
10  * option) any later version.
11  */
12 
13 #ifndef __XILINX_IRQ_H__
14 #define	__XILINX_IRQ_H__
15 
16 #define BIG_SUR_BASE	0xfb000000
17 
18 #define BIG_SUR_WRITE(ofs, data)	\
19 	*(volatile u32 *)(BIG_SUR_BASE + ofs) = data
20 
21 #define BIG_SUR_READ(ofs)	*(volatile u32 *)(BIG_SUR_BASE + ofs)
22 
23 #define	BIG_SUR_INTERRUPT_MASK_1	0x0c00
24 #define	BIG_SUR_INTERRUPT_STATUS_1	0x0d00
25 #define	BIG_SUR_UART1_IRQ
26 #define	BIG_SUR_UART2_IRQ
27 #define	BIG_SUR_TIMER_IRQ
28 #define	BIG_SUR_PCI_IRQ
29 #define	BIG_SUR_IDE_IRQ
30 
31 #endif
32