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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/ide/buddha.c -- Amiga Buddha, Catweasel and X-Surf IDE Driver
  3.  *
  4.  * Copyright (C) 1997 by Geert Uytterhoeven
  5.  *
  6.  *  This driver was written by 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 const 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 const 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. enum BuddhaType_Enum {BOARD_BUDDHA, BOARD_CATWEASEL, BOARD_XSURF};
  88. typedef enum BuddhaType_Enum BuddhaType;
  89.     /*
  90.      *  Check and acknowledge the interrupt status
  91.      */
  92. static int buddha_ack_intr(ide_hwif_t *hwif)
  93. {
  94.     unsigned char ch;
  95.     ch = z_readb(hwif->io_ports[IDE_IRQ_OFFSET]);
  96.     if (!(ch & 0x80))
  97.     return 0;
  98.     return 1;
  99. }
  100. static int xsurf_ack_intr(ide_hwif_t *hwif)
  101. {
  102.     unsigned char ch;
  103.     ch = z_readb(hwif->io_ports[IDE_IRQ_OFFSET]);
  104.     /* X-Surf needs a 0 written to IRQ register to ensure ISA bit A11 stays at 0 */
  105.     z_writeb(0, hwif->io_ports[IDE_IRQ_OFFSET]); 
  106.     if (!(ch & 0x80))
  107.     return 0;
  108.     return 1;
  109. }
  110.     /*
  111.      *  Probe for a Buddha or Catweasel IDE interface
  112.      */
  113. void __init buddha_init(void)
  114. {
  115. hw_regs_t hw;
  116. int i, index;
  117. struct zorro_dev *z = NULL;
  118. u_long buddha_board = 0;
  119. BuddhaType type;
  120. int buddha_num_hwifs;
  121. while ((z = zorro_find_device(ZORRO_WILDCARD, z))) {
  122. unsigned long board;
  123. if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_BUDDHA) {
  124. buddha_num_hwifs = BUDDHA_NUM_HWIFS;
  125. type=BOARD_BUDDHA;
  126. } else if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_CATWEASEL) {
  127. buddha_num_hwifs = CATWEASEL_NUM_HWIFS;
  128. type=BOARD_CATWEASEL;
  129. } else if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_X_SURF) {
  130. buddha_num_hwifs = XSURF_NUM_HWIFS;
  131. type=BOARD_XSURF;
  132. } else 
  133. continue;
  134. board = z->resource.start;
  135. if(type != BOARD_XSURF) {
  136. if (!request_mem_region(board+BUDDHA_BASE1, 0x800, "IDE"))
  137. continue;
  138. } else {
  139. if (!request_mem_region(board+XSURF_BASE1, 0x1000, "IDE"))
  140. continue;
  141. if (!request_mem_region(board+XSURF_BASE2, 0x1000, "IDE"))
  142. continue;
  143. if (!request_mem_region(board+XSURF_IRQ1, 0x8, "IDE"))
  144. continue;
  145. }   
  146. buddha_board = ZTWO_VADDR(board);
  147. /* write to BUDDHA_IRQ_MR to enable the board IRQ */
  148. /* X-Surf doesn't have this.  IRQs are always on */
  149. if(type != BOARD_XSURF) *(char *)(buddha_board+BUDDHA_IRQ_MR) = 0;
  150. for(i=0;i<buddha_num_hwifs;i++) {
  151. if(type != BOARD_XSURF) {
  152. ide_setup_ports(&hw, (ide_ioreg_t)(buddha_board+buddha_bases[i]),
  153. buddha_offsets, 0,
  154. (ide_ioreg_t)(buddha_board+buddha_irqports[i]),
  155. buddha_ack_intr, IRQ_AMIGA_PORTS);
  156. } else {
  157. ide_setup_ports(&hw, (ide_ioreg_t)(buddha_board+xsurf_bases[i]),
  158. xsurf_offsets, 0,
  159. (ide_ioreg_t)(buddha_board+xsurf_irqports[i]),
  160. xsurf_ack_intr, IRQ_AMIGA_PORTS);
  161. }
  162. index = ide_register_hw(&hw, NULL);
  163. if (index != -1) {
  164. printk("ide%d: ", index);
  165. switch(type) {
  166. case BOARD_BUDDHA:
  167. printk("Buddha");
  168. break;
  169. case BOARD_CATWEASEL:
  170. printk("Catweasel");
  171. break;
  172. case BOARD_XSURF:
  173. printk("X-Surf");
  174. break;
  175. }
  176. printk(" IDE interfacen");     
  177. }       
  178. }
  179. }
  180. }