aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-m32r/ide.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/asm-m32r/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-m32r/ide.h')
-rw-r--r--include/asm-m32r/ide.h82
1 files changed, 82 insertions, 0 deletions
diff --git a/include/asm-m32r/ide.h b/include/asm-m32r/ide.h
new file mode 100644
index 000000000000..be64f24e37ee
--- /dev/null
+++ b/include/asm-m32r/ide.h
@@ -0,0 +1,82 @@
1#ifndef _ASM_M32R_IDE_H
2#define _ASM_M32R_IDE_H
3
4/* $Id$ */
5
6/*
7 * linux/include/asm-m32r/ide.h
8 *
9 * Copyright (C) 1994-1996 Linus Torvalds & authors
10 */
11
12/*
13 * This file contains the i386 architecture specific IDE code.
14 */
15
16#ifdef __KERNEL__
17
18#include <linux/config.h>
19
20#ifndef MAX_HWIFS
21# ifdef CONFIG_BLK_DEV_IDEPCI
22#define MAX_HWIFS 10
23# else
24#define MAX_HWIFS 2
25# endif
26#endif
27
28#if defined(CONFIG_PLAT_M32700UT)
29#include <asm/irq.h>
30#include <asm/m32700ut/m32700ut_pld.h>
31#endif
32
33#define IDE_ARCH_OBSOLETE_DEFAULTS
34
35static __inline__ int ide_default_irq(unsigned long base)
36{
37 switch (base) {
38#if defined(CONFIG_PLAT_M32700UT) || defined(CONFIG_PLAT_MAPPI2)
39 case 0x1f0: return PLD_IRQ_CFIREQ;
40 default:
41 return 0;
42#else
43 case 0x1f0: return 14;
44 case 0x170: return 15;
45 case 0x1e8: return 11;
46 case 0x168: return 10;
47 case 0x1e0: return 8;
48 case 0x160: return 12;
49 default:
50 return 0;
51#endif
52 }
53}
54
55static __inline__ unsigned long ide_default_io_base(int index)
56{
57 switch (index) {
58 case 0: return 0x1f0;
59 case 1: return 0x170;
60 case 2: return 0x1e8;
61 case 3: return 0x168;
62 case 4: return 0x1e0;
63 case 5: return 0x160;
64 default:
65 return 0;
66 }
67}
68
69#define IDE_ARCH_OBSOLETE_INIT
70#define ide_default_io_ctl(base) ((base) + 0x206) /* obsolete */
71
72#ifdef CONFIG_BLK_DEV_IDEPCI
73#define ide_init_default_irq(base) (0)
74#else
75#define ide_init_default_irq(base) ide_default_irq(base)
76#endif
77
78#include <asm-generic/ide_iops.h>
79
80#endif /* __KERNEL__ */
81
82#endif /* _ASM_M32R_IDE_H */