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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-cris/ide.h
  3.  *
  4.  *  Copyright (C) 2000, 2001, 2002  Axis Communications AB
  5.  *
  6.  *  Authors:    Bjorn Wesen
  7.  *
  8.  */
  9. /*
  10.  *  This file contains the ETRAX 100LX specific IDE code.
  11.  */
  12. #ifndef __ASMCRIS_IDE_H
  13. #define __ASMCRIS_IDE_H
  14. #ifdef __KERNEL__
  15. #include <asm/svinto.h>
  16. /* ETRAX 100 can support 4 IDE busses on the same pins (serialized) */
  17. #define MAX_HWIFS 4
  18. #define ide__sti() __sti()
  19. static __inline__ int ide_default_irq(ide_ioreg_t base)
  20. {
  21. /* all IDE busses share the same IRQ, number 4.
  22.  * this has the side-effect that ide-probe.c will cluster our 4 interfaces
  23.  * together in a hwgroup, and will serialize accesses. this is good, because
  24.  * we can't access more than one interface at the same time on ETRAX100.
  25.  */
  26. return 4; 
  27. }
  28. static __inline__ ide_ioreg_t ide_default_io_base(int index)
  29. {
  30. /* we have no real I/O base address per interface, since all go through the
  31.  * same register. but in a bitfield in that register, we have the i/f number.
  32.  * so we can use the io_base to remember that bitfield.
  33.  */
  34. static const unsigned long io_bases[MAX_HWIFS] = {
  35. IO_FIELD(R_ATA_CTRL_DATA, sel, 0),
  36. IO_FIELD(R_ATA_CTRL_DATA, sel, 1),
  37. IO_FIELD(R_ATA_CTRL_DATA, sel, 2),
  38. IO_FIELD(R_ATA_CTRL_DATA, sel, 3)
  39. };
  40. return io_bases[index];
  41. }
  42. /* this is called once for each interface, to setup the port addresses. data_port is the result
  43.  * of the ide_default_io_base call above. ctrl_port will be 0, but that is don't care for us.
  44.  */
  45. static __inline__ void ide_init_hwif_ports(hw_regs_t *hw, ide_ioreg_t data_port, ide_ioreg_t ctrl_port, int *irq)
  46. {
  47. int i;
  48. /* fill in ports for ATA addresses 0 to 7 */
  49. for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; i++) {
  50. hw->io_ports[i] = data_port | 
  51. IO_FIELD(R_ATA_CTRL_DATA, addr, i) | 
  52. IO_STATE(R_ATA_CTRL_DATA, cs0, active);
  53. }
  54. /* the IDE control register is at ATA address 6, with CS1 active instead of CS0 */
  55. hw->io_ports[IDE_CONTROL_OFFSET] = data_port |
  56. IO_FIELD(R_ATA_CTRL_DATA, addr, 6) | 
  57. IO_STATE(R_ATA_CTRL_DATA, cs1, active);
  58. /* whats this for ? */
  59. hw->io_ports[IDE_IRQ_OFFSET] = 0;
  60. }
  61. static __inline__ void ide_init_default_hwifs(void)
  62. {
  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. }
  71. typedef union {
  72. unsigned all : 8; /* all of the bits together */
  73. struct {
  74. unsigned head : 4; /* always zeros here */
  75. unsigned unit : 1; /* drive select number, 0 or 1 */
  76. unsigned bit5 : 1; /* always 1 */
  77. unsigned lba : 1; /* using LBA instead of CHS */
  78. unsigned bit7 : 1; /* always 1 */
  79. } b;
  80. } select_t;
  81. typedef union {
  82. unsigned all                    : 8;    /* all of the bits together */
  83. struct {
  84. unsigned bit0           : 1;
  85. unsigned nIEN           : 1;    /* device INTRQ to host */
  86. unsigned SRST           : 1;    /* host soft reset bit */
  87. unsigned bit3           : 1;    /* ATA-2 thingy */
  88. unsigned reserved456    : 3;
  89. unsigned HOB            : 1;    /* 48-bit address ordering */
  90. } b;
  91. } control_t;
  92. /* some configuration options we don't need */
  93. #undef SUPPORT_VLB_SYNC
  94. #define SUPPORT_VLB_SYNC 0
  95. #undef SUPPORT_SLOW_DATA_PORTS
  96. #define SUPPORT_SLOW_DATA_PORTS 0
  97. /* request and free a normal interrupt */
  98. #define ide_request_irq(irq,hand,flg,dev,id) request_irq((irq),(hand),(flg),(dev),(id))
  99. #define ide_free_irq(irq,dev_id) free_irq((irq), (dev_id))
  100. /* ide-probe.c calls ide_request_region and stuff on the io_ports defined,
  101.  * but since they are not actually memory-mapped in the ETRAX driver, we don't
  102.  * do anything.
  103.  */
  104. #define ide_check_region(from,extent) (0)
  105. #define ide_request_region(from,extent,name) do {} while(0)
  106. #define ide_release_region(from,extent) do {} while(0)
  107. /*
  108.  * The following are not needed for the non-m68k ports
  109.  */
  110. #define ide_ack_intr(hwif) (1)
  111. #define ide_fix_driveid(id) do {} while (0)
  112. #define ide_release_lock(lock) do {} while (0)
  113. #define ide_get_lock(lock, hdlr, data) do {} while (0)
  114. /* the drive addressing is done through a controller register on the Etrax CPU */
  115. void OUT_BYTE(unsigned char data, ide_ioreg_t reg);
  116. unsigned char IN_BYTE(ide_ioreg_t reg);
  117. /* this tells ide.h not to define the standard macros */
  118. #define HAVE_ARCH_OUT_BYTE
  119. #define HAVE_ARCH_IN_BYTE
  120. #endif /* __KERNEL__ */
  121. #endif /* __ASMCRIS_IDE_H */