2 * Amiga Gayle IDE Driver
4 * Created 9 Jul 1997 by Geert Uytterhoeven
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
11 #include <linux/types.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>
19 #include <linux/module.h>
21 #include <asm/setup.h>
22 #include <asm/amigahw.h>
23 #include <asm/amigaints.h>
24 #include <asm/amigayle.h>
28 * Bases of the IDE interfaces
31 #define GAYLE_BASE_4000 0xdd2020 /* A4000/A4000T */
32 #define GAYLE_BASE_1200 0xda0000 /* A1200/A600 and E-Matrix 530 */
35 * Offsets from one of the above bases
38 #define GAYLE_CONTROL 0x101a
41 * These are at different offsets from the base
44 #define GAYLE_IRQ_4000 0xdd3020 /* MSB = 1, Harddisk is source of */
45 #define GAYLE_IRQ_1200 0xda9000 /* interrupt */
49 * Offset of the secondary port for IDE doublers
50 * Note that GAYLE_CONTROL is NOT available then!
53 #define GAYLE_NEXT_PORT 0x1000
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 : \
64 #define GAYLE_HAS_CONTROL_REG (!ide_doubler)
65 #define GAYLE_IDEREG_SIZE (ide_doubler ? 0x1000 : 0x2000)
67 int ide_doubler = 0; /* support IDE doublers? */
68 EXPORT_SYMBOL_GPL(ide_doubler);
70 module_param_named(doubler, ide_doubler, bool, 0);
71 MODULE_PARM_DESC(doubler, "enable support for IDE doublers");
72 #endif /* CONFIG_BLK_DEV_IDEDOUBLER */
76 * Check and acknowledge the interrupt status
79 static int gayle_ack_intr_a4000(ide_hwif_t *hwif)
83 ch = z_readb(hwif->io_ports.irq_addr);
84 if (!(ch & GAYLE_IRQ_IDE))
89 static int gayle_ack_intr_a1200(ide_hwif_t *hwif)
93 ch = z_readb(hwif->io_ports.irq_addr);
94 if (!(ch & GAYLE_IRQ_IDE))
96 (void)z_readb(hwif->io_ports.status_addr);
97 z_writeb(0x7c, hwif->io_ports.irq_addr);
101 static void __init gayle_setup_ports(hw_regs_t *hw, unsigned long base,
102 unsigned long ctl, unsigned long irq_port,
103 ide_ack_intr_t *ack_intr)
107 memset(hw, 0, sizeof(*hw));
109 hw->io_ports.data_addr = base;
111 for (i = 1; i < 8; i++)
112 hw->io_ports_array[i] = base + 2 + i * 4;
114 hw->io_ports.ctl_addr = ctl;
115 hw->io_ports.irq_addr = irq_port;
117 hw->irq = IRQ_AMIGA_PORTS;
118 hw->ack_intr = ack_intr;
120 hw->chipset = ide_generic;
124 * Probe for a Gayle IDE interface (and optionally for an IDE doubler)
127 static int __init gayle_init(void)
130 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
135 if ((a4000 = AMIGAHW_PRESENT(A4000_IDE)) || AMIGAHW_PRESENT(A1200_IDE))
139 if (zorro_find_device(ZORRO_PROD_MTEC_VIPER_MK_V_E_MATRIX_530_SCSI_IDE,
146 printk(KERN_INFO "ide: Gayle IDE controller (A%d style%s)\n",
148 #ifdef CONFIG_BLK_DEV_IDEDOUBLER
149 ide_doubler ? ", IDE doubler" :
153 for (i = 0; i < GAYLE_NUM_PROBE_HWIFS; i++) {
154 unsigned long base, ctrlport, irqport;
155 ide_ack_intr_t *ack_intr;
158 unsigned long phys_base, res_start, res_n;
161 phys_base = GAYLE_BASE_4000;
162 irqport = (unsigned long)ZTWO_VADDR(GAYLE_IRQ_4000);
163 ack_intr = gayle_ack_intr_a4000;
165 phys_base = GAYLE_BASE_1200;
166 irqport = (unsigned long)ZTWO_VADDR(GAYLE_IRQ_1200);
167 ack_intr = gayle_ack_intr_a1200;
170 * FIXME: we now have selectable modes between mmio v/s iomio
173 phys_base += i*GAYLE_NEXT_PORT;
175 res_start = ((unsigned long)phys_base) & ~(GAYLE_NEXT_PORT-1);
176 res_n = GAYLE_IDEREG_SIZE;
178 if (!request_mem_region(res_start, res_n, "IDE"))
181 base = (unsigned long)ZTWO_VADDR(phys_base);
182 ctrlport = GAYLE_HAS_CONTROL_REG ? (base + GAYLE_CONTROL) : 0;
184 gayle_setup_ports(&hw, base, ctrlport, irqport, ack_intr);
186 hwif = ide_find_port();
188 u8 index = hwif->index;
190 ide_init_port_data(hwif, index);
191 ide_init_port_hw(hwif, &hw);
195 release_mem_region(res_start, res_n);
198 ide_device_add(idx, NULL);
203 module_init(gayle_init);
205 MODULE_LICENSE("GPL");