| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * include/asm/opsput_lan.h | 
 | 3 |  * | 
 | 4 |  * OPSPUT-LAN board | 
 | 5 |  * | 
 | 6 |  * Copyright (c) 2002-2004	Takeo Takahashi, Mamoru Sakugawa | 
 | 7 |  * | 
 | 8 |  * This file is subject to the terms and conditions of the GNU General | 
 | 9 |  * Public License.  See the file "COPYING" in the main directory of | 
 | 10 |  * this archive for more details. | 
 | 11 |  * | 
 | 12 |  * $Id: opsput_lan.h,v 1.1 2004/07/27 06:54:20 sakugawa Exp $ | 
 | 13 |  */ | 
 | 14 |  | 
 | 15 | #ifndef _OPSPUT_OPSPUT_LAN_H | 
 | 16 | #define _OPSPUT_OPSPUT_LAN_H | 
 | 17 |  | 
 | 18 | #include <linux/config.h> | 
 | 19 |  | 
 | 20 | #ifndef __ASSEMBLY__ | 
 | 21 | /* | 
 | 22 |  * C functions use non-cache address. | 
 | 23 |  */ | 
 | 24 | #define OPSPUT_LAN_BASE	(0x10000000 /* + NONCACHE_OFFSET */) | 
 | 25 | #else | 
 | 26 | #define OPSPUT_LAN_BASE	(0x10000000 + NONCACHE_OFFSET) | 
 | 27 | #endif	/* __ASSEMBLY__ */ | 
 | 28 |  | 
 | 29 | /* ICU | 
 | 30 |  *  ICUISTS:	status register | 
 | 31 |  *  ICUIREQ0: 	request register | 
 | 32 |  *  ICUIREQ1: 	request register | 
 | 33 |  *  ICUCR3:	control register for CFIREQ# interrupt | 
 | 34 |  *  ICUCR4:	control register for CFC Card insert interrupt | 
 | 35 |  *  ICUCR5:	control register for CFC Card eject interrupt | 
 | 36 |  *  ICUCR6:	control register for external interrupt | 
 | 37 |  *  ICUCR11:	control register for MMC Card insert/eject interrupt | 
 | 38 |  *  ICUCR13:	control register for SC error interrupt | 
 | 39 |  *  ICUCR14:	control register for SC receive interrupt | 
 | 40 |  *  ICUCR15:	control register for SC send interrupt | 
 | 41 |  *  ICUCR16:	control register for SIO0 receive interrupt | 
 | 42 |  *  ICUCR17:	control register for SIO0 send interrupt | 
 | 43 |  */ | 
 | 44 | #define OPSPUT_LAN_IRQ_LAN	(OPSPUT_LAN_PLD_IRQ_BASE + 1)	/* LAN */ | 
 | 45 | #define OPSPUT_LAN_IRQ_I2C	(OPSPUT_LAN_PLD_IRQ_BASE + 3)	/* I2C */ | 
 | 46 |  | 
 | 47 | #define OPSPUT_LAN_ICUISTS	__reg16(OPSPUT_LAN_BASE + 0xc0002) | 
 | 48 | #define OPSPUT_LAN_ICUISTS_VECB_MASK	(0xf000) | 
 | 49 | #define OPSPUT_LAN_VECB(x)	((x) & OPSPUT_LAN_ICUISTS_VECB_MASK) | 
 | 50 | #define OPSPUT_LAN_ICUISTS_ISN_MASK	(0x07c0) | 
 | 51 | #define OPSPUT_LAN_ICUISTS_ISN(x)	((x) & OPSPUT_LAN_ICUISTS_ISN_MASK) | 
 | 52 | #define OPSPUT_LAN_ICUIREQ0	__reg16(OPSPUT_LAN_BASE + 0xc0004) | 
 | 53 | #define OPSPUT_LAN_ICUCR1	__reg16(OPSPUT_LAN_BASE + 0xc0010) | 
 | 54 | #define OPSPUT_LAN_ICUCR3	__reg16(OPSPUT_LAN_BASE + 0xc0014) | 
 | 55 |  | 
 | 56 | #endif	/* _OPSPUT_OPSPUT_LAN_H */ |