blob: ab4f169d08373bf0f328e4ce68f07ccef20e8478 [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>
26
27#include <asm/amigahw.h>
28#include <asm/amigaints.h>
29
30
31 /*
32 * The Buddha has 2 IDE interfaces, the Catweasel has 3, X-Surf has 2
33 */
34
35#define BUDDHA_NUM_HWIFS 2
36#define CATWEASEL_NUM_HWIFS 3
37#define XSURF_NUM_HWIFS 2
38
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +020039#define MAX_NUM_HWIFS 3
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 /*
42 * Bases of the IDE interfaces (relative to the board address)
43 */
44
45#define BUDDHA_BASE1 0x800
46#define BUDDHA_BASE2 0xa00
47#define BUDDHA_BASE3 0xc00
48
49#define XSURF_BASE1 0xb000 /* 2.5" Interface */
50#define XSURF_BASE2 0xd000 /* 3.5" Interface */
51
52static u_int buddha_bases[CATWEASEL_NUM_HWIFS] __initdata = {
53 BUDDHA_BASE1, BUDDHA_BASE2, BUDDHA_BASE3
54};
55
56static u_int xsurf_bases[XSURF_NUM_HWIFS] __initdata = {
57 XSURF_BASE1, XSURF_BASE2
58};
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 /*
61 * Offsets from one of the above bases
62 */
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define BUDDHA_CONTROL 0x11a
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66 /*
67 * Other registers
68 */
69
70#define BUDDHA_IRQ1 0xf00 /* MSB = 1, Harddisk is source of */
71#define BUDDHA_IRQ2 0xf40 /* interrupt */
72#define BUDDHA_IRQ3 0xf80
73
74#define XSURF_IRQ1 0x7e
75#define XSURF_IRQ2 0x7e
76
77static int buddha_irqports[CATWEASEL_NUM_HWIFS] __initdata = {
78 BUDDHA_IRQ1, BUDDHA_IRQ2, BUDDHA_IRQ3
79};
80
81static int xsurf_irqports[XSURF_NUM_HWIFS] __initdata = {
82 XSURF_IRQ1, XSURF_IRQ2
83};
84
85#define BUDDHA_IRQ_MR 0xfc0 /* master interrupt enable */
86
87
88 /*
89 * Board information
90 */
91
92typedef enum BuddhaType_Enum {
93 BOARD_BUDDHA, BOARD_CATWEASEL, BOARD_XSURF
94} BuddhaType;
95
Bartlomiej Zolnierkiewiczc99c92c2008-01-26 20:13:09 +010096static const char *buddha_board_name[] = { "Buddha", "Catweasel", "X-Surf" };
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 /*
99 * Check and acknowledge the interrupt status
100 */
101
Sergei Shtylyovf4d3ffa2009-06-15 18:52:58 +0200102static int buddha_test_irq(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 unsigned char ch;
105
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200106 ch = z_readb(hwif->io_ports.irq_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 if (!(ch & 0x80))
108 return 0;
109 return 1;
110}
111
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200112static void xsurf_clear_irq(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200114 /*
115 * X-Surf needs 0 written to IRQ register to ensure ISA bit A11 stays at 0
116 */
117 z_writeb(0, drive->hwif->io_ports.irq_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
Bartlomiej Zolnierkiewicz9f36d312009-05-17 19:12:25 +0200120static void __init buddha_setup_ports(struct ide_hw *hw, unsigned long base,
Sergei Shtylyovf4d3ffa2009-06-15 18:52:58 +0200121 unsigned long ctl, unsigned long irq_port)
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100122{
123 int i;
124
125 memset(hw, 0, sizeof(*hw));
126
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200127 hw->io_ports.data_addr = base;
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100128
129 for (i = 1; i < 8; i++)
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200130 hw->io_ports_array[i] = base + 2 + i * 4;
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100131
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200132 hw->io_ports.ctl_addr = ctl;
133 hw->io_ports.irq_addr = irq_port;
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100134
135 hw->irq = IRQ_AMIGA_PORTS;
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100136}
137
Sergei Shtylyovf4d3ffa2009-06-15 18:52:58 +0200138static const struct ide_port_ops buddha_port_ops = {
139 .test_irq = buddha_test_irq,
140};
141
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200142static const struct ide_port_ops xsurf_port_ops = {
143 .clear_irq = xsurf_clear_irq,
Sergei Shtylyovf4d3ffa2009-06-15 18:52:58 +0200144 .test_irq = buddha_test_irq,
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200145};
146
Bartlomiej Zolnierkiewicz0e78a542009-03-27 12:46:18 +0100147static const struct ide_port_info buddha_port_info = {
Sergei Shtylyovf4d3ffa2009-06-15 18:52:58 +0200148 .port_ops = &buddha_port_ops,
Bartlomiej Zolnierkiewicz09a3e792009-03-27 12:46:23 +0100149 .host_flags = IDE_HFLAG_MMIO | IDE_HFLAG_NO_DMA,
Bartlomiej Zolnierkiewicz255115fb2009-03-27 12:46:27 +0100150 .irq_flags = IRQF_SHARED,
Bartlomiej Zolnierkiewicz29e52cf2009-05-17 19:12:22 +0200151 .chipset = ide_generic,
Bartlomiej Zolnierkiewicz0e78a542009-03-27 12:46:18 +0100152};
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 /*
155 * Probe for a Buddha or Catweasel IDE interface
156 */
157
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100158static int __init buddha_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 struct zorro_dev *z = NULL;
161 u_long buddha_board = 0;
162 BuddhaType type;
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200163 int buddha_num_hwifs, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 while ((z = zorro_find_device(ZORRO_WILDCARD, z))) {
166 unsigned long board;
Bartlomiej Zolnierkiewicz9f36d312009-05-17 19:12:25 +0200167 struct ide_hw hw[MAX_NUM_HWIFS], *hws[MAX_NUM_HWIFS];
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200168 struct ide_port_info d = buddha_port_info;
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +0100169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_BUDDHA) {
171 buddha_num_hwifs = BUDDHA_NUM_HWIFS;
172 type=BOARD_BUDDHA;
173 } else if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_CATWEASEL) {
174 buddha_num_hwifs = CATWEASEL_NUM_HWIFS;
175 type=BOARD_CATWEASEL;
176 } else if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_X_SURF) {
177 buddha_num_hwifs = XSURF_NUM_HWIFS;
178 type=BOARD_XSURF;
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200179 d.port_ops = &xsurf_port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 } else
181 continue;
182
183 board = z->resource.start;
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if(type != BOARD_XSURF) {
186 if (!request_mem_region(board+BUDDHA_BASE1, 0x800, "IDE"))
187 continue;
188 } else {
189 if (!request_mem_region(board+XSURF_BASE1, 0x1000, "IDE"))
190 continue;
191 if (!request_mem_region(board+XSURF_BASE2, 0x1000, "IDE"))
192 goto fail_base2;
193 if (!request_mem_region(board+XSURF_IRQ1, 0x8, "IDE")) {
194 release_mem_region(board+XSURF_BASE2, 0x1000);
195fail_base2:
196 release_mem_region(board+XSURF_BASE1, 0x1000);
197 continue;
198 }
199 }
200 buddha_board = ZTWO_VADDR(board);
201
202 /* write to BUDDHA_IRQ_MR to enable the board IRQ */
203 /* X-Surf doesn't have this. IRQs are always on */
204 if (type != BOARD_XSURF)
205 z_writeb(0, buddha_board+BUDDHA_IRQ_MR);
Bartlomiej Zolnierkiewiczc99c92c2008-01-26 20:13:09 +0100206
207 printk(KERN_INFO "ide: %s IDE controller\n",
208 buddha_board_name[type]);
209
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100210 for (i = 0; i < buddha_num_hwifs; i++) {
211 unsigned long base, ctl, irq_port;
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100212
213 if (type != BOARD_XSURF) {
214 base = buddha_board + buddha_bases[i];
215 ctl = base + BUDDHA_CONTROL;
216 irq_port = buddha_board + buddha_irqports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 } else {
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100218 base = buddha_board + xsurf_bases[i];
219 /* X-Surf has no CS1* (Control/AltStat) */
220 ctl = 0;
221 irq_port = buddha_board + xsurf_irqports[i];
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100222 }
223
Sergei Shtylyovf4d3ffa2009-06-15 18:52:58 +0200224 buddha_setup_ports(&hw[i], base, ctl, irq_port);
Bartlomiej Zolnierkiewiczfd9bb532007-10-20 00:32:31 +0200225
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200226 hws[i] = &hw[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +0100228
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200229 ide_host_add(&d, hws, i, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100231
232 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100234
235module_init(buddha_init);
Adrian Bunkc5daf1a2008-04-02 21:22:04 +0200236
237MODULE_LICENSE("GPL");