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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-parisc/ide.h
  3.  *
  4.  *  Copyright (C) 1994-1996  Linus Torvalds & authors
  5.  */
  6. /*
  7.  *  This file contains the PARISC architecture specific IDE code.
  8.  */
  9. #ifndef __ASM_PARISC_IDE_H
  10. #define __ASM_PARISC_IDE_H
  11. #ifdef __KERNEL__
  12. #include <linux/config.h>
  13. #include <asm/superio.h>
  14. #ifndef MAX_HWIFS
  15. #define MAX_HWIFS 2
  16. #endif
  17. static __inline__ int ide_default_irq(ide_ioreg_t base)
  18. {
  19. switch (base) {
  20. #ifdef CONFIG_SUPERIO
  21. case 0x1f0: 
  22. case 0x170:
  23. return superio_get_ide_irq();
  24. #endif /* CONFIG_SUPERIO */
  25. default:
  26. return 0;
  27. }
  28. }
  29. static __inline__ ide_ioreg_t ide_default_io_base(int index)
  30. {
  31. switch (index) {
  32. #ifdef CONFIG_SUPERIO 
  33. case 0: return (superio_get_ide_irq() ? 0x1f0 : 0);
  34. case 1: return (superio_get_ide_irq() ? 0x170 : 0);
  35. #endif /* CONFIG_SUPERIO */
  36. default:
  37. return 0;
  38. }
  39. }
  40. static __inline__ void ide_init_hwif_ports(hw_regs_t *hw, ide_ioreg_t data_port, ide_ioreg_t ctrl_port, int *irq)
  41. {
  42. ide_ioreg_t reg = data_port;
  43. int i;
  44. for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; i++) {
  45. hw->io_ports[i] = reg;
  46. reg += 1;
  47. }
  48. if (ctrl_port) {
  49. hw->io_ports[IDE_CONTROL_OFFSET] = ctrl_port;
  50. } else {
  51. hw->io_ports[IDE_CONTROL_OFFSET] = hw->io_ports[IDE_DATA_OFFSET] + 0x206;
  52. }
  53. if (irq != NULL)
  54. *irq = 0;
  55. hw->io_ports[IDE_IRQ_OFFSET] = 0;
  56. }
  57. static __inline__ void ide_init_default_hwifs(void)
  58. {
  59. #ifndef CONFIG_BLK_DEV_IDEPCI
  60. hw_regs_t hw;
  61. int index;
  62. for(index = 0; index < MAX_HWIFS; index++) {
  63. ide_init_hwif_ports(&hw, ide_default_io_base(index), 0, NULL);
  64. hw.irq = ide_default_irq(ide_default_io_base(index));
  65. ide_register_hw(&hw, NULL);
  66. }
  67. #endif /* CONFIG_BLK_DEV_IDEPCI */
  68. }
  69. #define ide_request_irq(irq,hand,flg,dev,id) request_irq((irq),(hand),(flg),(dev),(id))
  70. #define ide_free_irq(irq,dev_id) free_irq((irq), (dev_id))
  71. #define ide_check_region(from,extent) check_region((from), (extent))
  72. #define ide_request_region(from,extent,name) request_region((from), (extent), (name))
  73. #define ide_release_region(from,extent) release_region((from), (extent))
  74. #define T_CHAR          (0x0000)        /* char:  don't touch  */
  75. #define T_SHORT         (0x4000)        /* short: 12 -> 21     */
  76. #define T_INT           (0x8000)        /* int:   1234 -> 4321 */
  77. #define T_TEXT          (0xc000)        /* text:  12 -> 21     */
  78. #define T_MASK_TYPE     (0xc000)
  79. #define T_MASK_COUNT    (0x3fff)
  80. #define D_CHAR(cnt)     (T_CHAR  | (cnt))
  81. #define D_SHORT(cnt)    (T_SHORT | (cnt))
  82. #define D_INT(cnt)      (T_INT   | (cnt))
  83. #define D_TEXT(cnt)     (T_TEXT  | (cnt))
  84. static u_short driveid_types[] = {
  85. D_SHORT(10), /* config - vendor2 */
  86. D_TEXT(20), /* serial_no */
  87. D_SHORT(3), /* buf_type - ecc_bytes */
  88. D_TEXT(48), /* fw_rev - model */
  89. D_CHAR(2), /* max_multsect - vendor3 */
  90. D_SHORT(1), /* dword_io */
  91. D_CHAR(2), /* vendor4 - capability */
  92. D_SHORT(1), /* reserved50 */
  93. D_CHAR(4), /* vendor5 - tDMA */
  94. D_SHORT(4), /* field_valid - cur_sectors */
  95. D_INT(1), /* cur_capacity */
  96. D_CHAR(2), /* multsect - multsect_valid */
  97. D_INT(1), /* lba_capacity */
  98. D_SHORT(194) /* dma_1word - reservedyy */
  99. };
  100. #define num_driveid_types       (sizeof(driveid_types)/sizeof(*driveid_types))
  101. static __inline__ void ide_fix_driveid(struct hd_driveid *id)
  102. {
  103. u_char *p = (u_char *)id;
  104. int i, j, cnt;
  105. u_char t;
  106. for (i = 0; i < num_driveid_types; i++) {
  107. cnt = driveid_types[i] & T_MASK_COUNT;
  108. switch (driveid_types[i] & T_MASK_TYPE) {
  109. case T_CHAR:
  110. p += cnt;
  111. break;
  112. case T_SHORT:
  113. for (j = 0; j < cnt; j++) {
  114. t = p[0];
  115. p[0] = p[1];
  116. p[1] = t;
  117. p += 2;
  118. }
  119. break;
  120. case T_INT:
  121. for (j = 0; j < cnt; j++) {
  122. t = p[0];
  123. p[0] = p[3];
  124. p[3] = t;
  125. t = p[1];
  126. p[1] = p[2];
  127. p[2] = t;
  128. p += 4;
  129. }
  130. break;
  131. case T_TEXT:
  132. for (j = 0; j < cnt; j += 2) {
  133. t = p[0];
  134. p[0] = p[1];
  135. p[1] = t;
  136. p += 2;
  137. }
  138. break;
  139. };
  140. }
  141. }
  142. /*
  143.  * The following are not needed for the non-m68k ports
  144.  */
  145. #define ide_ack_intr(hwif) (1)
  146. #define ide_release_lock(lock) do {} while (0)
  147. #define ide_get_lock(lock, hdlr, data) do {} while (0)
  148. #endif /* __KERNEL__ */
  149. #endif /* __ASM_PARISC_IDE_H */