blob: fed7d812761c4e9b9ba46b1c1bfbb26648cfac20 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Bartlomiej Zolnierkiewicz58f189f2008-02-01 23:09:33 +01002 * Amiga Gayle IDE Driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Created 9 Jul 1997 by Geert Uytterhoeven
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file COPYING in the main directory of this archive for
8 * more details.
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/types.h>
12#include <linux/mm.h>
13#include <linux/interrupt.h>
14#include <linux/blkdev.h>
15#include <linux/hdreg.h>
16#include <linux/ide.h>
17#include <linux/init.h>
18#include <linux/zorro.h>
Adrian Bunk513f3c12008-06-10 20:56:38 +020019#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <asm/setup.h>
22#include <asm/amigahw.h>
23#include <asm/amigaints.h>
24#include <asm/amigayle.h>
25
26
27 /*
28 * Bases of the IDE interfaces
29 */
30
31#define GAYLE_BASE_4000 0xdd2020 /* A4000/A4000T */
32#define GAYLE_BASE_1200 0xda0000 /* A1200/A600 and E-Matrix 530 */
33
34 /*
35 * Offsets from one of the above bases
36 */
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#define GAYLE_CONTROL 0x101a
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 /*
41 * These are at different offsets from the base
42 */
43
44#define GAYLE_IRQ_4000 0xdd3020 /* MSB = 1, Harddisk is source of */
45#define GAYLE_IRQ_1200 0xda9000 /* interrupt */
46
47
48 /*
49 * Offset of the secondary port for IDE doublers
50 * Note that GAYLE_CONTROL is NOT available then!
51 */
52
53#define GAYLE_NEXT_PORT 0x1000
54
55#ifndef CONFIG_BLK_DEV_IDEDOUBLER
56#define GAYLE_NUM_HWIFS 1
57#define GAYLE_NUM_PROBE_HWIFS GAYLE_NUM_HWIFS
58#define GAYLE_HAS_CONTROL_REG 1
59#define GAYLE_IDEREG_SIZE 0x2000
60#else /* CONFIG_BLK_DEV_IDEDOUBLER */
61#define GAYLE_NUM_HWIFS 2
62#define GAYLE_NUM_PROBE_HWIFS (ide_doubler ? GAYLE_NUM_HWIFS : \
63 GAYLE_NUM_HWIFS-1)
64#define GAYLE_HAS_CONTROL_REG (!ide_doubler)
65#define GAYLE_IDEREG_SIZE (ide_doubler ? 0x1000 : 0x2000)
Adrian Bunk513f3c12008-06-10 20:56:38 +020066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067int ide_doubler = 0; /* support IDE doublers? */
Adrian Bunk513f3c12008-06-10 20:56:38 +020068EXPORT_SYMBOL_GPL(ide_doubler);
69
Bartlomiej Zolnierkiewicz9dcba7f2008-04-27 15:38:30 +020070module_param_named(doubler, ide_doubler, bool, 0);
71MODULE_PARM_DESC(doubler, "enable support for IDE doublers");
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#endif /* CONFIG_BLK_DEV_IDEDOUBLER */
73
74
75 /*
76 * Check and acknowledge the interrupt status
77 */
78
79static int gayle_ack_intr_a4000(ide_hwif_t *hwif)
80{
81 unsigned char ch;
82
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +020083 ch = z_readb(hwif->io_ports.irq_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (!(ch & GAYLE_IRQ_IDE))
85 return 0;
86 return 1;
87}
88
89static int gayle_ack_intr_a1200(ide_hwif_t *hwif)
90{
91 unsigned char ch;
92
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +020093 ch = z_readb(hwif->io_ports.irq_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 if (!(ch & GAYLE_IRQ_IDE))
95 return 0;
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +020096 (void)z_readb(hwif->io_ports.status_addr);
97 z_writeb(0x7c, hwif->io_ports.irq_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 return 1;
99}
100
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100101static void __init gayle_setup_ports(hw_regs_t *hw, unsigned long base,
102 unsigned long ctl, unsigned long irq_port,
Adrian Bunk56efa7b2008-02-11 00:32:14 +0100103 ide_ack_intr_t *ack_intr)
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100104{
105 int i;
106
107 memset(hw, 0, sizeof(*hw));
108
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200109 hw->io_ports.data_addr = base;
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100110
111 for (i = 1; i < 8; i++)
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200112 hw->io_ports_array[i] = base + 2 + i * 4;
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100113
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200114 hw->io_ports.ctl_addr = ctl;
115 hw->io_ports.irq_addr = irq_port;
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100116
117 hw->irq = IRQ_AMIGA_PORTS;
118 hw->ack_intr = ack_intr;
Bartlomiej Zolnierkiewiczd427e832008-06-10 20:56:37 +0200119
120 hw->chipset = ide_generic;
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100121}
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 /*
124 * Probe for a Gayle IDE interface (and optionally for an IDE doubler)
125 */
126
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100127static int __init gayle_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 int a4000, i;
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +0100130 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 if (!MACH_IS_AMIGA)
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100133 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 if ((a4000 = AMIGAHW_PRESENT(A4000_IDE)) || AMIGAHW_PRESENT(A1200_IDE))
136 goto found;
137
138#ifdef CONFIG_ZORRO
139 if (zorro_find_device(ZORRO_PROD_MTEC_VIPER_MK_V_E_MATRIX_530_SCSI_IDE,
140 NULL))
141 goto found;
142#endif
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100143 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145found:
Bartlomiej Zolnierkiewiczc99c92c2008-01-26 20:13:09 +0100146 printk(KERN_INFO "ide: Gayle IDE controller (A%d style%s)\n",
147 a4000 ? 4000 : 1200,
148#ifdef CONFIG_BLK_DEV_IDEDOUBLER
149 ide_doubler ? ", IDE doubler" :
150#endif
151 "");
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 for (i = 0; i < GAYLE_NUM_PROBE_HWIFS; i++) {
154 unsigned long base, ctrlport, irqport;
155 ide_ack_intr_t *ack_intr;
156 hw_regs_t hw;
157 ide_hwif_t *hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 unsigned long phys_base, res_start, res_n;
159
160 if (a4000) {
161 phys_base = GAYLE_BASE_4000;
162 irqport = (unsigned long)ZTWO_VADDR(GAYLE_IRQ_4000);
163 ack_intr = gayle_ack_intr_a4000;
164 } else {
165 phys_base = GAYLE_BASE_1200;
166 irqport = (unsigned long)ZTWO_VADDR(GAYLE_IRQ_1200);
167 ack_intr = gayle_ack_intr_a1200;
168 }
169/*
170 * FIXME: we now have selectable modes between mmio v/s iomio
171 */
172
173 phys_base += i*GAYLE_NEXT_PORT;
174
175 res_start = ((unsigned long)phys_base) & ~(GAYLE_NEXT_PORT-1);
176 res_n = GAYLE_IDEREG_SIZE;
177
178 if (!request_mem_region(res_start, res_n, "IDE"))
179 continue;
180
181 base = (unsigned long)ZTWO_VADDR(phys_base);
182 ctrlport = GAYLE_HAS_CONTROL_REG ? (base + GAYLE_CONTROL) : 0;
183
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100184 gayle_setup_ports(&hw, base, ctrlport, irqport, ack_intr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Bartlomiej Zolnierkiewicz59bff5b2008-04-26 17:36:32 +0200186 hwif = ide_find_port();
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +0100187 if (hwif) {
188 u8 index = hwif->index;
189
190 ide_init_port_data(hwif, index);
191 ide_init_port_hw(hwif, &hw);
192
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +0100193 idx[i] = index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 } else
195 release_mem_region(res_start, res_n);
196 }
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +0100197
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100198 ide_device_add(idx, NULL);
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100199
200 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100202
203module_init(gayle_init);
Adrian Bunk6e1d17d2008-04-02 21:22:04 +0200204
205MODULE_LICENSE("GPL");