blob: c5dd1e5cca4dd3609b94492e5174af58096844c6 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/ide.h>
16#include <linux/init.h>
17#include <linux/zorro.h>
Adrian Bunk513f3c12008-06-10 20:56:38 +020018#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/setup.h>
21#include <asm/amigahw.h>
22#include <asm/amigaints.h>
23#include <asm/amigayle.h>
24
25
26 /*
27 * Bases of the IDE interfaces
28 */
29
30#define GAYLE_BASE_4000 0xdd2020 /* A4000/A4000T */
31#define GAYLE_BASE_1200 0xda0000 /* A1200/A600 and E-Matrix 530 */
32
Bartlomiej Zolnierkiewicz73dc5322008-07-23 19:55:56 +020033#define GAYLE_IDEREG_SIZE 0x2000
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 /*
36 * Offsets from one of the above bases
37 */
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define GAYLE_CONTROL 0x101a
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 /*
42 * These are at different offsets from the base
43 */
44
45#define GAYLE_IRQ_4000 0xdd3020 /* MSB = 1, Harddisk is source of */
46#define GAYLE_IRQ_1200 0xda9000 /* interrupt */
47
48
49 /*
50 * Offset of the secondary port for IDE doublers
51 * Note that GAYLE_CONTROL is NOT available then!
52 */
53
54#define GAYLE_NEXT_PORT 0x1000
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define GAYLE_NUM_HWIFS 2
57#define GAYLE_NUM_PROBE_HWIFS (ide_doubler ? GAYLE_NUM_HWIFS : \
58 GAYLE_NUM_HWIFS-1)
59#define GAYLE_HAS_CONTROL_REG (!ide_doubler)
Adrian Bunk513f3c12008-06-10 20:56:38 +020060
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +020061static int ide_doubler;
Bartlomiej Zolnierkiewicz9dcba7f2008-04-27 15:38:30 +020062module_param_named(doubler, ide_doubler, bool, 0);
63MODULE_PARM_DESC(doubler, "enable support for IDE doublers");
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 /*
66 * Check and acknowledge the interrupt status
67 */
68
Sergei Shtylyoveba89992009-06-15 18:52:57 +020069static int gayle_ack_intr(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
71 unsigned char ch;
72
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +020073 ch = z_readb(hwif->io_ports.irq_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 if (!(ch & GAYLE_IRQ_IDE))
75 return 0;
76 return 1;
77}
78
Sergei Shtylyoveba89992009-06-15 18:52:57 +020079static void gayle_a1200_clear_irq(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Sergei Shtylyoveba89992009-06-15 18:52:57 +020081 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +020083 (void)z_readb(hwif->io_ports.status_addr);
84 z_writeb(0x7c, hwif->io_ports.irq_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Bartlomiej Zolnierkiewicz9f36d312009-05-17 19:12:25 +020087static void __init gayle_setup_ports(struct ide_hw *hw, unsigned long base,
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +010088 unsigned long ctl, unsigned long irq_port,
Adrian Bunk56efa7b2008-02-11 00:32:14 +010089 ide_ack_intr_t *ack_intr)
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +010090{
91 int i;
92
93 memset(hw, 0, sizeof(*hw));
94
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +020095 hw->io_ports.data_addr = base;
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +010096
97 for (i = 1; i < 8; i++)
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +020098 hw->io_ports_array[i] = base + 2 + i * 4;
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +010099
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200100 hw->io_ports.ctl_addr = ctl;
101 hw->io_ports.irq_addr = irq_port;
Bartlomiej Zolnierkiewicz29dd5972008-02-06 02:57:50 +0100102
103 hw->irq = IRQ_AMIGA_PORTS;
104 hw->ack_intr = ack_intr;
105}
106
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200107static const struct ide_port_ops gayle_a1200_port_ops = {
108 .clear_irq = gayle_a1200_clear_irq,
109};
110
Bartlomiej Zolnierkiewicza4cd1a32008-12-29 20:27:33 +0100111static const struct ide_port_info gayle_port_info = {
Bartlomiej Zolnierkiewicz09a3e792009-03-27 12:46:23 +0100112 .host_flags = IDE_HFLAG_MMIO | IDE_HFLAG_SERIALIZE |
113 IDE_HFLAG_NO_DMA,
Bartlomiej Zolnierkiewicz255115fb2009-03-27 12:46:27 +0100114 .irq_flags = IRQF_SHARED,
Bartlomiej Zolnierkiewicz29e52cf2009-05-17 19:12:22 +0200115 .chipset = ide_generic,
Bartlomiej Zolnierkiewicza4cd1a32008-12-29 20:27:33 +0100116};
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 /*
119 * Probe for a Gayle IDE interface (and optionally for an IDE doubler)
120 */
121
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100122static int __init gayle_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Bartlomiej Zolnierkiewicz73dc5322008-07-23 19:55:56 +0200124 unsigned long phys_base, res_start, res_n;
125 unsigned long base, ctrlport, irqport;
Bartlomiej Zolnierkiewicz96cc1122008-07-24 22:53:34 +0200126 int a4000, i, rc;
Bartlomiej Zolnierkiewicz9f36d312009-05-17 19:12:25 +0200127 struct ide_hw hw[GAYLE_NUM_HWIFS], *hws[GAYLE_NUM_HWIFS];
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200128 struct ide_port_info d = gayle_port_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 if (!MACH_IS_AMIGA)
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100131 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 if ((a4000 = AMIGAHW_PRESENT(A4000_IDE)) || AMIGAHW_PRESENT(A1200_IDE))
134 goto found;
135
136#ifdef CONFIG_ZORRO
137 if (zorro_find_device(ZORRO_PROD_MTEC_VIPER_MK_V_E_MATRIX_530_SCSI_IDE,
138 NULL))
139 goto found;
140#endif
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100141 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143found:
Bartlomiej Zolnierkiewiczc99c92c2008-01-26 20:13:09 +0100144 printk(KERN_INFO "ide: Gayle IDE controller (A%d style%s)\n",
145 a4000 ? 4000 : 1200,
Bartlomiej Zolnierkiewicz9f5af4d2009-03-31 20:15:26 +0200146 ide_doubler ? ", IDE doubler" : "");
Bartlomiej Zolnierkiewiczc99c92c2008-01-26 20:13:09 +0100147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 if (a4000) {
149 phys_base = GAYLE_BASE_4000;
150 irqport = (unsigned long)ZTWO_VADDR(GAYLE_IRQ_4000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 } else {
152 phys_base = GAYLE_BASE_1200;
153 irqport = (unsigned long)ZTWO_VADDR(GAYLE_IRQ_1200);
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200154 d.port_ops = &gayle_a1200_port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 res_start = ((unsigned long)phys_base) & ~(GAYLE_NEXT_PORT-1);
158 res_n = GAYLE_IDEREG_SIZE;
159
160 if (!request_mem_region(res_start, res_n, "IDE"))
Bartlomiej Zolnierkiewicz73dc5322008-07-23 19:55:56 +0200161 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Bartlomiej Zolnierkiewicz73dc5322008-07-23 19:55:56 +0200163 for (i = 0; i < GAYLE_NUM_PROBE_HWIFS; i++) {
Bartlomiej Zolnierkiewicz73dc5322008-07-23 19:55:56 +0200164 base = (unsigned long)ZTWO_VADDR(phys_base + i * GAYLE_NEXT_PORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 ctrlport = GAYLE_HAS_CONTROL_REG ? (base + GAYLE_CONTROL) : 0;
166
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200167 gayle_setup_ports(&hw[i], base, ctrlport, irqport, gayle_ack_intr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200169 hws[i] = &hw[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +0100171
Sergei Shtylyoveba89992009-06-15 18:52:57 +0200172 rc = ide_host_add(&d, hws, i, NULL);
Bartlomiej Zolnierkiewicz96cc1122008-07-24 22:53:34 +0200173 if (rc)
174 release_mem_region(res_start, res_n);
175
176 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100178
179module_init(gayle_init);
Adrian Bunk6e1d17d2008-04-02 21:22:04 +0200180
181MODULE_LICENSE("GPL");