ide.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-sa1100/ide.h
  3.  *
  4.  * Copyright (c) 1998 Hugo Fiennes & Nicolas Pitre
  5.  *
  6.  * 26-feb-2002: Add support for 2d3D SA-1110 Development board
  7.  *              Abraham van der Merwe <abraham@2d3d.co.za>
  8.  *
  9.  * 18-aug-2000: Cleanup by Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
  10.  *              Get rid of the special ide_init_hwif_ports() functions
  11.  *              and make a generalised function that can be used by all
  12.  *              architectures.
  13.  */
  14. #include <linux/config.h>
  15. #include <asm/irq.h>
  16. #include <asm/hardware.h>
  17. #include <asm/mach-types.h>
  18. /*
  19.  * Set up a hw structure for a specified data port, control port and IRQ.
  20.  * This should follow whatever the default interface uses.
  21.  */
  22. static __inline__ void
  23. ide_init_hwif_ports(hw_regs_t *hw, int data_port, int ctrl_port, int *irq)
  24. {
  25. ide_ioreg_t reg;
  26. int i;
  27. int regincr = 1;
  28. /* The Empeg board has the first two address lines unused */
  29. if (machine_is_empeg())
  30. regincr = 1 << 2;
  31. /* The LART doesn't use A0 for IDE */
  32. if (machine_is_lart())
  33. regincr = 1 << 1;
  34. /* Frodo has the first 14 address lines unused */
  35. if (machine_is_frodo())
  36. regincr = 1 << 14;
  37. memset(hw, 0, sizeof(*hw));
  38. reg = (ide_ioreg_t)data_port;
  39. for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; i++) {
  40. hw->io_ports[i] = reg;
  41. reg += regincr;
  42. }
  43. hw->io_ports[IDE_CONTROL_OFFSET] = (ide_ioreg_t) ctrl_port;
  44. if (irq)
  45. *irq = 0;
  46. }
  47. /*
  48.  * This registers the standard ports for this architecture with the IDE
  49.  * driver.
  50.  */
  51. static __inline__ void
  52. ide_init_default_hwifs(void)
  53. {
  54.     if( machine_is_empeg() ){
  55. #ifdef CONFIG_SA1100_EMPEG
  56. hw_regs_t hw;
  57. /* First, do the SA1100 setup */
  58. /* PCMCIA IO space */
  59. MECR=0x21062106;
  60.         /* Issue 3 is much neater than issue 2 */
  61. GPDR&=~(EMPEG_IDE1IRQ|EMPEG_IDE2IRQ);
  62. /* Interrupts on rising edge: lines are inverted before they get to
  63.            the SA */
  64. set_GPIO_IRQ_edge( (EMPEG_IDE1IRQ|EMPEG_IDE2IRQ), GPIO_FALLING_EDGE );
  65. /* Take hard drives out of reset */
  66. GPSR=(EMPEG_IDERESET);
  67. /* Sonja and her successors have two IDE ports. */
  68. /* MAC 23/4/1999, swap these round so that the left hand
  69.    hard disk is hda when viewed from the front. This
  70.    doesn't match the silkscreen however. */
  71. ide_init_hwif_ports(&hw, PCMCIA_IO_0_BASE + 0x40, PCMCIA_IO_0_BASE + 0x78, NULL);
  72. hw.irq = EMPEG_IRQ_IDE2;
  73. ide_register_hw(&hw, NULL);
  74. ide_init_hwif_ports(&hw, PCMCIA_IO_0_BASE + 0x00, PCMCIA_IO_0_BASE + 0x38, NULL);
  75. hw.irq = ,EMPEG_IRQ_IDE1;
  76. ide_register_hw(&hw, NULL);
  77. #endif
  78.     }
  79.     else if( machine_is_victor() ){
  80. #ifdef CONFIG_SA1100_VICTOR
  81. hw_regs_t hw;
  82. /* Enable appropriate GPIOs as interrupt lines */
  83. GPDR &= ~GPIO_GPIO7;
  84. set_GPIO_IRQ_edge( GPIO_GPIO7, GPIO_RISING_EDGE );
  85. /* set the pcmcia interface timing */
  86. MECR = 0x00060006;
  87. ide_init_hwif_ports(&hw, PCMCIA_IO_0_BASE + 0x1f0, PCMCIA_IO_0_BASE + 0x3f6, NULL);
  88. hw.irq = IRQ_GPIO7;
  89. ide_register_hw(&hw, NULL);
  90. #endif
  91.     }
  92.     else if (machine_is_lart()) {
  93. #ifdef CONFIG_SA1100_LART
  94.         hw_regs_t hw;
  95.         /* Enable GPIO as interrupt line */
  96.         GPDR &= ~LART_GPIO_IDE;
  97.         set_GPIO_IRQ_edge(LART_GPIO_IDE, GPIO_RISING_EDGE);
  98.         
  99.         /* set PCMCIA interface timing */
  100.         MECR = 0x00060006;
  101.         /* init the interface */
  102. ide_init_hwif_ports(&hw, PCMCIA_IO_0_BASE + 0x0000, PCMCIA_IO_0_BASE + 0x1000, NULL);
  103.         hw.irq = LART_IRQ_IDE;
  104.         ide_register_hw(&hw, NULL);
  105. #endif
  106.     }
  107. else if (machine_is_frodo ()) {
  108. #ifdef CONFIG_SA1100_FRODO
  109. hw_regs_t hw;
  110. /* enable GPIO as interrupt line */
  111. GPDR &= ~FRODO_IDE_GPIO;
  112. set_GPIO_IRQ_edge (FRODO_IDE_GPIO,GPIO_RISING_EDGE);
  113. /* init the interface */
  114. ide_init_hwif_ports (&hw,FRODO_IDE_DATA,FRODO_IDE_CTRL,NULL);
  115. hw.irq = FRODO_IDE_IRQ;
  116. ide_register_hw (&hw,NULL);
  117. #endif
  118. }
  119. }