blob: 46eaf58d881b4e31032327e7c248979d693d9c11 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Bartlomiej Zolnierkiewicz58f189f2008-02-01 23:09:33 +01002 * Amiga Buddha, Catweasel and X-Surf IDE Driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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
19#include <linux/types.h>
20#include <linux/mm.h>
21#include <linux/interrupt.h>
22#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/zorro.h>
24#include <linux/ide.h>
25#include <linux/init.h>
Paul Gortmakerbff78322011-07-03 13:41:29 -040026#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include <asm/amigahw.h>
29#include <asm/amigaints.h>
30
31
32 /*
33 * The Buddha has 2 IDE interfaces, the Catweasel has 3, X-Surf has 2
34 */
35
36#define BUDDHA_NUM_HWIFS 2
37#define CATWEASEL_NUM_HWIFS 3
38#define XSURF_NUM_HWIFS 2
39
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +020040#define MAX_NUM_HWIFS 3
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 /*
43 * Bases of the IDE interfaces (relative to the board address)
44 */
45
46#define BUDDHA_BASE1 0x800
47#define BUDDHA_BASE2 0xa00
48#define BUDDHA_BASE3 0xc00
49
50#define XSURF_BASE1 0xb000 /* 2.5" Interface */
51#define XSURF_BASE2 0xd000 /* 3.5" Interface */
52
53static u_int buddha_bases[CATWEASEL_NUM_HWIFS] __initdata = {
54 BUDDHA_BASE1, BUDDHA_BASE2, BUDDHA_BASE3
55};
56
57static u_int xsurf_bases[XSURF_NUM_HWIFS] __initdata = {
58 XSURF_BASE1, XSURF_BASE2
59};
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 /*
62 * Offsets from one of the above bases
63 */
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define BUDDHA_CONTROL 0x11a
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 /*
68 * Other registers
69 */
70
71#define BUDDHA_IRQ1 0xf00 /* MSB = 1, Harddisk is source of */
72#define BUDDHA_IRQ2 0xf40 /* interrupt */
73#define BUDDHA_IRQ3 0xf80
74
75#define XSURF_IRQ1 0x7e
76#define XSURF_IRQ2 0x7e
77
78static int buddha_irqports[CATWEASEL_NUM_HWIFS] __initdata = {
79 BUDDHA_IRQ1, BUDDHA_IRQ2, BUDDHA_IRQ3
80};
81
82static int xsurf_irqports[XSURF_NUM_HWIFS] __initdata = {
83 XSURF_IRQ1, XSURF_IRQ2
84};
85
86#define BUDDHA_IRQ_MR 0xfc0 /* master interrupt enable */
87
88
89 /*
90 * Board information
91 */
92
93typedef enum BuddhaType_Enum {
94 BOARD_BUDDHA, BOARD_CATWEASEL, BOARD_XSURF
95} BuddhaType;
96
Bartlomiej Zolnierkiewiczc99c92c2008-01-26 20:13:09 +010097static const char *buddha_board_name[] = { "Buddha", "Catweasel", "X-Surf" };
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 /*
100 * Check and acknowledge the interrupt status
101 */
102
Sergei Shtylyovf4d3ffa2009-06-15 18:52:58 +0200103static int buddha_test_irq(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
105 unsigned char ch;
106
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200107 ch = z_readb(hwif->io_ports.irq_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 if (!(ch & 0x80))
109 return 0;
110 return 1;
111}
112
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200113static void xsurf_clear_irq(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200115 /*
116 * X-Surf needs 0 written to IRQ register to ensure ISA bit A11 stays at 0
117 */
118 z_writeb(0, drive->hwif->io_ports.irq_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Bartlomiej Zolnierkiewicz9f36d312009-05-17 19:12:25 +0200121static void __init buddha_setup_ports(struct ide_hw *hw, unsigned long base,
Sergei Shtylyovf4d3ffa2009-06-15 18:52:58 +0200122 unsigned long ctl, unsigned long irq_port)
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100123{
124 int i;
125
126 memset(hw, 0, sizeof(*hw));
127
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200128 hw->io_ports.data_addr = base;
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100129
130 for (i = 1; i < 8; i++)
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200131 hw->io_ports_array[i] = base + 2 + i * 4;
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100132
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200133 hw->io_ports.ctl_addr = ctl;
134 hw->io_ports.irq_addr = irq_port;
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100135
136 hw->irq = IRQ_AMIGA_PORTS;
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100137}
138
Sergei Shtylyovf4d3ffa2009-06-15 18:52:58 +0200139static const struct ide_port_ops buddha_port_ops = {
140 .test_irq = buddha_test_irq,
141};
142
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200143static const struct ide_port_ops xsurf_port_ops = {
144 .clear_irq = xsurf_clear_irq,
Sergei Shtylyovf4d3ffa2009-06-15 18:52:58 +0200145 .test_irq = buddha_test_irq,
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200146};
147
Bartlomiej Zolnierkiewicz0e78a542009-03-27 12:46:18 +0100148static const struct ide_port_info buddha_port_info = {
Sergei Shtylyovf4d3ffa2009-06-15 18:52:58 +0200149 .port_ops = &buddha_port_ops,
Bartlomiej Zolnierkiewicz09a3e792009-03-27 12:46:23 +0100150 .host_flags = IDE_HFLAG_MMIO | IDE_HFLAG_NO_DMA,
Bartlomiej Zolnierkiewicz255115fb2009-03-27 12:46:27 +0100151 .irq_flags = IRQF_SHARED,
Bartlomiej Zolnierkiewicz29e52cf2009-05-17 19:12:22 +0200152 .chipset = ide_generic,
Bartlomiej Zolnierkiewicz0e78a542009-03-27 12:46:18 +0100153};
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 /*
156 * Probe for a Buddha or Catweasel IDE interface
157 */
158
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100159static int __init buddha_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 struct zorro_dev *z = NULL;
162 u_long buddha_board = 0;
163 BuddhaType type;
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200164 int buddha_num_hwifs, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 while ((z = zorro_find_device(ZORRO_WILDCARD, z))) {
167 unsigned long board;
Bartlomiej Zolnierkiewicz9f36d312009-05-17 19:12:25 +0200168 struct ide_hw hw[MAX_NUM_HWIFS], *hws[MAX_NUM_HWIFS];
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200169 struct ide_port_info d = buddha_port_info;
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +0100170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_BUDDHA) {
172 buddha_num_hwifs = BUDDHA_NUM_HWIFS;
173 type=BOARD_BUDDHA;
174 } else if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_CATWEASEL) {
175 buddha_num_hwifs = CATWEASEL_NUM_HWIFS;
176 type=BOARD_CATWEASEL;
177 } else if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_X_SURF) {
178 buddha_num_hwifs = XSURF_NUM_HWIFS;
179 type=BOARD_XSURF;
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200180 d.port_ops = &xsurf_port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 } else
182 continue;
183
184 board = z->resource.start;
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if(type != BOARD_XSURF) {
187 if (!request_mem_region(board+BUDDHA_BASE1, 0x800, "IDE"))
188 continue;
189 } else {
190 if (!request_mem_region(board+XSURF_BASE1, 0x1000, "IDE"))
191 continue;
192 if (!request_mem_region(board+XSURF_BASE2, 0x1000, "IDE"))
193 goto fail_base2;
194 if (!request_mem_region(board+XSURF_IRQ1, 0x8, "IDE")) {
195 release_mem_region(board+XSURF_BASE2, 0x1000);
196fail_base2:
197 release_mem_region(board+XSURF_BASE1, 0x1000);
198 continue;
199 }
200 }
Geert Uytterhoeven6112ea02011-01-09 11:03:43 +0100201 buddha_board = (unsigned long)ZTWO_VADDR(board);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 /* write to BUDDHA_IRQ_MR to enable the board IRQ */
204 /* X-Surf doesn't have this. IRQs are always on */
205 if (type != BOARD_XSURF)
206 z_writeb(0, buddha_board+BUDDHA_IRQ_MR);
Bartlomiej Zolnierkiewiczc99c92c2008-01-26 20:13:09 +0100207
208 printk(KERN_INFO "ide: %s IDE controller\n",
209 buddha_board_name[type]);
210
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100211 for (i = 0; i < buddha_num_hwifs; i++) {
212 unsigned long base, ctl, irq_port;
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100213
214 if (type != BOARD_XSURF) {
215 base = buddha_board + buddha_bases[i];
216 ctl = base + BUDDHA_CONTROL;
217 irq_port = buddha_board + buddha_irqports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 } else {
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100219 base = buddha_board + xsurf_bases[i];
220 /* X-Surf has no CS1* (Control/AltStat) */
221 ctl = 0;
222 irq_port = buddha_board + xsurf_irqports[i];
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100223 }
224
Sergei Shtylyovf4d3ffa2009-06-15 18:52:58 +0200225 buddha_setup_ports(&hw[i], base, ctl, irq_port);
Bartlomiej Zolnierkiewiczfd9bb532007-10-20 00:32:31 +0200226
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200227 hws[i] = &hw[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +0100229
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200230 ide_host_add(&d, hws, i, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100232
233 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100235
236module_init(buddha_init);
Adrian Bunkc5daf1a2008-04-02 21:22:04 +0200237
238MODULE_LICENSE("GPL");