ide.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* MN10300 Arch-specific IDE code
  2. *
  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
  6. *
  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.
  11. */
  12. #ifndef _ASM_IDE_H
  13. #define _ASM_IDE_H
  14. #ifdef __KERNEL__
  15. #include <asm/intctl-regs.h>
  16. #undef SUPPORT_SLOW_DATA_PORTS
  17. #define SUPPORT_SLOW_DATA_PORTS 0
  18. #undef SUPPORT_VLB_SYNC
  19. #define SUPPORT_VLB_SYNC 0
  20. /*
  21. * some bits needed for parts of the IDE subsystem to compile
  22. */
  23. #define __ide_mm_insw(port, addr, n) \
  24. insw((unsigned long) (port), (addr), (n))
  25. #define __ide_mm_insl(port, addr, n) \
  26. insl((unsigned long) (port), (addr), (n))
  27. #define __ide_mm_outsw(port, addr, n) \
  28. outsw((unsigned long) (port), (addr), (n))
  29. #define __ide_mm_outsl(port, addr, n) \
  30. outsl((unsigned long) (port), (addr), (n))
  31. #endif /* __KERNEL__ */
  32. #endif /* _ASM_IDE_H */