ACPI PM: acpi_pm_device_sleep_state() cleanup
[linux-2.6/kvm.git] / include / asm-ia64 / ide.h
blob8fa3f8cd067aa1f8769fe0131635ebdcea5791f0
1 /*
2 * linux/include/asm-ia64/ide.h
4 * Copyright (C) 1994-1996 Linus Torvalds & authors
5 */
7 /*
8 * This file contains the ia64 architecture specific IDE code.
9 */
11 #ifndef __ASM_IA64_IDE_H
12 #define __ASM_IA64_IDE_H
14 #ifdef __KERNEL__
17 #include <linux/irq.h>
19 static inline int ide_default_irq(unsigned long base)
21 switch (base) {
22 case 0x1f0: return isa_irq_to_vector(14);
23 case 0x170: return isa_irq_to_vector(15);
24 case 0x1e8: return isa_irq_to_vector(11);
25 case 0x168: return isa_irq_to_vector(10);
26 case 0x1e0: return isa_irq_to_vector(8);
27 case 0x160: return isa_irq_to_vector(12);
28 default:
29 return 0;
33 static inline unsigned long ide_default_io_base(int index)
35 switch (index) {
36 case 0: return 0x1f0;
37 case 1: return 0x170;
38 case 2: return 0x1e8;
39 case 3: return 0x168;
40 case 4: return 0x1e0;
41 case 5: return 0x160;
42 default:
43 return 0;
47 #include <asm-generic/ide_iops.h>
49 #endif /* __KERNEL__ */
51 #endif /* __ASM_IA64_IDE_H */