2 #include <linux/kernel.h>
3 #include <linux/export.h>
6 #if defined(CONFIG_ARM) || defined(CONFIG_M68K) || defined(CONFIG_MIPS) || \
7 defined(CONFIG_PARISC) || defined(CONFIG_PPC) || defined(CONFIG_SPARC)
10 #include <asm-generic/ide_iops.h>
14 * Conventional PIO operations for ATA devices
17 static u8
ide_inb(unsigned long port
)
19 return (u8
) inb(port
);
22 static void ide_outb(u8 val
, unsigned long port
)
28 * MMIO operations, typically used for SATA controllers
31 static u8
ide_mm_inb(unsigned long port
)
33 return (u8
) readb((void __iomem
*) port
);
36 static void ide_mm_outb(u8 value
, unsigned long port
)
38 writeb(value
, (void __iomem
*) port
);
41 void ide_exec_command(ide_hwif_t
*hwif
, u8 cmd
)
43 if (hwif
->host_flags
& IDE_HFLAG_MMIO
)
44 writeb(cmd
, (void __iomem
*)hwif
->io_ports
.command_addr
);
46 outb(cmd
, hwif
->io_ports
.command_addr
);
48 EXPORT_SYMBOL_GPL(ide_exec_command
);
50 u8
ide_read_status(ide_hwif_t
*hwif
)
52 if (hwif
->host_flags
& IDE_HFLAG_MMIO
)
53 return readb((void __iomem
*)hwif
->io_ports
.status_addr
);
55 return inb(hwif
->io_ports
.status_addr
);
57 EXPORT_SYMBOL_GPL(ide_read_status
);
59 u8
ide_read_altstatus(ide_hwif_t
*hwif
)
61 if (hwif
->host_flags
& IDE_HFLAG_MMIO
)
62 return readb((void __iomem
*)hwif
->io_ports
.ctl_addr
);
64 return inb(hwif
->io_ports
.ctl_addr
);
66 EXPORT_SYMBOL_GPL(ide_read_altstatus
);
68 void ide_write_devctl(ide_hwif_t
*hwif
, u8 ctl
)
70 if (hwif
->host_flags
& IDE_HFLAG_MMIO
)
71 writeb(ctl
, (void __iomem
*)hwif
->io_ports
.ctl_addr
);
73 outb(ctl
, hwif
->io_ports
.ctl_addr
);
75 EXPORT_SYMBOL_GPL(ide_write_devctl
);
77 void ide_dev_select(ide_drive_t
*drive
)
79 ide_hwif_t
*hwif
= drive
->hwif
;
80 u8 select
= drive
->select
| ATA_DEVICE_OBS
;
82 if (hwif
->host_flags
& IDE_HFLAG_MMIO
)
83 writeb(select
, (void __iomem
*)hwif
->io_ports
.device_addr
);
85 outb(select
, hwif
->io_ports
.device_addr
);
87 EXPORT_SYMBOL_GPL(ide_dev_select
);
89 void ide_tf_load(ide_drive_t
*drive
, struct ide_taskfile
*tf
, u8 valid
)
91 ide_hwif_t
*hwif
= drive
->hwif
;
92 struct ide_io_ports
*io_ports
= &hwif
->io_ports
;
93 void (*tf_outb
)(u8 addr
, unsigned long port
);
94 u8 mmio
= (hwif
->host_flags
& IDE_HFLAG_MMIO
) ? 1 : 0;
97 tf_outb
= ide_mm_outb
;
101 if (valid
& IDE_VALID_FEATURE
)
102 tf_outb(tf
->feature
, io_ports
->feature_addr
);
103 if (valid
& IDE_VALID_NSECT
)
104 tf_outb(tf
->nsect
, io_ports
->nsect_addr
);
105 if (valid
& IDE_VALID_LBAL
)
106 tf_outb(tf
->lbal
, io_ports
->lbal_addr
);
107 if (valid
& IDE_VALID_LBAM
)
108 tf_outb(tf
->lbam
, io_ports
->lbam_addr
);
109 if (valid
& IDE_VALID_LBAH
)
110 tf_outb(tf
->lbah
, io_ports
->lbah_addr
);
111 if (valid
& IDE_VALID_DEVICE
)
112 tf_outb(tf
->device
, io_ports
->device_addr
);
114 EXPORT_SYMBOL_GPL(ide_tf_load
);
116 void ide_tf_read(ide_drive_t
*drive
, struct ide_taskfile
*tf
, u8 valid
)
118 ide_hwif_t
*hwif
= drive
->hwif
;
119 struct ide_io_ports
*io_ports
= &hwif
->io_ports
;
120 u8 (*tf_inb
)(unsigned long port
);
121 u8 mmio
= (hwif
->host_flags
& IDE_HFLAG_MMIO
) ? 1 : 0;
128 if (valid
& IDE_VALID_ERROR
)
129 tf
->error
= tf_inb(io_ports
->feature_addr
);
130 if (valid
& IDE_VALID_NSECT
)
131 tf
->nsect
= tf_inb(io_ports
->nsect_addr
);
132 if (valid
& IDE_VALID_LBAL
)
133 tf
->lbal
= tf_inb(io_ports
->lbal_addr
);
134 if (valid
& IDE_VALID_LBAM
)
135 tf
->lbam
= tf_inb(io_ports
->lbam_addr
);
136 if (valid
& IDE_VALID_LBAH
)
137 tf
->lbah
= tf_inb(io_ports
->lbah_addr
);
138 if (valid
& IDE_VALID_DEVICE
)
139 tf
->device
= tf_inb(io_ports
->device_addr
);
141 EXPORT_SYMBOL_GPL(ide_tf_read
);
144 * Some localbus EIDE interfaces require a special access sequence
145 * when using 32-bit I/O instructions to transfer data. We call this
146 * the "vlb_sync" sequence, which consists of three successive reads
147 * of the sector count register location, with interrupts disabled
148 * to ensure that the reads all happen together.
150 static void ata_vlb_sync(unsigned long port
)
158 * This is used for most PIO data transfers *from* the IDE interface
160 * These routines will round up any request for an odd number of bytes,
161 * so if an odd len is specified, be sure that there's at least one
162 * extra byte allocated for the buffer.
164 void ide_input_data(ide_drive_t
*drive
, struct ide_cmd
*cmd
, void *buf
,
167 ide_hwif_t
*hwif
= drive
->hwif
;
168 struct ide_io_ports
*io_ports
= &hwif
->io_ports
;
169 unsigned long data_addr
= io_ports
->data_addr
;
170 unsigned int words
= (len
+ 1) >> 1;
171 u8 io_32bit
= drive
->io_32bit
;
172 u8 mmio
= (hwif
->host_flags
& IDE_HFLAG_MMIO
) ? 1 : 0;
175 unsigned long uninitialized_var(flags
);
177 if ((io_32bit
& 2) && !mmio
) {
178 local_irq_save(flags
);
179 ata_vlb_sync(io_ports
->nsect_addr
);
184 __ide_mm_insl((void __iomem
*)data_addr
, buf
, words
);
186 insl(data_addr
, buf
, words
);
188 if ((io_32bit
& 2) && !mmio
)
189 local_irq_restore(flags
);
191 if (((len
+ 1) & 3) < 2)
199 __ide_mm_insw((void __iomem
*)data_addr
, buf
, words
);
201 insw(data_addr
, buf
, words
);
203 EXPORT_SYMBOL_GPL(ide_input_data
);
206 * This is used for most PIO data transfers *to* the IDE interface
208 void ide_output_data(ide_drive_t
*drive
, struct ide_cmd
*cmd
, void *buf
,
211 ide_hwif_t
*hwif
= drive
->hwif
;
212 struct ide_io_ports
*io_ports
= &hwif
->io_ports
;
213 unsigned long data_addr
= io_ports
->data_addr
;
214 unsigned int words
= (len
+ 1) >> 1;
215 u8 io_32bit
= drive
->io_32bit
;
216 u8 mmio
= (hwif
->host_flags
& IDE_HFLAG_MMIO
) ? 1 : 0;
219 unsigned long uninitialized_var(flags
);
221 if ((io_32bit
& 2) && !mmio
) {
222 local_irq_save(flags
);
223 ata_vlb_sync(io_ports
->nsect_addr
);
228 __ide_mm_outsl((void __iomem
*)data_addr
, buf
, words
);
230 outsl(data_addr
, buf
, words
);
232 if ((io_32bit
& 2) && !mmio
)
233 local_irq_restore(flags
);
235 if (((len
+ 1) & 3) < 2)
243 __ide_mm_outsw((void __iomem
*)data_addr
, buf
, words
);
245 outsw(data_addr
, buf
, words
);
247 EXPORT_SYMBOL_GPL(ide_output_data
);
249 const struct ide_tp_ops default_tp_ops
= {
250 .exec_command
= ide_exec_command
,
251 .read_status
= ide_read_status
,
252 .read_altstatus
= ide_read_altstatus
,
253 .write_devctl
= ide_write_devctl
,
255 .dev_select
= ide_dev_select
,
256 .tf_load
= ide_tf_load
,
257 .tf_read
= ide_tf_read
,
259 .input_data
= ide_input_data
,
260 .output_data
= ide_output_data
,