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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-alpha/ide.h
  3.  *
  4.  *  Copyright (C) 1994-1996  Linus Torvalds & authors
  5.  */
  6. /*
  7.  *  This file contains the alpha architecture specific IDE code.
  8.  */
  9. #ifndef __ASMalpha_IDE_H
  10. #define __ASMalpha_IDE_H
  11. #ifdef __KERNEL__
  12. #include <linux/config.h>
  13. #ifndef MAX_HWIFS
  14. #define MAX_HWIFS 4
  15. #endif
  16. #define ide__sti() __sti()
  17. static __inline__ int ide_default_irq(ide_ioreg_t base)
  18. {
  19. switch (base) {
  20. case 0x1f0: return 14;
  21. case 0x170: return 15;
  22. case 0x1e8: return 11;
  23. case 0x168: return 10;
  24. default:
  25. return 0;
  26. }
  27. }
  28. static __inline__ ide_ioreg_t ide_default_io_base(int index)
  29. {
  30. switch (index) {
  31. case 0: return 0x1f0;
  32. case 1: return 0x170;
  33. case 2: return 0x1e8;
  34. case 3: return 0x168;
  35. default:
  36. return 0;
  37. }
  38. }
  39. static __inline__ void ide_init_hwif_ports(hw_regs_t *hw, ide_ioreg_t data_port, ide_ioreg_t ctrl_port, int *irq)
  40. {
  41. ide_ioreg_t reg = data_port;
  42. int i;
  43. for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; i++) {
  44. hw->io_ports[i] = reg;
  45. reg += 1;
  46. }
  47. if (ctrl_port) {
  48. hw->io_ports[IDE_CONTROL_OFFSET] = ctrl_port;
  49. } else {
  50. hw->io_ports[IDE_CONTROL_OFFSET] = hw->io_ports[IDE_DATA_OFFSET] + 0x206;
  51. }
  52. if (irq != NULL)
  53. *irq = 0;
  54. hw->io_ports[IDE_IRQ_OFFSET] = 0;
  55. }
  56. /*
  57.  * This registers the standard ports for this architecture with the IDE
  58.  * driver.
  59.  */
  60. static __inline__ void ide_init_default_hwifs(void)
  61. {
  62. #ifndef CONFIG_BLK_DEV_IDEPCI
  63. hw_regs_t hw;
  64. int index;
  65. for (index = 0; index < MAX_HWIFS; index++) {
  66. ide_init_hwif_ports(&hw, ide_default_io_base(index), 0, NULL);
  67. hw.irq = ide_default_irq(ide_default_io_base(index));
  68. ide_register_hw(&hw, NULL);
  69. }
  70. #endif /* CONFIG_BLK_DEV_IDEPCI */
  71. }
  72. typedef union {
  73. unsigned all : 8; /* all of the bits together */
  74. struct {
  75. unsigned head : 4; /* always zeros here */
  76. unsigned unit : 1; /* drive select number, 0 or 1 */
  77. unsigned bit5 : 1; /* always 1 */
  78. unsigned lba : 1; /* using LBA instead of CHS */
  79. unsigned bit7 : 1; /* always 1 */
  80. } b;
  81. } select_t;
  82. typedef union {
  83. unsigned all : 8; /* all of the bits together */
  84. struct {
  85. unsigned bit0 : 1;
  86. unsigned nIEN : 1; /* device INTRQ to host */
  87. unsigned SRST : 1; /* host soft reset bit */
  88. unsigned bit3 : 1; /* ATA-2 thingy */
  89. unsigned reserved456 : 3;
  90. unsigned HOB : 1; /* 48-bit address ordering */
  91. } b;
  92. } control_t;
  93. #define ide_request_irq(irq,hand,flg,dev,id) request_irq((irq),(hand),(flg),(dev),(id))
  94. #define ide_free_irq(irq,dev_id) free_irq((irq), (dev_id))
  95. #define ide_check_region(from,extent) check_region((from), (extent))
  96. #define ide_request_region(from,extent,name) request_region((from), (extent), (name))
  97. #define ide_release_region(from,extent) release_region((from), (extent))
  98. /*
  99.  * The following are not needed for the non-m68k ports
  100.  */
  101. #define ide_ack_intr(hwif) (1)
  102. #define ide_fix_driveid(id) do {} while (0)
  103. #define ide_release_lock(lock) do {} while (0)
  104. #define ide_get_lock(lock, hdlr, data) do {} while (0)
  105. #endif /* __KERNEL__ */
  106. #endif /* __ASMalpha_IDE_H */