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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/ide/buddha.c -- 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/hdreg.h>
  23. #include <linux/zorro.h>
  24. #include <linux/ide.h>
  25. #include <linux/init.h>
  26. #include <asm/amigahw.h>
  27. #include <asm/amigaints.h>
  28.     /*
  29.      *  The Buddha has 2 IDE interfaces, the Catweasel has 3, X-Surf has 2
  30.      */
  31. #define BUDDHA_NUM_HWIFS 2
  32. #define CATWEASEL_NUM_HWIFS 3
  33. #define XSURF_NUM_HWIFS         2
  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_DATA 0x00
  52. #define BUDDHA_ERROR 0x06 /* see err-bits */
  53. #define BUDDHA_NSECTOR 0x0a /* nr of sectors to read/write */
  54. #define BUDDHA_SECTOR 0x0e /* starting sector */
  55. #define BUDDHA_LCYL 0x12 /* starting cylinder */
  56. #define BUDDHA_HCYL 0x16 /* high byte of starting cyl */
  57. #define BUDDHA_SELECT 0x1a /* 101dhhhh , d=drive, hhhh=head */
  58. #define BUDDHA_STATUS 0x1e /* see status-bits */
  59. #define BUDDHA_CONTROL 0x11a
  60. #define XSURF_CONTROL   -1              /* X-Surf has no CS1* (Control/AltStat) */
  61. static int buddha_offsets[IDE_NR_PORTS] __initdata = {
  62.     BUDDHA_DATA, BUDDHA_ERROR, BUDDHA_NSECTOR, BUDDHA_SECTOR, BUDDHA_LCYL,
  63.     BUDDHA_HCYL, BUDDHA_SELECT, BUDDHA_STATUS, BUDDHA_CONTROL, -1
  64. };
  65. static int xsurf_offsets[IDE_NR_PORTS] __initdata = {
  66.     BUDDHA_DATA, BUDDHA_ERROR, BUDDHA_NSECTOR, BUDDHA_SECTOR, BUDDHA_LCYL,
  67.     BUDDHA_HCYL, BUDDHA_SELECT, BUDDHA_STATUS, XSURF_CONTROL, -1
  68. };
  69.     /*
  70.      *  Other registers
  71.      */
  72. #define BUDDHA_IRQ1 0xf00 /* MSB = 1, Harddisk is source of */
  73. #define BUDDHA_IRQ2 0xf40 /* interrupt */
  74. #define BUDDHA_IRQ3 0xf80
  75. #define XSURF_IRQ1      0x7e
  76. #define XSURF_IRQ2      0x7e
  77. static int buddha_irqports[CATWEASEL_NUM_HWIFS] __initdata = {
  78.     BUDDHA_IRQ1, BUDDHA_IRQ2, BUDDHA_IRQ3
  79. };
  80. static int xsurf_irqports[XSURF_NUM_HWIFS] __initdata = {
  81.     XSURF_IRQ1, XSURF_IRQ2
  82. };
  83. #define BUDDHA_IRQ_MR 0xfc0 /* master interrupt enable */
  84.     /*
  85.      *  Board information
  86.      */
  87. typedef enum BuddhaType_Enum {
  88.     BOARD_BUDDHA, BOARD_CATWEASEL, BOARD_XSURF
  89. } BuddhaType;
  90.     /*
  91.      *  Check and acknowledge the interrupt status
  92.      */
  93. static int buddha_ack_intr(ide_hwif_t *hwif)
  94. {
  95.     unsigned char ch;
  96.     ch = z_readb(hwif->io_ports[IDE_IRQ_OFFSET]);
  97.     if (!(ch & 0x80))
  98.     return 0;
  99.     return 1;
  100. }
  101. static int xsurf_ack_intr(ide_hwif_t *hwif)
  102. {
  103.     unsigned char ch;
  104.     ch = z_readb(hwif->io_ports[IDE_IRQ_OFFSET]);
  105.     /* X-Surf needs a 0 written to IRQ register to ensure ISA bit A11 stays at 0 */
  106.     z_writeb(0, hwif->io_ports[IDE_IRQ_OFFSET]); 
  107.     if (!(ch & 0x80))
  108.     return 0;
  109.     return 1;
  110. }
  111.     /*
  112.      *  Probe for a Buddha or Catweasel IDE interface
  113.      */
  114. void __init buddha_init(void)
  115. {
  116. hw_regs_t hw;
  117. int i, index;
  118. struct zorro_dev *z = NULL;
  119. u_long buddha_board = 0;
  120. BuddhaType type;
  121. int buddha_num_hwifs;
  122. while ((z = zorro_find_device(ZORRO_WILDCARD, z))) {
  123. unsigned long board;
  124. if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_BUDDHA) {
  125. buddha_num_hwifs = BUDDHA_NUM_HWIFS;
  126. type=BOARD_BUDDHA;
  127. } else if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_CATWEASEL) {
  128. buddha_num_hwifs = CATWEASEL_NUM_HWIFS;
  129. type=BOARD_CATWEASEL;
  130. } else if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_X_SURF) {
  131. buddha_num_hwifs = XSURF_NUM_HWIFS;
  132. type=BOARD_XSURF;
  133. } else 
  134. continue;
  135. board = z->resource.start;
  136. if(type != BOARD_XSURF) {
  137. if (!request_mem_region(board+BUDDHA_BASE1, 0x800, "IDE"))
  138. continue;
  139. } else {
  140. if (!request_mem_region(board+XSURF_BASE1, 0x1000, "IDE"))
  141. continue;
  142. if (!request_mem_region(board+XSURF_BASE2, 0x1000, "IDE"))
  143. goto fail_base2;
  144. if (!request_mem_region(board+XSURF_IRQ1, 0x8, "IDE")) {
  145. release_mem_region(board+XSURF_BASE2, 0x1000);
  146. fail_base2:
  147. release_mem_region(board+XSURF_BASE1, 0x1000);
  148. continue;
  149. }
  150. }   
  151. buddha_board = ZTWO_VADDR(board);
  152. /* write to BUDDHA_IRQ_MR to enable the board IRQ */
  153. /* X-Surf doesn't have this.  IRQs are always on */
  154. if (type != BOARD_XSURF)
  155. z_writeb(0, buddha_board+BUDDHA_IRQ_MR);
  156. for(i=0;i<buddha_num_hwifs;i++) {
  157. if(type != BOARD_XSURF) {
  158. ide_setup_ports(&hw, (ide_ioreg_t)(buddha_board+buddha_bases[i]),
  159. buddha_offsets, 0,
  160. (ide_ioreg_t)(buddha_board+buddha_irqports[i]),
  161. buddha_ack_intr, IRQ_AMIGA_PORTS);
  162. } else {
  163. ide_setup_ports(&hw, (ide_ioreg_t)(buddha_board+xsurf_bases[i]),
  164. xsurf_offsets, 0,
  165. (ide_ioreg_t)(buddha_board+xsurf_irqports[i]),
  166. xsurf_ack_intr, IRQ_AMIGA_PORTS);
  167. }
  168. index = ide_register_hw(&hw, NULL);
  169. if (index != -1) {
  170. printk("ide%d: ", index);
  171. switch(type) {
  172. case BOARD_BUDDHA:
  173. printk("Buddha");
  174. break;
  175. case BOARD_CATWEASEL:
  176. printk("Catweasel");
  177. break;
  178. case BOARD_XSURF:
  179. printk("X-Surf");
  180. break;
  181. }
  182. printk(" IDE interfacen");     
  183. }       
  184. }
  185. }
  186. }