]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/ide/legacy/gayle.c
ide: remove obsoleted "ide=" kernel parameters
[linux-2.6-omap-h63xx.git] / drivers / ide / legacy / gayle.c
1 /*
2  *  Amiga Gayle IDE Driver
3  *
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
11 #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>
19 #include <linux/module.h>
20
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
38 #define GAYLE_CONTROL   0x101a
39
40     /*
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)
66
67 static int ide_doubler;
68 module_param_named(doubler, ide_doubler, bool, 0);
69 MODULE_PARM_DESC(doubler, "enable support for IDE doublers");
70 #endif /* CONFIG_BLK_DEV_IDEDOUBLER */
71
72
73     /*
74      *  Check and acknowledge the interrupt status
75      */
76
77 static int gayle_ack_intr_a4000(ide_hwif_t *hwif)
78 {
79     unsigned char ch;
80
81     ch = z_readb(hwif->io_ports.irq_addr);
82     if (!(ch & GAYLE_IRQ_IDE))
83         return 0;
84     return 1;
85 }
86
87 static int gayle_ack_intr_a1200(ide_hwif_t *hwif)
88 {
89     unsigned char ch;
90
91     ch = z_readb(hwif->io_ports.irq_addr);
92     if (!(ch & GAYLE_IRQ_IDE))
93         return 0;
94     (void)z_readb(hwif->io_ports.status_addr);
95     z_writeb(0x7c, hwif->io_ports.irq_addr);
96     return 1;
97 }
98
99 static void __init gayle_setup_ports(hw_regs_t *hw, unsigned long base,
100                                      unsigned long ctl, unsigned long irq_port,
101                                      ide_ack_intr_t *ack_intr)
102 {
103         int i;
104
105         memset(hw, 0, sizeof(*hw));
106
107         hw->io_ports.data_addr = base;
108
109         for (i = 1; i < 8; i++)
110                 hw->io_ports_array[i] = base + 2 + i * 4;
111
112         hw->io_ports.ctl_addr = ctl;
113         hw->io_ports.irq_addr = irq_port;
114
115         hw->irq = IRQ_AMIGA_PORTS;
116         hw->ack_intr = ack_intr;
117
118         hw->chipset = ide_generic;
119 }
120
121     /*
122      *  Probe for a Gayle IDE interface (and optionally for an IDE doubler)
123      */
124
125 static int __init gayle_init(void)
126 {
127     int a4000, i;
128     u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
129
130     if (!MACH_IS_AMIGA)
131         return -ENODEV;
132
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
141     return -ENODEV;
142
143 found:
144         printk(KERN_INFO "ide: Gayle IDE controller (A%d style%s)\n",
145                          a4000 ? 4000 : 1200,
146 #ifdef CONFIG_BLK_DEV_IDEDOUBLER
147                          ide_doubler ? ", IDE doubler" :
148 #endif
149                          "");
150
151     for (i = 0; i < GAYLE_NUM_PROBE_HWIFS; i++) {
152         unsigned long base, ctrlport, irqport;
153         ide_ack_intr_t *ack_intr;
154         hw_regs_t hw;
155         ide_hwif_t *hwif;
156         unsigned long phys_base, res_start, res_n;
157
158         if (a4000) {
159             phys_base = GAYLE_BASE_4000;
160             irqport = (unsigned long)ZTWO_VADDR(GAYLE_IRQ_4000);
161             ack_intr = gayle_ack_intr_a4000;
162         } else {
163             phys_base = GAYLE_BASE_1200;
164             irqport = (unsigned long)ZTWO_VADDR(GAYLE_IRQ_1200);
165             ack_intr = gayle_ack_intr_a1200;
166         }
167 /*
168  * FIXME: we now have selectable modes between mmio v/s iomio
169  */
170
171         phys_base += i*GAYLE_NEXT_PORT;
172
173         res_start = ((unsigned long)phys_base) & ~(GAYLE_NEXT_PORT-1);
174         res_n = GAYLE_IDEREG_SIZE;
175
176         if (!request_mem_region(res_start, res_n, "IDE"))
177             continue;
178
179         base = (unsigned long)ZTWO_VADDR(phys_base);
180         ctrlport = GAYLE_HAS_CONTROL_REG ? (base + GAYLE_CONTROL) : 0;
181
182         gayle_setup_ports(&hw, base, ctrlport, irqport, ack_intr);
183
184         hwif = ide_find_port();
185         if (hwif) {
186             u8 index = hwif->index;
187
188             ide_init_port_data(hwif, index);
189             ide_init_port_hw(hwif, &hw);
190
191             idx[i] = index;
192         } else
193             release_mem_region(res_start, res_n);
194     }
195
196     ide_device_add(idx, NULL);
197
198     return 0;
199 }
200
201 module_init(gayle_init);
202
203 MODULE_LICENSE("GPL");