ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-arm / arch-ebsa285 / io.h
1 /*
2  *  linux/include/asm-arm/arch-ebsa285/io.h
3  *
4  *  Copyright (C) 1997-1999 Russell King
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  *  Modifications:
11  *   06-12-1997 RMK     Created.
12  *   07-04-1999 RMK     Major cleanup
13  */
14 #ifndef __ASM_ARM_ARCH_IO_H
15 #define __ASM_ARM_ARCH_IO_H
16
17 #define IO_SPACE_LIMIT 0xffff
18
19 /*
20  * Translation of various region addresses to virtual addresses
21  */
22 #define __io(a)                 (PCIO_BASE + (a))
23 #if 1
24 #define __mem_pci(a)            ((unsigned long)(a))
25 #define __mem_isa(a)            (PCIMEM_BASE + (unsigned long)(a))
26 #else
27
28 static inline unsigned long ___mem_pci(unsigned long a)
29 {
30         BUG_ON(a <= 0xc0000000 || a >= 0xe0000000);
31         return a;
32 }
33
34 static inline unsigned long ___mem_isa(unsigned long a)
35 {
36         BUG_ON(a >= 16*1048576);
37         return PCIMEM_BASE + a;
38 }
39 #define __mem_pci(a)            ___mem_pci((unsigned long)(a))
40 #define __mem_isa(a)            ___mem_isa((unsigned long)(a))
41 #endif
42
43 #endif