Home | History | Annotate | Download | only in pci

Lines Matching refs:drive

84  * drive which does not support UDMA modes.
129 #define APO_DATATIM_RECOV(channel, drive, x) (((x) & 0xf) << \
130 (((1 - (channel)) << 4) + ((1 - (drive)) << 3)))
131 #define APO_DATATIM_PULSE(channel, drive, x) (((x) & 0xf) << \
132 (((1 - (channel)) << 4) + ((1 - (drive)) << 3) + 4))
140 #define APO_UDMA_TIME(channel, drive, x) (((x) & 0xf) << \
141 (((1 - (channel)) << 4) + ((1 - (drive)) << 3)))
142 #define APO_UDMA_PIO_MODE(channel, drive) (0x20 << \
143 (((1 - (channel)) << 4) + ((1 - (drive)) << 3))) /* via only */
144 #define APO_UDMA_EN(channel, drive) (0x40 << \
145 (((1 - (channel)) << 4) + ((1 - (drive)) << 3)))
146 #define APO_UDMA_EN_MTH(channel, drive) (0x80 << \
147 (((1 - (channel)) << 4) + ((1 - (drive)) << 3)))