ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-alpha / ide.h
1 /*
2  *  linux/include/asm-alpha/ide.h
3  *
4  *  Copyright (C) 1994-1996  Linus Torvalds & authors
5  */
6
7 /*
8  *  This file contains the alpha architecture specific IDE code.
9  */
10
11 #ifndef __ASMalpha_IDE_H
12 #define __ASMalpha_IDE_H
13
14 #ifdef __KERNEL__
15
16 #include <linux/config.h>
17
18 #ifndef MAX_HWIFS
19 #define MAX_HWIFS       CONFIG_IDE_MAX_HWIFS
20 #endif
21
22 static inline int ide_default_irq(unsigned long base)
23 {
24         switch (base) {
25                 case 0x1f0: return 14;
26                 case 0x170: return 15;
27                 case 0x1e8: return 11;
28                 case 0x168: return 10;
29                 default:
30                         return 0;
31         }
32 }
33
34 static inline unsigned long ide_default_io_base(int index)
35 {
36         switch (index) {
37                 case 0: return 0x1f0;
38                 case 1: return 0x170;
39                 case 2: return 0x1e8;
40                 case 3: return 0x168;
41                 default:
42                         return 0;
43         }
44 }
45
46 #ifdef CONFIG_PCI
47 #define ide_init_default_irq(base)      (0)
48 #else
49 #define ide_init_default_irq(base)      ide_default_irq(base)
50 #endif
51
52 #include <asm-generic/ide_iops.h>
53
54 #endif /* __KERNEL__ */
55
56 #endif /* __ASMalpha_IDE_H */