ide.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-ppc/ide.h
  3.  *
  4.  *  Copyright (C) 1994-1996 Linus Torvalds & authors
  5.  *
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License
  8.  * as published by the Free Software Foundation; either version
  9.  * 2 of the License, or (at your option) any later version.
  10.  */ 
  11. /*
  12.  *  This file contains the ppc64 architecture specific IDE code.
  13.  */
  14. #ifndef __ASMPPC64_IDE_H
  15. #define __ASMPPC64_IDE_H
  16. #ifdef __KERNEL__
  17. #ifndef MAX_HWIFS
  18. #define MAX_HWIFS 4
  19. #endif
  20. #define ide__sti() __sti()
  21. void ppc64_ide_fix_driveid(struct hd_driveid *id);
  22. #define ide_fix_driveid(id) ppc64_ide_fix_driveid((id))
  23. static __inline__ int ide_default_irq(ide_ioreg_t base) { return 0; }
  24. static __inline__ ide_ioreg_t ide_default_io_base(int index) { return 0; }
  25. static __inline__ void ide_init_hwif_ports(hw_regs_t *hw, ide_ioreg_t data_port, ide_ioreg_t ctrl_port, int *irq)
  26. {
  27. ide_ioreg_t reg = data_port;
  28. int i;
  29. for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; i++) {
  30. hw->io_ports[i] = reg;
  31. reg += 1;
  32. }
  33. if (ctrl_port) {
  34. hw->io_ports[IDE_CONTROL_OFFSET] = ctrl_port;
  35. } else {
  36. hw->io_ports[IDE_CONTROL_OFFSET] = hw->io_ports[IDE_DATA_OFFSET] + 0x206;
  37. }
  38. if (irq != NULL)
  39. *irq = 0;
  40. hw->io_ports[IDE_IRQ_OFFSET] = 0;
  41. }
  42. static __inline__ void ide_init_default_hwifs(void)
  43. {
  44. }
  45. typedef union {
  46. unsigned all : 8; /* all of the bits together */
  47. struct {
  48. unsigned head : 4; /* always zeros here */
  49. unsigned unit : 1; /* drive select number, 0 or 1 */
  50. unsigned bit5 : 1; /* always 1 */
  51. unsigned lba : 1; /* using LBA instead of CHS */
  52. unsigned bit7 : 1; /* always 1 */
  53. } b;
  54. } select_t;
  55. #define ide_request_irq(irq,hand,flg,dev,id) request_irq((irq),(hand),(flg),(dev),(id))
  56. #define ide_free_irq(irq,dev_id) free_irq((irq), (dev_id))
  57. #define ide_check_region(from,extent) check_region((from), (extent))
  58. #define ide_request_region(from,extent,name) request_region((from), (extent), (name))
  59. #define ide_release_region(from,extent) release_region((from), (extent))
  60. /*
  61.  * The following are not needed for the non-m68k ports
  62.  */
  63. #define ide_ack_intr(hwif) (1)
  64. #define ide_release_lock(lock) do {} while (0)
  65. #define ide_get_lock(lock, hdlr, data) do {} while (0)
  66. #endif /* __KERNEL__ */
  67. #endif /* __ASMPPC64_IDE_H */