USB: Obscure Maxon BP3-USB Device Support 16d8:6280 for option driver
[linux-2.6/s3c2410-cpufreq.git] / include / asm-mn10300 / ide.h
blobdc235121ec422e57b7639503701c449d9fc3dae4
1 /* MN10300 Arch-specific IDE code
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 * - Derived from include/asm-i386/ide.h
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public Licence
9 * as published by the Free Software Foundation; either version
10 * 2 of the Licence, or (at your option) any later version.
13 #ifndef _ASM_IDE_H
14 #define _ASM_IDE_H
16 #ifdef __KERNEL__
18 #include <asm/intctl-regs.h>
20 #undef SUPPORT_SLOW_DATA_PORTS
21 #define SUPPORT_SLOW_DATA_PORTS 0
23 #undef SUPPORT_VLB_SYNC
24 #define SUPPORT_VLB_SYNC 0
26 #ifndef MAX_HWIFS
27 #define MAX_HWIFS 8
28 #endif
31 * some bits needed for parts of the IDE subsystem to compile
33 #define __ide_mm_insw(port, addr, n) \
34 insw((unsigned long) (port), (addr), (n))
35 #define __ide_mm_insl(port, addr, n) \
36 insl((unsigned long) (port), (addr), (n))
37 #define __ide_mm_outsw(port, addr, n) \
38 outsw((unsigned long) (port), (addr), (n))
39 #define __ide_mm_outsl(port, addr, n) \
40 outsl((unsigned long) (port), (addr), (n))
42 #endif /* __KERNEL__ */
43 #endif /* _ASM_IDE_H */