diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/asm-alpha/ide.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'include/asm-alpha/ide.h')
-rw-r--r-- | include/asm-alpha/ide.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/include/asm-alpha/ide.h b/include/asm-alpha/ide.h new file mode 100644 index 000000000000..68934a25931f --- /dev/null +++ b/include/asm-alpha/ide.h | |||
@@ -0,0 +1,61 @@ | |||
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 | #define IDE_ARCH_OBSOLETE_DEFAULTS | ||
23 | |||
24 | static inline int ide_default_irq(unsigned long base) | ||
25 | { | ||
26 | switch (base) { | ||
27 | case 0x1f0: return 14; | ||
28 | case 0x170: return 15; | ||
29 | case 0x1e8: return 11; | ||
30 | case 0x168: return 10; | ||
31 | default: | ||
32 | return 0; | ||
33 | } | ||
34 | } | ||
35 | |||
36 | static inline unsigned long ide_default_io_base(int index) | ||
37 | { | ||
38 | switch (index) { | ||
39 | case 0: return 0x1f0; | ||
40 | case 1: return 0x170; | ||
41 | case 2: return 0x1e8; | ||
42 | case 3: return 0x168; | ||
43 | default: | ||
44 | return 0; | ||
45 | } | ||
46 | } | ||
47 | |||
48 | #define IDE_ARCH_OBSOLETE_INIT | ||
49 | #define ide_default_io_ctl(base) ((base) + 0x206) /* obsolete */ | ||
50 | |||
51 | #ifdef CONFIG_PCI | ||
52 | #define ide_init_default_irq(base) (0) | ||
53 | #else | ||
54 | #define ide_init_default_irq(base) ide_default_irq(base) | ||
55 | #endif | ||
56 | |||
57 | #include <asm-generic/ide_iops.h> | ||
58 | |||
59 | #endif /* __KERNEL__ */ | ||
60 | |||
61 | #endif /* __ASMalpha_IDE_H */ | ||