buddha.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. /*
  2. * Amiga Buddha, Catweasel and X-Surf IDE Driver
  3. *
  4. * Copyright (C) 1997, 2001 by Geert Uytterhoeven and others
  5. *
  6. * This driver was written based on the specifications in README.buddha and
  7. * the X-Surf info from Inside_XSurf.txt available at
  8. * http://www.jschoenfeld.com
  9. *
  10. * This file is subject to the terms and conditions of the GNU General Public
  11. * License. See the file COPYING in the main directory of this archive for
  12. * more details.
  13. *
  14. * TODO:
  15. * - test it :-)
  16. * - tune the timings using the speed-register
  17. */
  18. #include <linux/types.h>
  19. #include <linux/mm.h>
  20. #include <linux/interrupt.h>
  21. #include <linux/blkdev.h>
  22. #include <linux/zorro.h>
  23. #include <linux/ide.h>
  24. #include <linux/init.h>
  25. #include <asm/amigahw.h>
  26. #include <asm/amigaints.h>
  27. /*
  28. * The Buddha has 2 IDE interfaces, the Catweasel has 3, X-Surf has 2
  29. */
  30. #define BUDDHA_NUM_HWIFS 2
  31. #define CATWEASEL_NUM_HWIFS 3
  32. #define XSURF_NUM_HWIFS 2
  33. #define MAX_NUM_HWIFS 3
  34. /*
  35. * Bases of the IDE interfaces (relative to the board address)
  36. */
  37. #define BUDDHA_BASE1 0x800
  38. #define BUDDHA_BASE2 0xa00
  39. #define BUDDHA_BASE3 0xc00
  40. #define XSURF_BASE1 0xb000 /* 2.5" Interface */
  41. #define XSURF_BASE2 0xd000 /* 3.5" Interface */
  42. static u_int buddha_bases[CATWEASEL_NUM_HWIFS] __initdata = {
  43. BUDDHA_BASE1, BUDDHA_BASE2, BUDDHA_BASE3
  44. };
  45. static u_int xsurf_bases[XSURF_NUM_HWIFS] __initdata = {
  46. XSURF_BASE1, XSURF_BASE2
  47. };
  48. /*
  49. * Offsets from one of the above bases
  50. */
  51. #define BUDDHA_CONTROL 0x11a
  52. /*
  53. * Other registers
  54. */
  55. #define BUDDHA_IRQ1 0xf00 /* MSB = 1, Harddisk is source of */
  56. #define BUDDHA_IRQ2 0xf40 /* interrupt */
  57. #define BUDDHA_IRQ3 0xf80
  58. #define XSURF_IRQ1 0x7e
  59. #define XSURF_IRQ2 0x7e
  60. static int buddha_irqports[CATWEASEL_NUM_HWIFS] __initdata = {
  61. BUDDHA_IRQ1, BUDDHA_IRQ2, BUDDHA_IRQ3
  62. };
  63. static int xsurf_irqports[XSURF_NUM_HWIFS] __initdata = {
  64. XSURF_IRQ1, XSURF_IRQ2
  65. };
  66. #define BUDDHA_IRQ_MR 0xfc0 /* master interrupt enable */
  67. /*
  68. * Board information
  69. */
  70. typedef enum BuddhaType_Enum {
  71. BOARD_BUDDHA, BOARD_CATWEASEL, BOARD_XSURF
  72. } BuddhaType;
  73. static const char *buddha_board_name[] = { "Buddha", "Catweasel", "X-Surf" };
  74. /*
  75. * Check and acknowledge the interrupt status
  76. */
  77. static int buddha_test_irq(ide_hwif_t *hwif)
  78. {
  79. unsigned char ch;
  80. ch = z_readb(hwif->io_ports.irq_addr);
  81. if (!(ch & 0x80))
  82. return 0;
  83. return 1;
  84. }
  85. static void xsurf_clear_irq(ide_drive_t *drive)
  86. {
  87. /*
  88. * X-Surf needs 0 written to IRQ register to ensure ISA bit A11 stays at 0
  89. */
  90. z_writeb(0, drive->hwif->io_ports.irq_addr);
  91. }
  92. static void __init buddha_setup_ports(struct ide_hw *hw, unsigned long base,
  93. unsigned long ctl, unsigned long irq_port)
  94. {
  95. int i;
  96. memset(hw, 0, sizeof(*hw));
  97. hw->io_ports.data_addr = base;
  98. for (i = 1; i < 8; i++)
  99. hw->io_ports_array[i] = base + 2 + i * 4;
  100. hw->io_ports.ctl_addr = ctl;
  101. hw->io_ports.irq_addr = irq_port;
  102. hw->irq = IRQ_AMIGA_PORTS;
  103. }
  104. static const struct ide_port_ops buddha_port_ops = {
  105. .test_irq = buddha_test_irq,
  106. };
  107. static const struct ide_port_ops xsurf_port_ops = {
  108. .clear_irq = xsurf_clear_irq,
  109. .test_irq = buddha_test_irq,
  110. };
  111. static const struct ide_port_info buddha_port_info = {
  112. .port_ops = &buddha_port_ops,
  113. .host_flags = IDE_HFLAG_MMIO | IDE_HFLAG_NO_DMA,
  114. .irq_flags = IRQF_SHARED,
  115. .chipset = ide_generic,
  116. };
  117. /*
  118. * Probe for a Buddha or Catweasel IDE interface
  119. */
  120. static int __init buddha_init(void)
  121. {
  122. struct zorro_dev *z = NULL;
  123. u_long buddha_board = 0;
  124. BuddhaType type;
  125. int buddha_num_hwifs, i;
  126. while ((z = zorro_find_device(ZORRO_WILDCARD, z))) {
  127. unsigned long board;
  128. struct ide_hw hw[MAX_NUM_HWIFS], *hws[MAX_NUM_HWIFS];
  129. struct ide_port_info d = buddha_port_info;
  130. if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_BUDDHA) {
  131. buddha_num_hwifs = BUDDHA_NUM_HWIFS;
  132. type=BOARD_BUDDHA;
  133. } else if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_CATWEASEL) {
  134. buddha_num_hwifs = CATWEASEL_NUM_HWIFS;
  135. type=BOARD_CATWEASEL;
  136. } else if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_X_SURF) {
  137. buddha_num_hwifs = XSURF_NUM_HWIFS;
  138. type=BOARD_XSURF;
  139. d.port_ops = &xsurf_port_ops;
  140. } else
  141. continue;
  142. board = z->resource.start;
  143. if(type != BOARD_XSURF) {
  144. if (!request_mem_region(board+BUDDHA_BASE1, 0x800, "IDE"))
  145. continue;
  146. } else {
  147. if (!request_mem_region(board+XSURF_BASE1, 0x1000, "IDE"))
  148. continue;
  149. if (!request_mem_region(board+XSURF_BASE2, 0x1000, "IDE"))
  150. goto fail_base2;
  151. if (!request_mem_region(board+XSURF_IRQ1, 0x8, "IDE")) {
  152. release_mem_region(board+XSURF_BASE2, 0x1000);
  153. fail_base2:
  154. release_mem_region(board+XSURF_BASE1, 0x1000);
  155. continue;
  156. }
  157. }
  158. buddha_board = ZTWO_VADDR(board);
  159. /* write to BUDDHA_IRQ_MR to enable the board IRQ */
  160. /* X-Surf doesn't have this. IRQs are always on */
  161. if (type != BOARD_XSURF)
  162. z_writeb(0, buddha_board+BUDDHA_IRQ_MR);
  163. printk(KERN_INFO "ide: %s IDE controller\n",
  164. buddha_board_name[type]);
  165. for (i = 0; i < buddha_num_hwifs; i++) {
  166. unsigned long base, ctl, irq_port;
  167. if (type != BOARD_XSURF) {
  168. base = buddha_board + buddha_bases[i];
  169. ctl = base + BUDDHA_CONTROL;
  170. irq_port = buddha_board + buddha_irqports[i];
  171. } else {
  172. base = buddha_board + xsurf_bases[i];
  173. /* X-Surf has no CS1* (Control/AltStat) */
  174. ctl = 0;
  175. irq_port = buddha_board + xsurf_irqports[i];
  176. }
  177. buddha_setup_ports(&hw[i], base, ctl, irq_port);
  178. hws[i] = &hw[i];
  179. }
  180. ide_host_add(&d, hws, i, NULL);
  181. }
  182. return 0;
  183. }
  184. module_init(buddha_init);
  185. MODULE_LICENSE("GPL");