diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2006-08-10 03:59:10 -0400 |
---|---|---|
committer | Tejun Heo <htejun@gmail.com> | 2006-08-10 03:59:10 -0400 |
commit | 2ec7df0457b710d9201f211dbccdbecf0ad38b7e (patch) | |
tree | 4fbffc3e05aa65fd9ed63b4ac809712719e19cda /include/linux/libata.h | |
parent | 37deecb5139ee431233781a9a093d9fcaab54c5b (diff) |
[PATCH] libata: rework legacy handling to remove much of the cruft
Kill host_set->next
Fix simplex support
Allow per platform setting of IDE legacy bases
Some of this can be tidied further later on, in particular all the
legacy port gunge belongs as a PCI quirk/PCI header decode to understand
the special legacy IDE rules in the PCI spec.
Longer term Jeff also wants to move the request_irq/free_irq out of core
which will make this even cleaner.
tj: folded in three followup patches - ata_piix-fix, broken-arch-fix
and fix-new-legacy-handling, and separated per-dev xfermask into
separate patch preceding this one. Folded in fixes are...
* ata_piix-fix: fix build failure due to host_set->next removal
* broken-arch-fix: add missing include/asm-*/libata-portmap.h
* fix-new-legacy-handling:
* In ata_pci_init_legacy_port(), probe_num was incorrectly
incremented during initialization of the secondary port and
probe_ent->n_ports was incorrectly fixed to 1.
* Both legacy ports ended up having the same hard_port_no.
* When printing port information, both legacy ports printed
the first irq.
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Tejun Heo <htejun@gmail.com>
Diffstat (limited to 'include/linux/libata.h')
-rw-r--r-- | include/linux/libata.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/libata.h b/include/linux/libata.h index cf5eb1da3e32..4504776570e4 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
@@ -36,6 +36,8 @@ | |||
36 | #include <linux/workqueue.h> | 36 | #include <linux/workqueue.h> |
37 | #include <scsi/scsi_host.h> | 37 | #include <scsi/scsi_host.h> |
38 | 38 | ||
39 | #include <asm/libata-portmap.h> | ||
40 | |||
39 | /* | 41 | /* |
40 | * compile-time options: to be removed as soon as all the drivers are | 42 | * compile-time options: to be removed as soon as all the drivers are |
41 | * converted to the new debugging mechanism | 43 | * converted to the new debugging mechanism |
@@ -356,6 +358,7 @@ struct ata_probe_ent { | |||
356 | unsigned int udma_mask; | 358 | unsigned int udma_mask; |
357 | unsigned int legacy_mode; | 359 | unsigned int legacy_mode; |
358 | unsigned long irq; | 360 | unsigned long irq; |
361 | unsigned long irq2; | ||
359 | unsigned int irq_flags; | 362 | unsigned int irq_flags; |
360 | unsigned long host_flags; | 363 | unsigned long host_flags; |
361 | unsigned long host_set_flags; | 364 | unsigned long host_set_flags; |
@@ -367,6 +370,7 @@ struct ata_host_set { | |||
367 | spinlock_t lock; | 370 | spinlock_t lock; |
368 | struct device *dev; | 371 | struct device *dev; |
369 | unsigned long irq; | 372 | unsigned long irq; |
373 | unsigned long irq2; | ||
370 | void __iomem *mmio_base; | 374 | void __iomem *mmio_base; |
371 | unsigned int n_ports; | 375 | unsigned int n_ports; |
372 | void *private_data; | 376 | void *private_data; |
@@ -374,7 +378,6 @@ struct ata_host_set { | |||
374 | unsigned long flags; | 378 | unsigned long flags; |
375 | int simplex_claimed; /* Keep seperate in case we | 379 | int simplex_claimed; /* Keep seperate in case we |
376 | ever need to do this locked */ | 380 | ever need to do this locked */ |
377 | struct ata_host_set *next; /* for legacy mode */ | ||
378 | struct ata_port *ports[0]; | 381 | struct ata_port *ports[0]; |
379 | }; | 382 | }; |
380 | 383 | ||