scsi: ncr5380: Store IO ports and addresses in host private data
The various 5380 drivers inconsistently store register pointers either in the Scsi_Host struct "legacy crap" area or in special, board-specific members of the NCR5380_hostdata struct. Uniform use of the latter struct makes for simpler and faster code (see the following patches) and helps to reduce use of the NCR5380_implementation_fields macro. Signed-off-by: Finn Thain <fthain@telegraphics.com.au> Reviewed-by: Hannes Reinecke <hare@suse.com> Tested-by: Ondrej Zary <linux@rainbow-software.org> Tested-by: Michael Schmitz <schmitzmic@gmail.com> Acked-by: Russell King <rmk+kernel@armlinux.org.uk> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
committed by
Martin K. Petersen
parent
25894d1f98
commit
820682b1b3
@@ -220,6 +220,8 @@
|
||||
|
||||
struct NCR5380_hostdata {
|
||||
NCR5380_implementation_fields; /* Board-specific data */
|
||||
u8 __iomem *io; /* Remapped 5380 address */
|
||||
u8 __iomem *pdma_io; /* Remapped PDMA address */
|
||||
unsigned long poll_loops; /* Register polling limit */
|
||||
spinlock_t lock; /* Protects this struct */
|
||||
struct scsi_cmnd *connected; /* Currently connected cmnd */
|
||||
@@ -230,6 +232,8 @@ struct NCR5380_hostdata {
|
||||
int flags; /* Board-specific quirks */
|
||||
int dma_len; /* Requested length of DMA */
|
||||
int read_overruns; /* Transfer size reduction for DMA erratum */
|
||||
unsigned long io_port; /* Device IO port */
|
||||
unsigned long base; /* Device base address */
|
||||
struct list_head unissued; /* Waiting to be issued */
|
||||
struct scsi_cmnd *selecting; /* Cmnd to be connected */
|
||||
struct list_head autosense; /* Priority cmnd queue */
|
||||
@@ -239,6 +243,7 @@ struct NCR5380_hostdata {
|
||||
unsigned char id_mask; /* 1 << Host ID */
|
||||
unsigned char id_higher_mask; /* All bits above id_mask */
|
||||
unsigned char last_message; /* Last Message Out */
|
||||
unsigned long region_size; /* Size of address/port range */
|
||||
char info[256];
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user