Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | /* * linux/drivers/block/buddha.c -- Amiga Buddha and Catweasel IDE Driver * * Copyright (C) 1997 by Geert Uytterhoeven * * This driver was written by based on the specifications in README.buddha. * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of this archive for * more details. * * TODO: * - test it :-) * - tune the timings using the speed-register */ #include <linux/types.h> #include <linux/mm.h> #include <linux/interrupt.h> #include <linux/blkdev.h> #include <linux/hdreg.h> #include <linux/zorro.h> #include "ide.h" #include <asm/amigahw.h> #include <asm/amigaints.h> /* * The Buddha has 2 IDE interfaces, the Catweasel has 3 */ #define BUDDHA_NUM_HWIFS 2 #define CATWEASEL_NUM_HWIFS 3 /* * Bases of the IDE interfaces (relative to the board address) */ #define BUDDHA_BASE1 0x800 #define BUDDHA_BASE2 0xa00 #define BUDDHA_BASE3 0xc00 static const u_int buddha_bases[CATWEASEL_NUM_HWIFS] = { BUDDHA_BASE1, BUDDHA_BASE2, BUDDHA_BASE3 }; /* * Offsets from one of the above bases */ #define BUDDHA_DATA 0x00 #define BUDDHA_ERROR 0x06 /* see err-bits */ #define BUDDHA_NSECTOR 0x0a /* nr of sectors to read/write */ #define BUDDHA_SECTOR 0x0e /* starting sector */ #define BUDDHA_LCYL 0x12 /* starting cylinder */ #define BUDDHA_HCYL 0x16 /* high byte of starting cyl */ #define BUDDHA_SELECT 0x1a /* 101dhhhh , d=drive, hhhh=head */ #define BUDDHA_STATUS 0x1e /* see status-bits */ #define BUDDHA_CONTROL 0x11a static const u_int buddha_offsets[IDE_NR_PORTS] = { BUDDHA_DATA, BUDDHA_ERROR, BUDDHA_NSECTOR, BUDDHA_SECTOR, BUDDHA_LCYL, BUDDHA_HCYL, BUDDHA_SELECT, BUDDHA_STATUS, BUDDHA_CONTROL }; /* * Other registers */ #define BUDDHA_IRQ1 0xf00 /* MSB = 1, Harddisk is source of */ #define BUDDHA_IRQ2 0xf40 /* interrupt */ #define BUDDHA_IRQ3 0xf80 static const int buddha_irqports[CATWEASEL_NUM_HWIFS] = { BUDDHA_IRQ1, BUDDHA_IRQ2, BUDDHA_IRQ3 }; #define BUDDHA_IRQ_MR 0xfc0 /* master interrupt enable */ /* * Board information */ static u_long buddha_board = 0; static int buddha_num_hwifs = -1; /* * Check and acknowledge the interrupt status */ static int buddha_ack_intr(ide_hwif_t *hwif) { unsigned char ch; ch = inb(hwif->io_ports[IDE_IRQ_OFFSET]); if (!(ch & 0x80)) return 0; return 1; } /* * Any Buddha or Catweasel boards present? */ static int find_buddha(void) { u_int key; const struct ConfigDev *cd; buddha_num_hwifs = 0; if ((key = zorro_find(ZORRO_PROD_INDIVIDUAL_COMPUTERS_BUDDHA, 0, 0))) buddha_num_hwifs = BUDDHA_NUM_HWIFS; else if ((key = zorro_find(ZORRO_PROD_INDIVIDUAL_COMPUTERS_CATWEASEL, 0, 0))) buddha_num_hwifs = CATWEASEL_NUM_HWIFS; if (key) { cd = zorro_get_board(key); buddha_board = (u_long)cd->cd_BoardAddr; if (buddha_board) { buddha_board = ZTWO_VADDR(buddha_board); /* write to BUDDHA_IRQ_MR to enable the board IRQ */ *(char *)(buddha_board+BUDDHA_IRQ_MR) = 0; zorro_config_board(key, 0); } } return buddha_num_hwifs; } /* * Probe for a Buddha or Catweasel IDE interface * We support only _one_ of them, no multiple boards! */ int buddha_probe_hwif(int index, ide_hwif_t *hwif) { static int buddha_index[CATWEASEL_NUM_HWIFS] = { 0, }; int i; if (buddha_num_hwifs < 0 && !find_buddha()) return 0; for (i = 0; i < buddha_num_hwifs; i++) { if (!buddha_index[i]) { printk("ide%d: %s IDE interface\n", index, buddha_num_hwifs == BUDDHA_NUM_HWIFS ? "Buddha" : "Catweasel"); buddha_index[i] = index+1; } if (buddha_index[i] == index+1) { ide_setup_ports(hwif, (ide_ioreg_t)(buddha_board+buddha_bases[i]), buddha_offsets, (ide_ioreg_t)(buddha_board+buddha_irqports[i]), buddha_ack_intr); hwif->irq = IRQ_AMIGA_PORTS; return 1; } } return 0; } |