diff options
Diffstat (limited to 'drivers/ide/legacy')
-rw-r--r-- | drivers/ide/legacy/buddha.c | 24 | ||||
-rw-r--r-- | drivers/ide/legacy/falconide.c | 56 | ||||
-rw-r--r-- | drivers/ide/legacy/gayle.c | 39 | ||||
-rw-r--r-- | drivers/ide/legacy/ide-4drives.c | 20 | ||||
-rw-r--r-- | drivers/ide/legacy/ide-cs.c | 54 | ||||
-rw-r--r-- | drivers/ide/legacy/ide_platform.c | 32 | ||||
-rw-r--r-- | drivers/ide/legacy/macide.c | 15 | ||||
-rw-r--r-- | drivers/ide/legacy/q40ide.c | 47 |
8 files changed, 124 insertions, 163 deletions
diff --git a/drivers/ide/legacy/buddha.c b/drivers/ide/legacy/buddha.c index 0497e7f85b09..7c2afa97f417 100644 --- a/drivers/ide/legacy/buddha.c +++ b/drivers/ide/legacy/buddha.c | |||
@@ -37,6 +37,8 @@ | |||
37 | #define CATWEASEL_NUM_HWIFS 3 | 37 | #define CATWEASEL_NUM_HWIFS 3 |
38 | #define XSURF_NUM_HWIFS 2 | 38 | #define XSURF_NUM_HWIFS 2 |
39 | 39 | ||
40 | #define MAX_NUM_HWIFS 3 | ||
41 | |||
40 | /* | 42 | /* |
41 | * Bases of the IDE interfaces (relative to the board address) | 43 | * Bases of the IDE interfaces (relative to the board address) |
42 | */ | 44 | */ |
@@ -148,18 +150,14 @@ static void __init buddha_setup_ports(hw_regs_t *hw, unsigned long base, | |||
148 | 150 | ||
149 | static int __init buddha_init(void) | 151 | static int __init buddha_init(void) |
150 | { | 152 | { |
151 | hw_regs_t hw; | ||
152 | ide_hwif_t *hwif; | ||
153 | int i; | ||
154 | |||
155 | struct zorro_dev *z = NULL; | 153 | struct zorro_dev *z = NULL; |
156 | u_long buddha_board = 0; | 154 | u_long buddha_board = 0; |
157 | BuddhaType type; | 155 | BuddhaType type; |
158 | int buddha_num_hwifs; | 156 | int buddha_num_hwifs, i; |
159 | 157 | ||
160 | while ((z = zorro_find_device(ZORRO_WILDCARD, z))) { | 158 | while ((z = zorro_find_device(ZORRO_WILDCARD, z))) { |
161 | unsigned long board; | 159 | unsigned long board; |
162 | u8 idx[4] = { 0xff, 0xff, 0xff, 0xff }; | 160 | hw_regs_t hw[MAX_NUM_HWIFS], *hws[] = { NULL, NULL, NULL, NULL }; |
163 | 161 | ||
164 | if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_BUDDHA) { | 162 | if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_BUDDHA) { |
165 | buddha_num_hwifs = BUDDHA_NUM_HWIFS; | 163 | buddha_num_hwifs = BUDDHA_NUM_HWIFS; |
@@ -221,19 +219,13 @@ fail_base2: | |||
221 | ack_intr = xsurf_ack_intr; | 219 | ack_intr = xsurf_ack_intr; |
222 | } | 220 | } |
223 | 221 | ||
224 | buddha_setup_ports(&hw, base, ctl, irq_port, ack_intr); | 222 | buddha_setup_ports(&hw[i], base, ctl, irq_port, |
223 | ack_intr); | ||
225 | 224 | ||
226 | hwif = ide_find_port(); | 225 | hws[i] = &hw[i]; |
227 | if (hwif) { | ||
228 | u8 index = hwif->index; | ||
229 | |||
230 | ide_init_port_hw(hwif, &hw); | ||
231 | |||
232 | idx[i] = index; | ||
233 | } | ||
234 | } | 226 | } |
235 | 227 | ||
236 | ide_device_add(idx, NULL); | 228 | ide_host_add(NULL, hws, NULL); |
237 | } | 229 | } |
238 | 230 | ||
239 | return 0; | 231 | return 0; |
diff --git a/drivers/ide/legacy/falconide.c b/drivers/ide/legacy/falconide.c index 129a812bb57f..724f95073d80 100644 --- a/drivers/ide/legacy/falconide.c +++ b/drivers/ide/legacy/falconide.c | |||
@@ -66,6 +66,27 @@ static void falconide_output_data(ide_drive_t *drive, struct request *rq, | |||
66 | outsw_swapw(data_addr, buf, (len + 1) / 2); | 66 | outsw_swapw(data_addr, buf, (len + 1) / 2); |
67 | } | 67 | } |
68 | 68 | ||
69 | /* Atari has a byte-swapped IDE interface */ | ||
70 | static const struct ide_tp_ops falconide_tp_ops = { | ||
71 | .exec_command = ide_exec_command, | ||
72 | .read_status = ide_read_status, | ||
73 | .read_altstatus = ide_read_altstatus, | ||
74 | .read_sff_dma_status = ide_read_sff_dma_status, | ||
75 | |||
76 | .set_irq = ide_set_irq, | ||
77 | |||
78 | .tf_load = ide_tf_load, | ||
79 | .tf_read = ide_tf_read, | ||
80 | |||
81 | .input_data = falconide_input_data, | ||
82 | .output_data = falconide_output_data, | ||
83 | }; | ||
84 | |||
85 | static const struct ide_port_info falconide_port_info = { | ||
86 | .tp_ops = &falconide_tp_ops, | ||
87 | .host_flags = IDE_HFLAG_NO_DMA, | ||
88 | }; | ||
89 | |||
69 | static void __init falconide_setup_ports(hw_regs_t *hw) | 90 | static void __init falconide_setup_ports(hw_regs_t *hw) |
70 | { | 91 | { |
71 | int i; | 92 | int i; |
@@ -91,11 +112,12 @@ static void __init falconide_setup_ports(hw_regs_t *hw) | |||
91 | 112 | ||
92 | static int __init falconide_init(void) | 113 | static int __init falconide_init(void) |
93 | { | 114 | { |
94 | hw_regs_t hw; | 115 | struct ide_host *host; |
95 | ide_hwif_t *hwif; | 116 | hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL }; |
117 | int rc; | ||
96 | 118 | ||
97 | if (!MACH_IS_ATARI || !ATARIHW_PRESENT(IDE)) | 119 | if (!MACH_IS_ATARI || !ATARIHW_PRESENT(IDE)) |
98 | return 0; | 120 | return -ENODEV; |
99 | 121 | ||
100 | printk(KERN_INFO "ide: Falcon IDE controller\n"); | 122 | printk(KERN_INFO "ide: Falcon IDE controller\n"); |
101 | 123 | ||
@@ -106,23 +128,25 @@ static int __init falconide_init(void) | |||
106 | 128 | ||
107 | falconide_setup_ports(&hw); | 129 | falconide_setup_ports(&hw); |
108 | 130 | ||
109 | hwif = ide_find_port(); | 131 | host = ide_host_alloc(&falconide_port_info, hws); |
110 | if (hwif) { | 132 | if (host == NULL) { |
111 | u8 index = hwif->index; | 133 | rc = -ENOMEM; |
112 | u8 idx[4] = { index, 0xff, 0xff, 0xff }; | 134 | goto err; |
113 | 135 | } | |
114 | ide_init_port_hw(hwif, &hw); | ||
115 | 136 | ||
116 | /* Atari has a byte-swapped IDE interface */ | 137 | ide_get_lock(NULL, NULL); |
117 | hwif->input_data = falconide_input_data; | 138 | rc = ide_host_register(host, &falconide_port_info, hws); |
118 | hwif->output_data = falconide_output_data; | 139 | ide_release_lock(); |
119 | 140 | ||
120 | ide_get_lock(NULL, NULL); | 141 | if (rc) |
121 | ide_device_add(idx, NULL); | 142 | goto err_free; |
122 | ide_release_lock(); | ||
123 | } | ||
124 | 143 | ||
125 | return 0; | 144 | return 0; |
145 | err_free: | ||
146 | ide_host_free(host); | ||
147 | err: | ||
148 | release_mem_region(ATA_HD_BASE, 0x40); | ||
149 | return rc; | ||
126 | } | 150 | } |
127 | 151 | ||
128 | module_init(falconide_init); | 152 | module_init(falconide_init); |
diff --git a/drivers/ide/legacy/gayle.c b/drivers/ide/legacy/gayle.c index 7e74b20202df..dd5c467d8dd0 100644 --- a/drivers/ide/legacy/gayle.c +++ b/drivers/ide/legacy/gayle.c | |||
@@ -31,6 +31,8 @@ | |||
31 | #define GAYLE_BASE_4000 0xdd2020 /* A4000/A4000T */ | 31 | #define GAYLE_BASE_4000 0xdd2020 /* A4000/A4000T */ |
32 | #define GAYLE_BASE_1200 0xda0000 /* A1200/A600 and E-Matrix 530 */ | 32 | #define GAYLE_BASE_1200 0xda0000 /* A1200/A600 and E-Matrix 530 */ |
33 | 33 | ||
34 | #define GAYLE_IDEREG_SIZE 0x2000 | ||
35 | |||
34 | /* | 36 | /* |
35 | * Offsets from one of the above bases | 37 | * Offsets from one of the above bases |
36 | */ | 38 | */ |
@@ -56,13 +58,11 @@ | |||
56 | #define GAYLE_NUM_HWIFS 1 | 58 | #define GAYLE_NUM_HWIFS 1 |
57 | #define GAYLE_NUM_PROBE_HWIFS GAYLE_NUM_HWIFS | 59 | #define GAYLE_NUM_PROBE_HWIFS GAYLE_NUM_HWIFS |
58 | #define GAYLE_HAS_CONTROL_REG 1 | 60 | #define GAYLE_HAS_CONTROL_REG 1 |
59 | #define GAYLE_IDEREG_SIZE 0x2000 | ||
60 | #else /* CONFIG_BLK_DEV_IDEDOUBLER */ | 61 | #else /* CONFIG_BLK_DEV_IDEDOUBLER */ |
61 | #define GAYLE_NUM_HWIFS 2 | 62 | #define GAYLE_NUM_HWIFS 2 |
62 | #define GAYLE_NUM_PROBE_HWIFS (ide_doubler ? GAYLE_NUM_HWIFS : \ | 63 | #define GAYLE_NUM_PROBE_HWIFS (ide_doubler ? GAYLE_NUM_HWIFS : \ |
63 | GAYLE_NUM_HWIFS-1) | 64 | GAYLE_NUM_HWIFS-1) |
64 | #define GAYLE_HAS_CONTROL_REG (!ide_doubler) | 65 | #define GAYLE_HAS_CONTROL_REG (!ide_doubler) |
65 | #define GAYLE_IDEREG_SIZE (ide_doubler ? 0x1000 : 0x2000) | ||
66 | 66 | ||
67 | static int ide_doubler; | 67 | static int ide_doubler; |
68 | module_param_named(doubler, ide_doubler, bool, 0); | 68 | module_param_named(doubler, ide_doubler, bool, 0); |
@@ -124,8 +124,11 @@ static void __init gayle_setup_ports(hw_regs_t *hw, unsigned long base, | |||
124 | 124 | ||
125 | static int __init gayle_init(void) | 125 | static int __init gayle_init(void) |
126 | { | 126 | { |
127 | unsigned long phys_base, res_start, res_n; | ||
128 | unsigned long base, ctrlport, irqport; | ||
129 | ide_ack_intr_t *ack_intr; | ||
127 | int a4000, i; | 130 | int a4000, i; |
128 | u8 idx[4] = { 0xff, 0xff, 0xff, 0xff }; | 131 | hw_regs_t hw[GAYLE_NUM_HWIFS], *hws[] = { NULL, NULL, NULL, NULL }; |
129 | 132 | ||
130 | if (!MACH_IS_AMIGA) | 133 | if (!MACH_IS_AMIGA) |
131 | return -ENODEV; | 134 | return -ENODEV; |
@@ -148,13 +151,6 @@ found: | |||
148 | #endif | 151 | #endif |
149 | ""); | 152 | ""); |
150 | 153 | ||
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) { | 154 | if (a4000) { |
159 | phys_base = GAYLE_BASE_4000; | 155 | phys_base = GAYLE_BASE_4000; |
160 | irqport = (unsigned long)ZTWO_VADDR(GAYLE_IRQ_4000); | 156 | irqport = (unsigned long)ZTWO_VADDR(GAYLE_IRQ_4000); |
@@ -168,33 +164,22 @@ found: | |||
168 | * FIXME: we now have selectable modes between mmio v/s iomio | 164 | * FIXME: we now have selectable modes between mmio v/s iomio |
169 | */ | 165 | */ |
170 | 166 | ||
171 | phys_base += i*GAYLE_NEXT_PORT; | ||
172 | |||
173 | res_start = ((unsigned long)phys_base) & ~(GAYLE_NEXT_PORT-1); | 167 | res_start = ((unsigned long)phys_base) & ~(GAYLE_NEXT_PORT-1); |
174 | res_n = GAYLE_IDEREG_SIZE; | 168 | res_n = GAYLE_IDEREG_SIZE; |
175 | 169 | ||
176 | if (!request_mem_region(res_start, res_n, "IDE")) | 170 | if (!request_mem_region(res_start, res_n, "IDE")) |
177 | continue; | 171 | return -EBUSY; |
178 | 172 | ||
179 | base = (unsigned long)ZTWO_VADDR(phys_base); | 173 | for (i = 0; i < GAYLE_NUM_PROBE_HWIFS; i++) { |
174 | base = (unsigned long)ZTWO_VADDR(phys_base + i * GAYLE_NEXT_PORT); | ||
180 | ctrlport = GAYLE_HAS_CONTROL_REG ? (base + GAYLE_CONTROL) : 0; | 175 | ctrlport = GAYLE_HAS_CONTROL_REG ? (base + GAYLE_CONTROL) : 0; |
181 | 176 | ||
182 | gayle_setup_ports(&hw, base, ctrlport, irqport, ack_intr); | 177 | gayle_setup_ports(&hw[i], base, ctrlport, irqport, ack_intr); |
183 | |||
184 | hwif = ide_find_port(); | ||
185 | if (hwif) { | ||
186 | u8 index = hwif->index; | ||
187 | 178 | ||
188 | ide_init_port_hw(hwif, &hw); | 179 | hws[i] = &hw[i]; |
189 | |||
190 | idx[i] = index; | ||
191 | } else | ||
192 | release_mem_region(res_start, res_n); | ||
193 | } | 180 | } |
194 | 181 | ||
195 | ide_device_add(idx, NULL); | 182 | return ide_host_add(NULL, hws, NULL); |
196 | |||
197 | return 0; | ||
198 | } | 183 | } |
199 | 184 | ||
200 | module_init(gayle_init); | 185 | module_init(gayle_init); |
diff --git a/drivers/ide/legacy/ide-4drives.c b/drivers/ide/legacy/ide-4drives.c index 89c8ff0a4d08..c76d55de6996 100644 --- a/drivers/ide/legacy/ide-4drives.c +++ b/drivers/ide/legacy/ide-4drives.c | |||
@@ -28,10 +28,8 @@ static const struct ide_port_info ide_4drives_port_info = { | |||
28 | 28 | ||
29 | static int __init ide_4drives_init(void) | 29 | static int __init ide_4drives_init(void) |
30 | { | 30 | { |
31 | ide_hwif_t *hwif, *mate; | ||
32 | unsigned long base = 0x1f0, ctl = 0x3f6; | 31 | unsigned long base = 0x1f0, ctl = 0x3f6; |
33 | u8 idx[4] = { 0xff, 0xff, 0xff, 0xff }; | 32 | hw_regs_t hw, *hws[] = { &hw, &hw, NULL, NULL }; |
34 | hw_regs_t hw; | ||
35 | 33 | ||
36 | if (probe_4drives == 0) | 34 | if (probe_4drives == 0) |
37 | return -ENODEV; | 35 | return -ENODEV; |
@@ -55,21 +53,7 @@ static int __init ide_4drives_init(void) | |||
55 | hw.irq = 14; | 53 | hw.irq = 14; |
56 | hw.chipset = ide_4drives; | 54 | hw.chipset = ide_4drives; |
57 | 55 | ||
58 | hwif = ide_find_port(); | 56 | return ide_host_add(&ide_4drives_port_info, hws, NULL); |
59 | if (hwif) { | ||
60 | ide_init_port_hw(hwif, &hw); | ||
61 | idx[0] = hwif->index; | ||
62 | } | ||
63 | |||
64 | mate = ide_find_port(); | ||
65 | if (mate) { | ||
66 | ide_init_port_hw(mate, &hw); | ||
67 | idx[1] = mate->index; | ||
68 | } | ||
69 | |||
70 | ide_device_add(idx, &ide_4drives_port_info); | ||
71 | |||
72 | return 0; | ||
73 | } | 57 | } |
74 | 58 | ||
75 | module_init(ide_4drives_init); | 59 | module_init(ide_4drives_init); |
diff --git a/drivers/ide/legacy/ide-cs.c b/drivers/ide/legacy/ide-cs.c index 27b1e0b7ecb4..21bfac137844 100644 --- a/drivers/ide/legacy/ide-cs.c +++ b/drivers/ide/legacy/ide-cs.c | |||
@@ -74,7 +74,7 @@ INT_MODULE_PARM(pc_debug, 0); | |||
74 | 74 | ||
75 | typedef struct ide_info_t { | 75 | typedef struct ide_info_t { |
76 | struct pcmcia_device *p_dev; | 76 | struct pcmcia_device *p_dev; |
77 | ide_hwif_t *hwif; | 77 | struct ide_host *host; |
78 | int ndev; | 78 | int ndev; |
79 | dev_node_t node; | 79 | dev_node_t node; |
80 | } ide_info_t; | 80 | } ide_info_t; |
@@ -132,7 +132,7 @@ static int ide_probe(struct pcmcia_device *link) | |||
132 | static void ide_detach(struct pcmcia_device *link) | 132 | static void ide_detach(struct pcmcia_device *link) |
133 | { | 133 | { |
134 | ide_info_t *info = link->priv; | 134 | ide_info_t *info = link->priv; |
135 | ide_hwif_t *hwif = info->hwif; | 135 | ide_hwif_t *hwif = info->host->ports[0]; |
136 | unsigned long data_addr, ctl_addr; | 136 | unsigned long data_addr, ctl_addr; |
137 | 137 | ||
138 | DEBUG(0, "ide_detach(0x%p)\n", link); | 138 | DEBUG(0, "ide_detach(0x%p)\n", link); |
@@ -157,13 +157,13 @@ static const struct ide_port_info idecs_port_info = { | |||
157 | .host_flags = IDE_HFLAG_NO_DMA, | 157 | .host_flags = IDE_HFLAG_NO_DMA, |
158 | }; | 158 | }; |
159 | 159 | ||
160 | static ide_hwif_t *idecs_register(unsigned long io, unsigned long ctl, | 160 | static struct ide_host *idecs_register(unsigned long io, unsigned long ctl, |
161 | unsigned long irq, struct pcmcia_device *handle) | 161 | unsigned long irq, struct pcmcia_device *handle) |
162 | { | 162 | { |
163 | struct ide_host *host; | ||
163 | ide_hwif_t *hwif; | 164 | ide_hwif_t *hwif; |
164 | hw_regs_t hw; | 165 | int i, rc; |
165 | int i; | 166 | hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL }; |
166 | u8 idx[4] = { 0xff, 0xff, 0xff, 0xff }; | ||
167 | 167 | ||
168 | if (!request_region(io, 8, DRV_NAME)) { | 168 | if (!request_region(io, 8, DRV_NAME)) { |
169 | printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX not free.\n", | 169 | printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX not free.\n", |
@@ -184,30 +184,24 @@ static ide_hwif_t *idecs_register(unsigned long io, unsigned long ctl, | |||
184 | hw.chipset = ide_pci; | 184 | hw.chipset = ide_pci; |
185 | hw.dev = &handle->dev; | 185 | hw.dev = &handle->dev; |
186 | 186 | ||
187 | hwif = ide_find_port(); | 187 | rc = ide_host_add(&idecs_port_info, hws, &host); |
188 | if (hwif == NULL) | 188 | if (rc) |
189 | goto out_release; | 189 | goto out_release; |
190 | 190 | ||
191 | i = hwif->index; | 191 | hwif = host->ports[0]; |
192 | |||
193 | ide_init_port_hw(hwif, &hw); | ||
194 | |||
195 | idx[0] = i; | ||
196 | |||
197 | ide_device_add(idx, &idecs_port_info); | ||
198 | 192 | ||
199 | if (hwif->present) | 193 | if (hwif->present) |
200 | return hwif; | 194 | return host; |
201 | 195 | ||
202 | /* retry registration in case device is still spinning up */ | 196 | /* retry registration in case device is still spinning up */ |
203 | for (i = 0; i < 10; i++) { | 197 | for (i = 0; i < 10; i++) { |
204 | msleep(100); | 198 | msleep(100); |
205 | ide_port_scan(hwif); | 199 | ide_port_scan(hwif); |
206 | if (hwif->present) | 200 | if (hwif->present) |
207 | return hwif; | 201 | return host; |
208 | } | 202 | } |
209 | 203 | ||
210 | return hwif; | 204 | return host; |
211 | 205 | ||
212 | out_release: | 206 | out_release: |
213 | release_region(ctl, 1); | 207 | release_region(ctl, 1); |
@@ -239,7 +233,7 @@ static int ide_config(struct pcmcia_device *link) | |||
239 | cistpl_cftable_entry_t *cfg; | 233 | cistpl_cftable_entry_t *cfg; |
240 | int pass, last_ret = 0, last_fn = 0, is_kme = 0; | 234 | int pass, last_ret = 0, last_fn = 0, is_kme = 0; |
241 | unsigned long io_base, ctl_base; | 235 | unsigned long io_base, ctl_base; |
242 | ide_hwif_t *hwif; | 236 | struct ide_host *host; |
243 | 237 | ||
244 | DEBUG(0, "ide_config(0x%p)\n", link); | 238 | DEBUG(0, "ide_config(0x%p)\n", link); |
245 | 239 | ||
@@ -334,21 +328,21 @@ static int ide_config(struct pcmcia_device *link) | |||
334 | if (is_kme) | 328 | if (is_kme) |
335 | outb(0x81, ctl_base+1); | 329 | outb(0x81, ctl_base+1); |
336 | 330 | ||
337 | hwif = idecs_register(io_base, ctl_base, link->irq.AssignedIRQ, link); | 331 | host = idecs_register(io_base, ctl_base, link->irq.AssignedIRQ, link); |
338 | if (hwif == NULL && link->io.NumPorts1 == 0x20) { | 332 | if (host == NULL && link->io.NumPorts1 == 0x20) { |
339 | outb(0x02, ctl_base + 0x10); | 333 | outb(0x02, ctl_base + 0x10); |
340 | hwif = idecs_register(io_base + 0x10, ctl_base + 0x10, | 334 | host = idecs_register(io_base + 0x10, ctl_base + 0x10, |
341 | link->irq.AssignedIRQ, link); | 335 | link->irq.AssignedIRQ, link); |
342 | } | 336 | } |
343 | 337 | ||
344 | if (hwif == NULL) | 338 | if (host == NULL) |
345 | goto failed; | 339 | goto failed; |
346 | 340 | ||
347 | info->ndev = 1; | 341 | info->ndev = 1; |
348 | sprintf(info->node.dev_name, "hd%c", 'a' + hwif->index * 2); | 342 | sprintf(info->node.dev_name, "hd%c", 'a' + host->ports[0]->index * 2); |
349 | info->node.major = hwif->major; | 343 | info->node.major = host->ports[0]->major; |
350 | info->node.minor = 0; | 344 | info->node.minor = 0; |
351 | info->hwif = hwif; | 345 | info->host = host; |
352 | link->dev_node = &info->node; | 346 | link->dev_node = &info->node; |
353 | printk(KERN_INFO "ide-cs: %s: Vpp = %d.%d\n", | 347 | printk(KERN_INFO "ide-cs: %s: Vpp = %d.%d\n", |
354 | info->node.dev_name, link->conf.Vpp / 10, link->conf.Vpp % 10); | 348 | info->node.dev_name, link->conf.Vpp / 10, link->conf.Vpp % 10); |
@@ -379,15 +373,15 @@ failed: | |||
379 | static void ide_release(struct pcmcia_device *link) | 373 | static void ide_release(struct pcmcia_device *link) |
380 | { | 374 | { |
381 | ide_info_t *info = link->priv; | 375 | ide_info_t *info = link->priv; |
382 | ide_hwif_t *hwif = info->hwif; | 376 | struct ide_host *host = info->host; |
383 | 377 | ||
384 | DEBUG(0, "ide_release(0x%p)\n", link); | 378 | DEBUG(0, "ide_release(0x%p)\n", link); |
385 | 379 | ||
386 | if (info->ndev) { | 380 | if (info->ndev) |
387 | /* FIXME: if this fails we need to queue the cleanup somehow | 381 | /* FIXME: if this fails we need to queue the cleanup somehow |
388 | -- need to investigate the required PCMCIA magic */ | 382 | -- need to investigate the required PCMCIA magic */ |
389 | ide_unregister(hwif); | 383 | ide_host_remove(host); |
390 | } | 384 | |
391 | info->ndev = 0; | 385 | info->ndev = 0; |
392 | 386 | ||
393 | pcmcia_disable_device(link); | 387 | pcmcia_disable_device(link); |
diff --git a/drivers/ide/legacy/ide_platform.c b/drivers/ide/legacy/ide_platform.c index a249562b34b5..051b4ab0f359 100644 --- a/drivers/ide/legacy/ide_platform.c +++ b/drivers/ide/legacy/ide_platform.c | |||
@@ -52,12 +52,10 @@ static int __devinit plat_ide_probe(struct platform_device *pdev) | |||
52 | { | 52 | { |
53 | struct resource *res_base, *res_alt, *res_irq; | 53 | struct resource *res_base, *res_alt, *res_irq; |
54 | void __iomem *base, *alt_base; | 54 | void __iomem *base, *alt_base; |
55 | ide_hwif_t *hwif; | ||
56 | struct pata_platform_info *pdata; | 55 | struct pata_platform_info *pdata; |
57 | u8 idx[4] = { 0xff, 0xff, 0xff, 0xff }; | 56 | struct ide_host *host; |
58 | int ret = 0; | 57 | int ret = 0, mmio = 0; |
59 | int mmio = 0; | 58 | hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL }; |
60 | hw_regs_t hw; | ||
61 | struct ide_port_info d = platform_ide_port_info; | 59 | struct ide_port_info d = platform_ide_port_info; |
62 | 60 | ||
63 | pdata = pdev->dev.platform_data; | 61 | pdata = pdev->dev.platform_data; |
@@ -94,28 +92,18 @@ static int __devinit plat_ide_probe(struct platform_device *pdev) | |||
94 | res_alt->start, res_alt->end - res_alt->start + 1); | 92 | res_alt->start, res_alt->end - res_alt->start + 1); |
95 | } | 93 | } |
96 | 94 | ||
97 | hwif = ide_find_port(); | ||
98 | if (!hwif) { | ||
99 | ret = -ENODEV; | ||
100 | goto out; | ||
101 | } | ||
102 | |||
103 | memset(&hw, 0, sizeof(hw)); | 95 | memset(&hw, 0, sizeof(hw)); |
104 | plat_ide_setup_ports(&hw, base, alt_base, pdata, res_irq->start); | 96 | plat_ide_setup_ports(&hw, base, alt_base, pdata, res_irq->start); |
105 | hw.dev = &pdev->dev; | 97 | hw.dev = &pdev->dev; |
106 | 98 | ||
107 | ide_init_port_hw(hwif, &hw); | 99 | if (mmio) |
108 | |||
109 | if (mmio) { | ||
110 | d.host_flags |= IDE_HFLAG_MMIO; | 100 | d.host_flags |= IDE_HFLAG_MMIO; |
111 | default_hwif_mmiops(hwif); | ||
112 | } | ||
113 | 101 | ||
114 | idx[0] = hwif->index; | 102 | ret = ide_host_add(&d, hws, &host); |
115 | 103 | if (ret) | |
116 | ide_device_add(idx, &d); | 104 | goto out; |
117 | 105 | ||
118 | platform_set_drvdata(pdev, hwif); | 106 | platform_set_drvdata(pdev, host); |
119 | 107 | ||
120 | return 0; | 108 | return 0; |
121 | 109 | ||
@@ -125,9 +113,9 @@ out: | |||
125 | 113 | ||
126 | static int __devexit plat_ide_remove(struct platform_device *pdev) | 114 | static int __devexit plat_ide_remove(struct platform_device *pdev) |
127 | { | 115 | { |
128 | ide_hwif_t *hwif = pdev->dev.driver_data; | 116 | struct ide_host *host = pdev->dev.driver_data; |
129 | 117 | ||
130 | ide_unregister(hwif); | 118 | ide_host_remove(host); |
131 | 119 | ||
132 | return 0; | 120 | return 0; |
133 | } | 121 | } |
diff --git a/drivers/ide/legacy/macide.c b/drivers/ide/legacy/macide.c index 0a6195bcfeda..a0bb167980e7 100644 --- a/drivers/ide/legacy/macide.c +++ b/drivers/ide/legacy/macide.c | |||
@@ -91,11 +91,10 @@ static const char *mac_ide_name[] = | |||
91 | 91 | ||
92 | static int __init macide_init(void) | 92 | static int __init macide_init(void) |
93 | { | 93 | { |
94 | ide_hwif_t *hwif; | ||
95 | ide_ack_intr_t *ack_intr; | 94 | ide_ack_intr_t *ack_intr; |
96 | unsigned long base; | 95 | unsigned long base; |
97 | int irq; | 96 | int irq; |
98 | hw_regs_t hw; | 97 | hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL }; |
99 | 98 | ||
100 | if (!MACH_IS_MAC) | 99 | if (!MACH_IS_MAC) |
101 | return -ENODEV; | 100 | return -ENODEV; |
@@ -125,17 +124,7 @@ static int __init macide_init(void) | |||
125 | 124 | ||
126 | macide_setup_ports(&hw, base, irq, ack_intr); | 125 | macide_setup_ports(&hw, base, irq, ack_intr); |
127 | 126 | ||
128 | hwif = ide_find_port(); | 127 | return ide_host_add(NULL, hws, NULL); |
129 | if (hwif) { | ||
130 | u8 index = hwif->index; | ||
131 | u8 idx[4] = { index, 0xff, 0xff, 0xff }; | ||
132 | |||
133 | ide_init_port_hw(hwif, &hw); | ||
134 | |||
135 | ide_device_add(idx, NULL); | ||
136 | } | ||
137 | |||
138 | return 0; | ||
139 | } | 128 | } |
140 | 129 | ||
141 | module_init(macide_init); | 130 | module_init(macide_init); |
diff --git a/drivers/ide/legacy/q40ide.c b/drivers/ide/legacy/q40ide.c index 9c2b9d078f69..4abd8fc78197 100644 --- a/drivers/ide/legacy/q40ide.c +++ b/drivers/ide/legacy/q40ide.c | |||
@@ -96,6 +96,27 @@ static void q40ide_output_data(ide_drive_t *drive, struct request *rq, | |||
96 | outsw_swapw(data_addr, buf, (len + 1) / 2); | 96 | outsw_swapw(data_addr, buf, (len + 1) / 2); |
97 | } | 97 | } |
98 | 98 | ||
99 | /* Q40 has a byte-swapped IDE interface */ | ||
100 | static const struct ide_tp_ops q40ide_tp_ops = { | ||
101 | .exec_command = ide_exec_command, | ||
102 | .read_status = ide_read_status, | ||
103 | .read_altstatus = ide_read_altstatus, | ||
104 | .read_sff_dma_status = ide_read_sff_dma_status, | ||
105 | |||
106 | .set_irq = ide_set_irq, | ||
107 | |||
108 | .tf_load = ide_tf_load, | ||
109 | .tf_read = ide_tf_read, | ||
110 | |||
111 | .input_data = q40ide_input_data, | ||
112 | .output_data = q40ide_output_data, | ||
113 | }; | ||
114 | |||
115 | static const struct ide_port_info q40ide_port_info = { | ||
116 | .tp_ops = &q40ide_tp_ops, | ||
117 | .host_flags = IDE_HFLAG_NO_DMA, | ||
118 | }; | ||
119 | |||
99 | /* | 120 | /* |
100 | * the static array is needed to have the name reported in /proc/ioports, | 121 | * the static array is needed to have the name reported in /proc/ioports, |
101 | * hwif->name unfortunately isn't available yet | 122 | * hwif->name unfortunately isn't available yet |
@@ -111,9 +132,7 @@ static const char *q40_ide_names[Q40IDE_NUM_HWIFS]={ | |||
111 | static int __init q40ide_init(void) | 132 | static int __init q40ide_init(void) |
112 | { | 133 | { |
113 | int i; | 134 | int i; |
114 | ide_hwif_t *hwif; | 135 | hw_regs_t hw[Q40IDE_NUM_HWIFS], *hws[] = { NULL, NULL, NULL, NULL }; |
115 | const char *name; | ||
116 | u8 idx[4] = { 0xff, 0xff, 0xff, 0xff }; | ||
117 | 136 | ||
118 | if (!MACH_IS_Q40) | 137 | if (!MACH_IS_Q40) |
119 | return -ENODEV; | 138 | return -ENODEV; |
@@ -121,9 +140,8 @@ static int __init q40ide_init(void) | |||
121 | printk(KERN_INFO "ide: Q40 IDE controller\n"); | 140 | printk(KERN_INFO "ide: Q40 IDE controller\n"); |
122 | 141 | ||
123 | for (i = 0; i < Q40IDE_NUM_HWIFS; i++) { | 142 | for (i = 0; i < Q40IDE_NUM_HWIFS; i++) { |
124 | hw_regs_t hw; | 143 | const char *name = q40_ide_names[i]; |
125 | 144 | ||
126 | name = q40_ide_names[i]; | ||
127 | if (!request_region(pcide_bases[i], 8, name)) { | 145 | if (!request_region(pcide_bases[i], 8, name)) { |
128 | printk("could not reserve ports %lx-%lx for %s\n", | 146 | printk("could not reserve ports %lx-%lx for %s\n", |
129 | pcide_bases[i],pcide_bases[i]+8,name); | 147 | pcide_bases[i],pcide_bases[i]+8,name); |
@@ -135,26 +153,13 @@ static int __init q40ide_init(void) | |||
135 | release_region(pcide_bases[i], 8); | 153 | release_region(pcide_bases[i], 8); |
136 | continue; | 154 | continue; |
137 | } | 155 | } |
138 | q40_ide_setup_ports(&hw, pcide_bases[i], | 156 | q40_ide_setup_ports(&hw[i], pcide_bases[i], NULL, |
139 | NULL, | ||
140 | // m68kide_iops, | ||
141 | q40ide_default_irq(pcide_bases[i])); | 157 | q40ide_default_irq(pcide_bases[i])); |
142 | 158 | ||
143 | hwif = ide_find_port(); | 159 | hws[i] = &hw[i]; |
144 | if (hwif) { | ||
145 | ide_init_port_hw(hwif, &hw); | ||
146 | |||
147 | /* Q40 has a byte-swapped IDE interface */ | ||
148 | hwif->input_data = q40ide_input_data; | ||
149 | hwif->output_data = q40ide_output_data; | ||
150 | |||
151 | idx[i] = hwif->index; | ||
152 | } | ||
153 | } | 160 | } |
154 | 161 | ||
155 | ide_device_add(idx, NULL); | 162 | return ide_host_add(&q40ide_port_info, hws, NULL); |
156 | |||
157 | return 0; | ||
158 | } | 163 | } |
159 | 164 | ||
160 | module_init(q40ide_init); | 165 | module_init(q40ide_init); |