blob: 5c808fbc6ce2c8f7c4872b8beeeb818b3ab5bfd1 [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Generic Macintosh NCR5380 driver
4 *
5 * Copyright 1998, Michael Schmitz <mschmitz@lbl.gov>
6 *
Finn Thain78ff7512019-06-09 11:19:11 +10007 * Copyright 2019 Finn Thain
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * derived in part from:
10 */
11/*
12 * Generic Generic NCR5380 driver
13 *
14 * Copyright 1995, Russell King
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 */
16
Finn Thain78ff7512019-06-09 11:19:11 +100017#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/ioport.h>
21#include <linux/init.h>
22#include <linux/blkdev.h>
23#include <linux/interrupt.h>
Finn Thaincbad48d2014-11-12 16:12:07 +110024#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Finn Thaincbad48d2014-11-12 16:12:07 +110026#include <asm/hwtest.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/io.h>
Finn Thain8fb9a642019-06-09 11:19:11 +100028#include <asm/macintosh.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/macints.h>
Finn Thaincbad48d2014-11-12 16:12:07 +110030#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <scsi/scsi_host.h>
Finn Thain92de3832014-11-12 16:12:04 +110033
34/* Definitions for the core NCR5380 driver. */
Boaz Harroshe744fde2007-10-16 10:25:01 +020035
Finn Thain820682b2016-10-10 00:46:53 -040036#define NCR5380_implementation_fields int pdma_residual
Finn Thain92de3832014-11-12 16:12:04 +110037
Finn Thain61e1ce52016-10-10 00:46:53 -040038#define NCR5380_read(reg) in_8(hostdata->io + ((reg) << 4))
39#define NCR5380_write(reg, value) out_8(hostdata->io + ((reg) << 4), value)
Finn Thain92de3832014-11-12 16:12:04 +110040
Finn Thain4a98f892016-10-10 00:46:53 -040041#define NCR5380_dma_xfer_len macscsi_dma_xfer_len
Finn Thain6c4b88c2016-03-23 21:10:17 +110042#define NCR5380_dma_recv_setup macscsi_pread
43#define NCR5380_dma_send_setup macscsi_pwrite
Finn Thain4a98f892016-10-10 00:46:53 -040044#define NCR5380_dma_residual macscsi_dma_residual
Finn Thain92de3832014-11-12 16:12:04 +110045
46#define NCR5380_intr macscsi_intr
47#define NCR5380_queue_command macscsi_queue_command
48#define NCR5380_abort macscsi_abort
Hannes Reinecke12e5fc62017-08-25 13:57:10 +020049#define NCR5380_host_reset macscsi_host_reset
Finn Thain92de3832014-11-12 16:12:04 +110050#define NCR5380_info macscsi_info
Finn Thain92de3832014-11-12 16:12:04 +110051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include "NCR5380.h"
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054static int setup_can_queue = -1;
Finn Thain6e9ae6d2014-11-12 16:12:05 +110055module_param(setup_can_queue, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056static int setup_cmd_per_lun = -1;
Finn Thain6e9ae6d2014-11-12 16:12:05 +110057module_param(setup_cmd_per_lun, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static int setup_sg_tablesize = -1;
Finn Thain6e9ae6d2014-11-12 16:12:05 +110059module_param(setup_sg_tablesize, int, 0);
Finn Thain7398cee2019-06-09 11:19:11 +100060static int setup_use_pdma = 512;
Finn Thain6e9ae6d2014-11-12 16:12:05 +110061module_param(setup_use_pdma, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static int setup_hostid = -1;
Finn Thain6e9ae6d2014-11-12 16:12:05 +110063module_param(setup_hostid, int, 0);
Finn Thain9c3f0e22016-01-03 16:05:11 +110064static int setup_toshiba_delay = -1;
65module_param(setup_toshiba_delay, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Finn Thain6e9ae6d2014-11-12 16:12:05 +110067#ifndef MODULE
68static int __init mac_scsi_setup(char *str)
69{
Finn Thain9c3f0e22016-01-03 16:05:11 +110070 int ints[8];
Finn Thain6e9ae6d2014-11-12 16:12:05 +110071
72 (void)get_options(str, ARRAY_SIZE(ints), ints);
73
Finn Thain9c3f0e22016-01-03 16:05:11 +110074 if (ints[0] < 1) {
75 pr_err("Usage: mac5380=<can_queue>[,<cmd_per_lun>[,<sg_tablesize>[,<hostid>[,<use_tags>[,<use_pdma>[,<toshiba_delay>]]]]]]\n");
Finn Thain6e9ae6d2014-11-12 16:12:05 +110076 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 }
Finn Thain6e9ae6d2014-11-12 16:12:05 +110078 if (ints[0] >= 1)
79 setup_can_queue = ints[1];
80 if (ints[0] >= 2)
81 setup_cmd_per_lun = ints[2];
82 if (ints[0] >= 3)
83 setup_sg_tablesize = ints[3];
84 if (ints[0] >= 4)
85 setup_hostid = ints[4];
Finn Thainc4ec6f92016-03-23 21:10:22 +110086 /* ints[5] (use_tagged_queuing) is ignored */
Finn Thain6e9ae6d2014-11-12 16:12:05 +110087 if (ints[0] >= 6)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 setup_use_pdma = ints[6];
Finn Thain9c3f0e22016-01-03 16:05:11 +110089 if (ints[0] >= 7)
90 setup_toshiba_delay = ints[7];
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 return 1;
92}
93
94__setup("mac5380=", mac_scsi_setup);
Finn Thain6e9ae6d2014-11-12 16:12:05 +110095#endif /* !MODULE */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Finn Thain78ff7512019-06-09 11:19:11 +100097/*
98 * According to "Inside Macintosh: Devices", Mac OS requires disk drivers to
99 * specify the number of bytes between the delays expected from a SCSI target.
100 * This allows the operating system to "prevent bus errors when a target fails
101 * to deliver the next byte within the processor bus error timeout period."
102 * Linux SCSI drivers lack knowledge of the timing behaviour of SCSI targets
103 * so bus errors are unavoidable.
104 *
105 * If a MOVE.B instruction faults, we assume that zero bytes were transferred
106 * and simply retry. That assumption probably depends on target behaviour but
107 * seems to hold up okay. The NOP provides synchronization: without it the
108 * fault can sometimes occur after the program counter has moved past the
109 * offending instruction. Post-increment addressing can't be used.
110 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Finn Thain78ff7512019-06-09 11:19:11 +1000112#define MOVE_BYTE(operands) \
113 asm volatile ( \
114 "1: moveb " operands " \n" \
115 "11: nop \n" \
116 " addq #1,%0 \n" \
117 " subq #1,%1 \n" \
118 "40: \n" \
119 " \n" \
120 ".section .fixup,\"ax\" \n" \
121 ".even \n" \
122 "90: movel #1, %2 \n" \
123 " jra 40b \n" \
124 ".previous \n" \
125 " \n" \
126 ".section __ex_table,\"a\" \n" \
127 ".align 4 \n" \
128 ".long 1b,90b \n" \
129 ".long 11b,90b \n" \
130 ".previous \n" \
131 : "+a" (addr), "+r" (n), "+r" (result) : "a" (io))
132
133/*
134 * If a MOVE.W (or MOVE.L) instruction faults, it cannot be retried because
135 * the residual byte count would be uncertain. In that situation the MOVE_WORD
136 * macro clears n in the fixup section to abort the transfer.
137 */
138
139#define MOVE_WORD(operands) \
140 asm volatile ( \
141 "1: movew " operands " \n" \
142 "11: nop \n" \
143 " subq #2,%1 \n" \
144 "40: \n" \
145 " \n" \
146 ".section .fixup,\"ax\" \n" \
147 ".even \n" \
148 "90: movel #0, %1 \n" \
149 " movel #2, %2 \n" \
150 " jra 40b \n" \
151 ".previous \n" \
152 " \n" \
153 ".section __ex_table,\"a\" \n" \
154 ".align 4 \n" \
155 ".long 1b,90b \n" \
156 ".long 11b,90b \n" \
157 ".previous \n" \
158 : "+a" (addr), "+r" (n), "+r" (result) : "a" (io))
159
160#define MOVE_16_WORDS(operands) \
161 asm volatile ( \
162 "1: movew " operands " \n" \
163 "2: movew " operands " \n" \
164 "3: movew " operands " \n" \
165 "4: movew " operands " \n" \
166 "5: movew " operands " \n" \
167 "6: movew " operands " \n" \
168 "7: movew " operands " \n" \
169 "8: movew " operands " \n" \
170 "9: movew " operands " \n" \
171 "10: movew " operands " \n" \
172 "11: movew " operands " \n" \
173 "12: movew " operands " \n" \
174 "13: movew " operands " \n" \
175 "14: movew " operands " \n" \
176 "15: movew " operands " \n" \
177 "16: movew " operands " \n" \
178 "17: nop \n" \
179 " subl #32,%1 \n" \
180 "40: \n" \
181 " \n" \
182 ".section .fixup,\"ax\" \n" \
183 ".even \n" \
184 "90: movel #0, %1 \n" \
185 " movel #2, %2 \n" \
186 " jra 40b \n" \
187 ".previous \n" \
188 " \n" \
189 ".section __ex_table,\"a\" \n" \
190 ".align 4 \n" \
191 ".long 1b,90b \n" \
192 ".long 2b,90b \n" \
193 ".long 3b,90b \n" \
194 ".long 4b,90b \n" \
195 ".long 5b,90b \n" \
196 ".long 6b,90b \n" \
197 ".long 7b,90b \n" \
198 ".long 8b,90b \n" \
199 ".long 9b,90b \n" \
200 ".long 10b,90b \n" \
201 ".long 11b,90b \n" \
202 ".long 12b,90b \n" \
203 ".long 13b,90b \n" \
204 ".long 14b,90b \n" \
205 ".long 15b,90b \n" \
206 ".long 16b,90b \n" \
207 ".long 17b,90b \n" \
208 ".previous \n" \
209 : "+a" (addr), "+r" (n), "+r" (result) : "a" (io))
210
211#define MAC_PDMA_DELAY 32
212
213static inline int mac_pdma_recv(void __iomem *io, unsigned char *start, int n)
214{
215 unsigned char *addr = start;
216 int result = 0;
217
218 if (n >= 1) {
219 MOVE_BYTE("%3@,%0@");
220 if (result)
221 goto out;
222 }
223 if (n >= 1 && ((unsigned long)addr & 1)) {
224 MOVE_BYTE("%3@,%0@");
225 if (result)
226 goto out;
227 }
228 while (n >= 32)
229 MOVE_16_WORDS("%3@,%0@+");
230 while (n >= 2)
231 MOVE_WORD("%3@,%0@+");
232 if (result)
233 return start - addr; /* Negated to indicate uncertain length */
234 if (n == 1)
235 MOVE_BYTE("%3@,%0@");
236out:
237 return addr - start;
238}
239
240static inline int mac_pdma_send(unsigned char *start, void __iomem *io, int n)
241{
242 unsigned char *addr = start;
243 int result = 0;
244
245 if (n >= 1) {
246 MOVE_BYTE("%0@,%3@");
247 if (result)
248 goto out;
249 }
250 if (n >= 1 && ((unsigned long)addr & 1)) {
251 MOVE_BYTE("%0@,%3@");
252 if (result)
253 goto out;
254 }
255 while (n >= 32)
256 MOVE_16_WORDS("%0@+,%3@");
257 while (n >= 2)
258 MOVE_WORD("%0@+,%3@");
259 if (result)
260 return start - addr; /* Negated to indicate uncertain length */
261 if (n == 1)
262 MOVE_BYTE("%0@,%3@");
263out:
264 return addr - start;
265}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Finn Thain8fb9a642019-06-09 11:19:11 +1000267/* The "SCSI DMA" chip on the IIfx implements this register. */
268#define CTRL_REG 0x8
269#define CTRL_INTERRUPTS_ENABLE BIT(1)
270#define CTRL_HANDSHAKE_MODE BIT(3)
271
272static inline void write_ctrl_reg(struct NCR5380_hostdata *hostdata, u32 value)
273{
274 out_be32(hostdata->io + (CTRL_REG << 4), value);
275}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Finn Thain4a98f892016-10-10 00:46:53 -0400277static inline int macscsi_pread(struct NCR5380_hostdata *hostdata,
278 unsigned char *dst, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Finn Thain4ab2a782017-01-15 18:50:57 -0500280 u8 __iomem *s = hostdata->pdma_io + (INPUT_DATA_REG << 4);
Finn Thain3a0f64b2016-03-23 21:10:31 +1100281 unsigned char *d = dst;
Finn Thain8fb9a642019-06-09 11:19:11 +1000282 int result = 0;
Finn Thain78ff7512019-06-09 11:19:11 +1000283
284 hostdata->pdma_residual = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Finn Thaind5d37a02016-10-10 00:46:53 -0400286 while (!NCR5380_poll_politely(hostdata, BUS_AND_STATUS_REG,
Finn Thain3a0f64b2016-03-23 21:10:31 +1100287 BASR_DRQ | BASR_PHASE_MATCH,
Ahmed S. Darwishe7734ef2020-12-06 08:51:57 +0100288 BASR_DRQ | BASR_PHASE_MATCH, 0)) {
Finn Thain78ff7512019-06-09 11:19:11 +1000289 int bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Finn Thain8fb9a642019-06-09 11:19:11 +1000291 if (macintosh_config->ident == MAC_MODEL_IIFX)
292 write_ctrl_reg(hostdata, CTRL_HANDSHAKE_MODE |
293 CTRL_INTERRUPTS_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Finn Thain78ff7512019-06-09 11:19:11 +1000295 bytes = mac_pdma_recv(s, d, min(hostdata->pdma_residual, 512));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Finn Thain78ff7512019-06-09 11:19:11 +1000297 if (bytes > 0) {
298 d += bytes;
299 hostdata->pdma_residual -= bytes;
300 }
301
302 if (hostdata->pdma_residual == 0)
Finn Thain8fb9a642019-06-09 11:19:11 +1000303 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Finn Thaind5d37a02016-10-10 00:46:53 -0400305 if (NCR5380_poll_politely2(hostdata, STATUS_REG, SR_REQ, SR_REQ,
Finn Thain78ff7512019-06-09 11:19:11 +1000306 BUS_AND_STATUS_REG, BASR_ACK,
Ahmed S. Darwishe7734ef2020-12-06 08:51:57 +0100307 BASR_ACK, 0) < 0)
Finn Thain78ff7512019-06-09 11:19:11 +1000308 scmd_printk(KERN_DEBUG, hostdata->connected,
Finn Thain3a0f64b2016-03-23 21:10:31 +1100309 "%s: !REQ and !ACK\n", __func__);
310 if (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_PHASE_MATCH))
Finn Thain8fb9a642019-06-09 11:19:11 +1000311 goto out;
Finn Thain3a0f64b2016-03-23 21:10:31 +1100312
Finn Thain78ff7512019-06-09 11:19:11 +1000313 if (bytes == 0)
314 udelay(MAC_PDMA_DELAY);
315
316 if (bytes >= 0)
317 continue;
Finn Thain3a0f64b2016-03-23 21:10:31 +1100318
Finn Thain4a98f892016-10-10 00:46:53 -0400319 dsprintk(NDEBUG_PSEUDO_DMA, hostdata->host,
Finn Thain78ff7512019-06-09 11:19:11 +1000320 "%s: bus error (%d/%d)\n", __func__, d - dst, len);
Finn Thain4a98f892016-10-10 00:46:53 -0400321 NCR5380_dprint(NDEBUG_PSEUDO_DMA, hostdata->host);
Finn Thain8fb9a642019-06-09 11:19:11 +1000322 result = -1;
323 goto out;
Finn Thainffdede62014-11-12 16:12:06 +1100324 }
325
Finn Thain3a0f64b2016-03-23 21:10:31 +1100326 scmd_printk(KERN_ERR, hostdata->connected,
327 "%s: phase mismatch or !DRQ\n", __func__);
Finn Thain4a98f892016-10-10 00:46:53 -0400328 NCR5380_dprint(NDEBUG_PSEUDO_DMA, hostdata->host);
Finn Thain8fb9a642019-06-09 11:19:11 +1000329 result = -1;
330out:
331 if (macintosh_config->ident == MAC_MODEL_IIFX)
332 write_ctrl_reg(hostdata, CTRL_INTERRUPTS_ENABLE);
333 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
Finn Thain4a98f892016-10-10 00:46:53 -0400336static inline int macscsi_pwrite(struct NCR5380_hostdata *hostdata,
337 unsigned char *src, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Finn Thain3a0f64b2016-03-23 21:10:31 +1100339 unsigned char *s = src;
Finn Thain4ab2a782017-01-15 18:50:57 -0500340 u8 __iomem *d = hostdata->pdma_io + (OUTPUT_DATA_REG << 4);
Finn Thain8fb9a642019-06-09 11:19:11 +1000341 int result = 0;
Finn Thain78ff7512019-06-09 11:19:11 +1000342
343 hostdata->pdma_residual = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Finn Thaind5d37a02016-10-10 00:46:53 -0400345 while (!NCR5380_poll_politely(hostdata, BUS_AND_STATUS_REG,
Finn Thain3a0f64b2016-03-23 21:10:31 +1100346 BASR_DRQ | BASR_PHASE_MATCH,
Ahmed S. Darwishe7734ef2020-12-06 08:51:57 +0100347 BASR_DRQ | BASR_PHASE_MATCH, 0)) {
Finn Thain78ff7512019-06-09 11:19:11 +1000348 int bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Finn Thain8fb9a642019-06-09 11:19:11 +1000350 if (macintosh_config->ident == MAC_MODEL_IIFX)
351 write_ctrl_reg(hostdata, CTRL_HANDSHAKE_MODE |
352 CTRL_INTERRUPTS_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Finn Thain78ff7512019-06-09 11:19:11 +1000354 bytes = mac_pdma_send(s, d, min(hostdata->pdma_residual, 512));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Finn Thain78ff7512019-06-09 11:19:11 +1000356 if (bytes > 0) {
357 s += bytes;
358 hostdata->pdma_residual -= bytes;
Finn Thain3a0f64b2016-03-23 21:10:31 +1100359 }
360
Finn Thain78ff7512019-06-09 11:19:11 +1000361 if (hostdata->pdma_residual == 0) {
Finn Thain3a0f64b2016-03-23 21:10:31 +1100362 if (NCR5380_poll_politely(hostdata, TARGET_COMMAND_REG,
363 TCR_LAST_BYTE_SENT,
Finn Thain7c1f3e32019-06-09 11:19:11 +1000364 TCR_LAST_BYTE_SENT,
Ahmed S. Darwishe7734ef2020-12-06 08:51:57 +0100365 0) < 0) {
Finn Thain3a0f64b2016-03-23 21:10:31 +1100366 scmd_printk(KERN_ERR, hostdata->connected,
367 "%s: Last Byte Sent timeout\n", __func__);
Finn Thain7c1f3e32019-06-09 11:19:11 +1000368 result = -1;
369 }
Finn Thain8fb9a642019-06-09 11:19:11 +1000370 goto out;
Finn Thain3a0f64b2016-03-23 21:10:31 +1100371 }
372
Finn Thain78ff7512019-06-09 11:19:11 +1000373 if (NCR5380_poll_politely2(hostdata, STATUS_REG, SR_REQ, SR_REQ,
374 BUS_AND_STATUS_REG, BASR_ACK,
Ahmed S. Darwishe7734ef2020-12-06 08:51:57 +0100375 BASR_ACK, 0) < 0)
Finn Thain78ff7512019-06-09 11:19:11 +1000376 scmd_printk(KERN_DEBUG, hostdata->connected,
377 "%s: !REQ and !ACK\n", __func__);
378 if (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_PHASE_MATCH))
Finn Thain8fb9a642019-06-09 11:19:11 +1000379 goto out;
Finn Thain78ff7512019-06-09 11:19:11 +1000380
381 if (bytes == 0)
382 udelay(MAC_PDMA_DELAY);
383
384 if (bytes >= 0)
385 continue;
386
Finn Thain4a98f892016-10-10 00:46:53 -0400387 dsprintk(NDEBUG_PSEUDO_DMA, hostdata->host,
Finn Thain78ff7512019-06-09 11:19:11 +1000388 "%s: bus error (%d/%d)\n", __func__, s - src, len);
Finn Thain4a98f892016-10-10 00:46:53 -0400389 NCR5380_dprint(NDEBUG_PSEUDO_DMA, hostdata->host);
Finn Thain8fb9a642019-06-09 11:19:11 +1000390 result = -1;
391 goto out;
Finn Thainffdede62014-11-12 16:12:06 +1100392 }
393
Finn Thain3a0f64b2016-03-23 21:10:31 +1100394 scmd_printk(KERN_ERR, hostdata->connected,
395 "%s: phase mismatch or !DRQ\n", __func__);
Finn Thain4a98f892016-10-10 00:46:53 -0400396 NCR5380_dprint(NDEBUG_PSEUDO_DMA, hostdata->host);
Finn Thain8fb9a642019-06-09 11:19:11 +1000397 result = -1;
398out:
399 if (macintosh_config->ident == MAC_MODEL_IIFX)
400 write_ctrl_reg(hostdata, CTRL_INTERRUPTS_ENABLE);
401 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Finn Thain4a98f892016-10-10 00:46:53 -0400404static int macscsi_dma_xfer_len(struct NCR5380_hostdata *hostdata,
Finn Thain7e9ec8d2016-03-23 21:10:11 +1100405 struct scsi_cmnd *cmd)
406{
Finn Thain3a0f64b2016-03-23 21:10:31 +1100407 if (hostdata->flags & FLAG_NO_PSEUDO_DMA ||
Finn Thain7398cee2019-06-09 11:19:11 +1000408 cmd->SCp.this_residual < setup_use_pdma)
Finn Thain7e9ec8d2016-03-23 21:10:11 +1100409 return 0;
410
Finn Thain3a0f64b2016-03-23 21:10:31 +1100411 return cmd->SCp.this_residual;
Finn Thain7e9ec8d2016-03-23 21:10:11 +1100412}
413
Finn Thain4a98f892016-10-10 00:46:53 -0400414static int macscsi_dma_residual(struct NCR5380_hostdata *hostdata)
415{
416 return hostdata->pdma_residual;
417}
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419#include "NCR5380.c"
420
Finn Thaincbad48d2014-11-12 16:12:07 +1100421#define DRV_MODULE_NAME "mac_scsi"
422#define PFX DRV_MODULE_NAME ": "
423
424static struct scsi_host_template mac_scsi_template = {
Finn Thainaa2e2cb12016-01-03 16:05:48 +1100425 .module = THIS_MODULE,
426 .proc_name = DRV_MODULE_NAME,
Finn Thainaa2e2cb12016-01-03 16:05:48 +1100427 .name = "Macintosh NCR5380 SCSI",
428 .info = macscsi_info,
429 .queuecommand = macscsi_queue_command,
430 .eh_abort_handler = macscsi_abort,
Hannes Reinecke12e5fc62017-08-25 13:57:10 +0200431 .eh_host_reset_handler = macscsi_host_reset,
Finn Thainaa2e2cb12016-01-03 16:05:48 +1100432 .can_queue = 16,
433 .this_id = 7,
Finn Thain3a0f64b2016-03-23 21:10:31 +1100434 .sg_tablesize = 1,
Finn Thainaa2e2cb12016-01-03 16:05:48 +1100435 .cmd_per_lun = 2,
Christoph Hellwig4af14d12018-12-13 16:17:09 +0100436 .dma_boundary = PAGE_SIZE - 1,
Finn Thain32b26a12016-01-03 16:05:58 +1100437 .cmd_size = NCR5380_CMD_SIZE,
Finn Thain0a4e3612016-01-03 16:06:07 +1100438 .max_sectors = 128,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439};
440
Finn Thaincbad48d2014-11-12 16:12:07 +1100441static int __init mac_scsi_probe(struct platform_device *pdev)
442{
443 struct Scsi_Host *instance;
Finn Thain820682b2016-10-10 00:46:53 -0400444 struct NCR5380_hostdata *hostdata;
Finn Thaincbad48d2014-11-12 16:12:07 +1100445 int error;
446 int host_flags = 0;
447 struct resource *irq, *pio_mem, *pdma_mem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Finn Thaincbad48d2014-11-12 16:12:07 +1100449 pio_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
450 if (!pio_mem)
451 return -ENODEV;
Finn Thain6e9ae6d2014-11-12 16:12:05 +1100452
Finn Thaincbad48d2014-11-12 16:12:07 +1100453 pdma_mem = platform_get_resource(pdev, IORESOURCE_MEM, 1);
Finn Thaincbad48d2014-11-12 16:12:07 +1100454
455 irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
456
457 if (!hwreg_present((unsigned char *)pio_mem->start +
458 (STATUS_REG << 4))) {
459 pr_info(PFX "no device detected at %pap\n", &pio_mem->start);
460 return -ENODEV;
461 }
462
463 if (setup_can_queue > 0)
464 mac_scsi_template.can_queue = setup_can_queue;
465 if (setup_cmd_per_lun > 0)
466 mac_scsi_template.cmd_per_lun = setup_cmd_per_lun;
Finn Thain79172ab2019-11-02 12:06:54 +1100467 if (setup_sg_tablesize > 0)
Finn Thaincbad48d2014-11-12 16:12:07 +1100468 mac_scsi_template.sg_tablesize = setup_sg_tablesize;
469 if (setup_hostid >= 0)
470 mac_scsi_template.this_id = setup_hostid & 7;
Finn Thaincbad48d2014-11-12 16:12:07 +1100471
472 instance = scsi_host_alloc(&mac_scsi_template,
473 sizeof(struct NCR5380_hostdata));
474 if (!instance)
475 return -ENOMEM;
476
Finn Thaincbad48d2014-11-12 16:12:07 +1100477 if (irq)
478 instance->irq = irq->start;
479 else
480 instance->irq = NO_IRQ;
481
Finn Thain820682b2016-10-10 00:46:53 -0400482 hostdata = shost_priv(instance);
483 hostdata->base = pio_mem->start;
Finn Thain4ab2a782017-01-15 18:50:57 -0500484 hostdata->io = (u8 __iomem *)pio_mem->start;
Finn Thaincbad48d2014-11-12 16:12:07 +1100485
Finn Thain820682b2016-10-10 00:46:53 -0400486 if (pdma_mem && setup_use_pdma)
Finn Thain4ab2a782017-01-15 18:50:57 -0500487 hostdata->pdma_io = (u8 __iomem *)pdma_mem->start;
Finn Thain820682b2016-10-10 00:46:53 -0400488 else
Finn Thaincbad48d2014-11-12 16:12:07 +1100489 host_flags |= FLAG_NO_PSEUDO_DMA;
490
Finn Thain9c3f0e22016-01-03 16:05:11 +1100491 host_flags |= setup_toshiba_delay > 0 ? FLAG_TOSHIBA_DELAY : 0;
Finn Thainca513fc2014-11-12 16:12:19 +1100492
Finn Thain8053b0e2016-03-23 21:10:19 +1100493 error = NCR5380_init(instance, host_flags | FLAG_LATE_DMA_SETUP);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100494 if (error)
495 goto fail_init;
Finn Thaincbad48d2014-11-12 16:12:07 +1100496
497 if (instance->irq != NO_IRQ) {
498 error = request_irq(instance->irq, macscsi_intr, IRQF_SHARED,
499 "NCR5380", instance);
500 if (error)
501 goto fail_irq;
502 }
503
Finn Thain9c3f0e22016-01-03 16:05:11 +1100504 NCR5380_maybe_reset_bus(instance);
505
Finn Thaincbad48d2014-11-12 16:12:07 +1100506 error = scsi_add_host(instance, NULL);
507 if (error)
508 goto fail_host;
509
510 platform_set_drvdata(pdev, instance);
511
512 scsi_scan_host(instance);
513 return 0;
514
515fail_host:
516 if (instance->irq != NO_IRQ)
517 free_irq(instance->irq, instance);
518fail_irq:
519 NCR5380_exit(instance);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100520fail_init:
Finn Thaincbad48d2014-11-12 16:12:07 +1100521 scsi_host_put(instance);
522 return error;
523}
524
525static int __exit mac_scsi_remove(struct platform_device *pdev)
526{
527 struct Scsi_Host *instance = platform_get_drvdata(pdev);
528
529 scsi_remove_host(instance);
530 if (instance->irq != NO_IRQ)
531 free_irq(instance->irq, instance);
532 NCR5380_exit(instance);
533 scsi_host_put(instance);
534 return 0;
535}
536
537static struct platform_driver mac_scsi_driver = {
538 .remove = __exit_p(mac_scsi_remove),
539 .driver = {
540 .name = DRV_MODULE_NAME,
Finn Thaincbad48d2014-11-12 16:12:07 +1100541 },
542};
543
544module_platform_driver_probe(mac_scsi_driver, mac_scsi_probe);
545
546MODULE_ALIAS("platform:" DRV_MODULE_NAME);
Finn Thain6e9ae6d2014-11-12 16:12:05 +1100547MODULE_LICENSE("GPL");