blob: 701b842296f05259a47f6543b1432debbcf42cef [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 * Sun3 SCSI stuff by Erik Verbruggen (erik@bigmama.xtdnet.nl)
4 *
5 * Sun3 DMA routines added by Sam Creasey (sammy@sammy.net)
6 *
Finn Thain757f5ba2014-03-18 11:42:24 +11007 * VME support added by Sam Creasey
8 *
9 * TODO: modify this driver to support multiple Sun3 SCSI VME boards
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Adapted from mac_scsinew.c:
12 */
13/*
14 * Generic Macintosh NCR5380 driver
15 *
16 * Copyright 1998, Michael Schmitz <mschmitz@lbl.gov>
17 *
18 * derived in part from:
19 */
20/*
21 * Generic Generic NCR5380 driver
22 *
23 * Copyright 1995, Russell King
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/ioport.h>
30#include <linux/init.h>
31#include <linux/blkdev.h>
Finn Thain0d31f872014-11-13 12:21:28 +110032#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/dvma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <scsi/scsi_host.h>
Finn Thain2231ef82014-11-12 16:12:12 +110038
Finn Thain8dad0c52014-11-12 16:12:17 +110039/* minimum number of bytes to do dma on */
40#define DMA_MIN_SIZE 129
Finn Thain2231ef82014-11-12 16:12:12 +110041
Finn Thaine63449c2016-03-23 21:10:13 +110042/* Definitions for the core NCR5380 driver. */
43
Finn Thain2231ef82014-11-12 16:12:12 +110044#define NCR5380_implementation_fields /* none */
45
Finn Thain61e1ce52016-10-10 00:46:53 -040046#define NCR5380_read(reg) in_8(hostdata->io + (reg))
47#define NCR5380_write(reg, value) out_8(hostdata->io + (reg), value)
Finn Thain2231ef82014-11-12 16:12:12 +110048
49#define NCR5380_queue_command sun3scsi_queue_command
Hannes Reinecke12e5fc62017-08-25 13:57:10 +020050#define NCR5380_host_reset sun3scsi_host_reset
Finn Thain2231ef82014-11-12 16:12:12 +110051#define NCR5380_abort sun3scsi_abort
Finn Thain2231ef82014-11-12 16:12:12 +110052#define NCR5380_info sun3scsi_info
53
Finn Thain4a98f892016-10-10 00:46:53 -040054#define NCR5380_dma_xfer_len sun3scsi_dma_xfer_len
55#define NCR5380_dma_recv_setup sun3scsi_dma_count
56#define NCR5380_dma_send_setup sun3scsi_dma_count
57#define NCR5380_dma_residual sun3scsi_dma_residual
Finn Thain2231ef82014-11-12 16:12:12 +110058
Finn Thain9f6620a2014-03-18 11:42:23 +110059#include "NCR5380.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Finn Thain14d739f2017-01-15 18:50:57 -050061/* dma regs start at regbase + 8, directly after the NCR regs */
62struct sun3_dma_regs {
63 unsigned short dma_addr_hi; /* vme only */
64 unsigned short dma_addr_lo; /* vme only */
65 unsigned short dma_count_hi; /* vme only */
66 unsigned short dma_count_lo; /* vme only */
67 unsigned short udc_data; /* udc dma data reg (obio only) */
68 unsigned short udc_addr; /* uda dma addr reg (obio only) */
69 unsigned short fifo_data; /* fifo data reg,
70 * holds extra byte on odd dma reads
71 */
72 unsigned short fifo_count;
73 unsigned short csr; /* control/status reg */
74 unsigned short bpack_hi; /* vme only */
75 unsigned short bpack_lo; /* vme only */
76 unsigned short ivect; /* vme only */
77 unsigned short fifo_count_hi; /* vme only */
78};
79
80/* ucd chip specific regs - live in dvma space */
81struct sun3_udc_regs {
82 unsigned short rsel; /* select regs to load */
83 unsigned short addr_hi; /* high word of addr */
84 unsigned short addr_lo; /* low word */
85 unsigned short count; /* words to be xfer'd */
86 unsigned short mode_hi; /* high word of channel mode */
87 unsigned short mode_lo; /* low word of channel mode */
88};
89
90/* addresses of the udc registers */
91#define UDC_MODE 0x38
92#define UDC_CSR 0x2e /* command/status */
93#define UDC_CHN_HI 0x26 /* chain high word */
94#define UDC_CHN_LO 0x22 /* chain lo word */
95#define UDC_CURA_HI 0x1a /* cur reg A high */
96#define UDC_CURA_LO 0x0a /* cur reg A low */
97#define UDC_CURB_HI 0x12 /* cur reg B high */
98#define UDC_CURB_LO 0x02 /* cur reg B low */
99#define UDC_MODE_HI 0x56 /* mode reg high */
100#define UDC_MODE_LO 0x52 /* mode reg low */
101#define UDC_COUNT 0x32 /* words to xfer */
102
103/* some udc commands */
104#define UDC_RESET 0
105#define UDC_CHN_START 0xa0 /* start chain */
106#define UDC_INT_ENABLE 0x32 /* channel 1 int on */
107
108/* udc mode words */
109#define UDC_MODE_HIWORD 0x40
110#define UDC_MODE_LSEND 0xc2
111#define UDC_MODE_LRECV 0xd2
112
113/* udc reg selections */
114#define UDC_RSEL_SEND 0x282
115#define UDC_RSEL_RECV 0x182
116
117/* bits in csr reg */
118#define CSR_DMA_ACTIVE 0x8000
119#define CSR_DMA_CONFLICT 0x4000
120#define CSR_DMA_BUSERR 0x2000
121
122#define CSR_FIFO_EMPTY 0x400 /* fifo flushed? */
123#define CSR_SDB_INT 0x200 /* sbc interrupt pending */
124#define CSR_DMA_INT 0x100 /* dma interrupt pending */
125
126#define CSR_LEFT 0xc0
127#define CSR_LEFT_3 0xc0
128#define CSR_LEFT_2 0x80
129#define CSR_LEFT_1 0x40
130#define CSR_PACK_ENABLE 0x20
131
132#define CSR_DMA_ENABLE 0x10
133
134#define CSR_SEND 0x8 /* 1 = send 0 = recv */
135#define CSR_FIFO 0x2 /* reset fifo */
136#define CSR_INTR 0x4 /* interrupt enable */
137#define CSR_SCSI 0x1
138
139#define VME_DATA24 0x3d00
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Finn Thain2231ef82014-11-12 16:12:12 +1100141extern int sun3_map_test(unsigned long, char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143static int setup_can_queue = -1;
144module_param(setup_can_queue, int, 0);
145static int setup_cmd_per_lun = -1;
146module_param(setup_cmd_per_lun, int, 0);
147static int setup_sg_tablesize = -1;
148module_param(setup_sg_tablesize, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static int setup_hostid = -1;
150module_param(setup_hostid, int, 0);
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/* ms to wait after hitting dma regs */
153#define SUN3_DMA_DELAY 10
154
155/* dvma buffer to allocate -- 32k should hopefully be more than sufficient */
156#define SUN3_DVMA_BUFSIZE 0xe000
157
Finn Thain2231ef82014-11-12 16:12:12 +1100158static struct scsi_cmnd *sun3_dma_setup_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static volatile struct sun3_dma_regs *dregs;
Finn Thain0d31f872014-11-13 12:21:28 +1100160static struct sun3_udc_regs *udc_regs;
Finn Thaind5f7e652016-01-03 16:05:03 +1100161static unsigned char *sun3_dma_orig_addr;
162static unsigned long sun3_dma_orig_count;
163static int sun3_dma_active;
164static unsigned long last_residual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Finn Thain757f5ba2014-03-18 11:42:24 +1100166#ifndef SUN3_SCSI_VME
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/* dma controller register access functions */
168
169static inline unsigned short sun3_udc_read(unsigned char reg)
170{
171 unsigned short ret;
172
173 dregs->udc_addr = UDC_CSR;
174 udelay(SUN3_DMA_DELAY);
175 ret = dregs->udc_data;
176 udelay(SUN3_DMA_DELAY);
177
178 return ret;
179}
180
181static inline void sun3_udc_write(unsigned short val, unsigned char reg)
182{
183 dregs->udc_addr = reg;
184 udelay(SUN3_DMA_DELAY);
185 dregs->udc_data = val;
186 udelay(SUN3_DMA_DELAY);
187}
Finn Thain757f5ba2014-03-18 11:42:24 +1100188#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190// safe bits for the CSR
191#define CSR_GOOD 0x060f
192
Finn Thaincd461402016-01-03 16:06:06 +1100193static irqreturn_t scsi_sun3_intr(int irq, void *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Finn Thaincd461402016-01-03 16:06:06 +1100195 struct Scsi_Host *instance = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 unsigned short csr = dregs->csr;
197 int handled = 0;
198
Finn Thain757f5ba2014-03-18 11:42:24 +1100199#ifdef SUN3_SCSI_VME
200 dregs->csr &= ~CSR_DMA_ENABLE;
201#endif
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if(csr & ~CSR_GOOD) {
Finn Thaincd461402016-01-03 16:06:06 +1100204 if (csr & CSR_DMA_BUSERR)
205 shost_printk(KERN_ERR, instance, "bus error in DMA\n");
206 if (csr & CSR_DMA_CONFLICT)
207 shost_printk(KERN_ERR, instance, "DMA conflict\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 handled = 1;
209 }
210
211 if(csr & (CSR_SDB_INT | CSR_DMA_INT)) {
Finn Thaincd461402016-01-03 16:06:06 +1100212 NCR5380_intr(irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 handled = 1;
214 }
215
216 return IRQ_RETVAL(handled);
217}
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219/* sun3scsi_dma_setup() -- initialize the dma controller for a read/write */
Finn Thain4a98f892016-10-10 00:46:53 -0400220static int sun3scsi_dma_setup(struct NCR5380_hostdata *hostdata,
221 unsigned char *data, int count, int write_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 void *addr;
224
225 if(sun3_dma_orig_addr != NULL)
226 dvma_unmap(sun3_dma_orig_addr);
227
Finn Thain757f5ba2014-03-18 11:42:24 +1100228#ifdef SUN3_SCSI_VME
229 addr = (void *)dvma_map_vme((unsigned long) data, count);
230#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 addr = (void *)dvma_map((unsigned long) data, count);
Finn Thain757f5ba2014-03-18 11:42:24 +1100232#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 sun3_dma_orig_addr = addr;
235 sun3_dma_orig_count = count;
Finn Thain757f5ba2014-03-18 11:42:24 +1100236
237#ifndef SUN3_SCSI_VME
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 dregs->fifo_count = 0;
239 sun3_udc_write(UDC_RESET, UDC_CSR);
240
241 /* reset fifo */
242 dregs->csr &= ~CSR_FIFO;
243 dregs->csr |= CSR_FIFO;
Finn Thain757f5ba2014-03-18 11:42:24 +1100244#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 /* set direction */
247 if(write_flag)
248 dregs->csr |= CSR_SEND;
249 else
250 dregs->csr &= ~CSR_SEND;
251
Finn Thain757f5ba2014-03-18 11:42:24 +1100252#ifdef SUN3_SCSI_VME
253 dregs->csr |= CSR_PACK_ENABLE;
254
255 dregs->dma_addr_hi = ((unsigned long)addr >> 16);
256 dregs->dma_addr_lo = ((unsigned long)addr & 0xffff);
257
258 dregs->dma_count_hi = 0;
259 dregs->dma_count_lo = 0;
260 dregs->fifo_count_hi = 0;
261 dregs->fifo_count = 0;
262#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 /* byte count for fifo */
264 dregs->fifo_count = count;
265
266 sun3_udc_write(UDC_RESET, UDC_CSR);
267
268 /* reset fifo */
269 dregs->csr &= ~CSR_FIFO;
270 dregs->csr |= CSR_FIFO;
271
272 if(dregs->fifo_count != count) {
Finn Thain4a98f892016-10-10 00:46:53 -0400273 shost_printk(KERN_ERR, hostdata->host,
274 "FIFO mismatch %04x not %04x\n",
Finn Thaincd461402016-01-03 16:06:06 +1100275 dregs->fifo_count, (unsigned int) count);
Finn Thain4a98f892016-10-10 00:46:53 -0400276 NCR5380_dprint(NDEBUG_DMA, hostdata->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
278
279 /* setup udc */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 udc_regs->addr_hi = (((unsigned long)(addr) & 0xff0000) >> 8);
281 udc_regs->addr_lo = ((unsigned long)(addr) & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 udc_regs->count = count/2; /* count in words */
283 udc_regs->mode_hi = UDC_MODE_HIWORD;
284 if(write_flag) {
285 if(count & 1)
286 udc_regs->count++;
287 udc_regs->mode_lo = UDC_MODE_LSEND;
288 udc_regs->rsel = UDC_RSEL_SEND;
289 } else {
290 udc_regs->mode_lo = UDC_MODE_LRECV;
291 udc_regs->rsel = UDC_RSEL_RECV;
292 }
293
294 /* announce location of regs block */
295 sun3_udc_write(((dvma_vtob(udc_regs) & 0xff0000) >> 8),
296 UDC_CHN_HI);
297
298 sun3_udc_write((dvma_vtob(udc_regs) & 0xffff), UDC_CHN_LO);
299
300 /* set dma master on */
301 sun3_udc_write(0xd, UDC_MODE);
302
303 /* interrupt enable */
304 sun3_udc_write(UDC_INT_ENABLE, UDC_CSR);
Finn Thain757f5ba2014-03-18 11:42:24 +1100305#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 return count;
308
309}
310
Finn Thain4a98f892016-10-10 00:46:53 -0400311static int sun3scsi_dma_count(struct NCR5380_hostdata *hostdata,
312 unsigned char *data, int count)
313{
314 return count;
315}
316
317static inline int sun3scsi_dma_recv_setup(struct NCR5380_hostdata *hostdata,
318 unsigned char *data, int count)
319{
320 return sun3scsi_dma_setup(hostdata, data, count, 0);
321}
322
323static inline int sun3scsi_dma_send_setup(struct NCR5380_hostdata *hostdata,
324 unsigned char *data, int count)
325{
326 return sun3scsi_dma_setup(hostdata, data, count, 1);
327}
328
329static int sun3scsi_dma_residual(struct NCR5380_hostdata *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
331 return last_residual;
332}
333
Finn Thain4a98f892016-10-10 00:46:53 -0400334static int sun3scsi_dma_xfer_len(struct NCR5380_hostdata *hostdata,
335 struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Finn Thain4a98f892016-10-10 00:46:53 -0400337 int wanted_len = cmd->SCp.this_residual;
338
Christoph Hellwig57292b52017-01-31 16:57:29 +0100339 if (wanted_len < DMA_MIN_SIZE || blk_rq_is_passthrough(cmd->request))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return 0;
Finn Thaine63449c2016-03-23 21:10:13 +1100341
342 return wanted_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
345static inline int sun3scsi_dma_start(unsigned long count, unsigned char *data)
346{
Finn Thain757f5ba2014-03-18 11:42:24 +1100347#ifdef SUN3_SCSI_VME
348 unsigned short csr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Finn Thain757f5ba2014-03-18 11:42:24 +1100350 csr = dregs->csr;
351
352 dregs->dma_count_hi = (sun3_dma_orig_count >> 16);
353 dregs->dma_count_lo = (sun3_dma_orig_count & 0xffff);
354
355 dregs->fifo_count_hi = (sun3_dma_orig_count >> 16);
356 dregs->fifo_count = (sun3_dma_orig_count & 0xffff);
357
358/* if(!(csr & CSR_DMA_ENABLE))
359 * dregs->csr |= CSR_DMA_ENABLE;
360 */
361#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 sun3_udc_write(UDC_CHN_START, UDC_CSR);
Finn Thain757f5ba2014-03-18 11:42:24 +1100363#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 return 0;
366}
367
368/* clean up after our dma is done */
369static int sun3scsi_dma_finish(int write_flag)
370{
Finn Thain757f5ba2014-03-18 11:42:24 +1100371 unsigned short __maybe_unused count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 unsigned short fifo;
373 int ret = 0;
374
375 sun3_dma_active = 0;
Finn Thain757f5ba2014-03-18 11:42:24 +1100376
377#ifdef SUN3_SCSI_VME
378 dregs->csr &= ~CSR_DMA_ENABLE;
379
380 fifo = dregs->fifo_count;
381 if (write_flag) {
382 if ((fifo > 0) && (fifo < sun3_dma_orig_count))
383 fifo++;
384 }
385
386 last_residual = fifo;
387 /* empty bytes from the fifo which didn't make it */
388 if ((!write_flag) && (dregs->csr & CSR_LEFT)) {
389 unsigned char *vaddr;
390
391 vaddr = (unsigned char *)dvma_vmetov(sun3_dma_orig_addr);
392
393 vaddr += (sun3_dma_orig_count - fifo);
394 vaddr--;
395
396 switch (dregs->csr & CSR_LEFT) {
397 case CSR_LEFT_3:
398 *vaddr = (dregs->bpack_lo & 0xff00) >> 8;
399 vaddr--;
Gustavo A. R. Silvac78a6652019-07-29 09:30:07 -0500400 /* Fall through */
Finn Thain757f5ba2014-03-18 11:42:24 +1100401
402 case CSR_LEFT_2:
403 *vaddr = (dregs->bpack_hi & 0x00ff);
404 vaddr--;
Gustavo A. R. Silvac78a6652019-07-29 09:30:07 -0500405 /* Fall through */
Finn Thain757f5ba2014-03-18 11:42:24 +1100406
407 case CSR_LEFT_1:
408 *vaddr = (dregs->bpack_hi & 0xff00) >> 8;
409 break;
410 }
411 }
412#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 // check to empty the fifo on a read
414 if(!write_flag) {
415 int tmo = 20000; /* .2 sec */
416
417 while(1) {
418 if(dregs->csr & CSR_FIFO_EMPTY)
419 break;
420
421 if(--tmo <= 0) {
422 printk("sun3scsi: fifo failed to empty!\n");
423 return 1;
424 }
425 udelay(10);
426 }
427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Finn Thaincd461402016-01-03 16:06:06 +1100429 dregs->udc_addr = 0x32;
430 udelay(SUN3_DMA_DELAY);
431 count = 2 * dregs->udc_data;
432 udelay(SUN3_DMA_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 fifo = dregs->fifo_count;
435 last_residual = fifo;
436
437 /* empty bytes from the fifo which didn't make it */
438 if((!write_flag) && (count - fifo) == 2) {
439 unsigned short data;
440 unsigned char *vaddr;
441
442 data = dregs->fifo_data;
443 vaddr = (unsigned char *)dvma_btov(sun3_dma_orig_addr);
444
445 vaddr += (sun3_dma_orig_count - fifo);
446
447 vaddr[-2] = (data & 0xff00) >> 8;
448 vaddr[-1] = (data & 0xff);
449 }
Finn Thain757f5ba2014-03-18 11:42:24 +1100450#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 dvma_unmap(sun3_dma_orig_addr);
453 sun3_dma_orig_addr = NULL;
Finn Thain757f5ba2014-03-18 11:42:24 +1100454
455#ifdef SUN3_SCSI_VME
456 dregs->dma_addr_hi = 0;
457 dregs->dma_addr_lo = 0;
458 dregs->dma_count_hi = 0;
459 dregs->dma_count_lo = 0;
460
461 dregs->fifo_count = 0;
462 dregs->fifo_count_hi = 0;
463
464 dregs->csr &= ~CSR_SEND;
465/* dregs->csr |= CSR_DMA_ENABLE; */
466#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 sun3_udc_write(UDC_RESET, UDC_CSR);
468 dregs->fifo_count = 0;
469 dregs->csr &= ~CSR_SEND;
470
471 /* reset fifo */
472 dregs->csr &= ~CSR_FIFO;
473 dregs->csr |= CSR_FIFO;
Finn Thain757f5ba2014-03-18 11:42:24 +1100474#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 sun3_dma_setup_done = NULL;
477
478 return ret;
479
480}
481
Finn Thaine9db3192016-03-23 21:10:21 +1100482#include "NCR5380.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Finn Thain0d31f872014-11-13 12:21:28 +1100484#ifdef SUN3_SCSI_VME
485#define SUN3_SCSI_NAME "Sun3 NCR5380 VME SCSI"
486#define DRV_MODULE_NAME "sun3_scsi_vme"
487#else
488#define SUN3_SCSI_NAME "Sun3 NCR5380 SCSI"
489#define DRV_MODULE_NAME "sun3_scsi"
490#endif
491
492#define PFX DRV_MODULE_NAME ": "
493
494static struct scsi_host_template sun3_scsi_template = {
495 .module = THIS_MODULE,
496 .proc_name = DRV_MODULE_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 .name = SUN3_SCSI_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 .info = sun3scsi_info,
499 .queuecommand = sun3scsi_queue_command,
Finn Thainaa2e2cb12016-01-03 16:05:48 +1100500 .eh_abort_handler = sun3scsi_abort,
Hannes Reinecke12e5fc62017-08-25 13:57:10 +0200501 .eh_host_reset_handler = sun3scsi_host_reset,
Finn Thaind572f65f2014-11-12 16:12:00 +1100502 .can_queue = 16,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 .this_id = 7,
Finn Thain79172ab2019-11-02 12:06:54 +1100504 .sg_tablesize = 1,
Finn Thaind572f65f2014-11-12 16:12:00 +1100505 .cmd_per_lun = 2,
Christoph Hellwig4af14d12018-12-13 16:17:09 +0100506 .dma_boundary = PAGE_SIZE - 1,
Finn Thain32b26a12016-01-03 16:05:58 +1100507 .cmd_size = NCR5380_CMD_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508};
509
Finn Thain0d31f872014-11-13 12:21:28 +1100510static int __init sun3_scsi_probe(struct platform_device *pdev)
511{
512 struct Scsi_Host *instance;
Finn Thain820682b2016-10-10 00:46:53 -0400513 struct NCR5380_hostdata *hostdata;
Finn Thain0d31f872014-11-13 12:21:28 +1100514 int error;
515 struct resource *irq, *mem;
Finn Thain61e1ce52016-10-10 00:46:53 -0400516 void __iomem *ioaddr;
Finn Thainca513fc2014-11-12 16:12:19 +1100517 int host_flags = 0;
Finn Thain0d31f872014-11-13 12:21:28 +1100518#ifdef SUN3_SCSI_VME
519 int i;
520#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Finn Thain0d31f872014-11-13 12:21:28 +1100522 if (setup_can_queue > 0)
523 sun3_scsi_template.can_queue = setup_can_queue;
524 if (setup_cmd_per_lun > 0)
525 sun3_scsi_template.cmd_per_lun = setup_cmd_per_lun;
Finn Thain79172ab2019-11-02 12:06:54 +1100526 if (setup_sg_tablesize > 0)
Finn Thain0d31f872014-11-13 12:21:28 +1100527 sun3_scsi_template.sg_tablesize = setup_sg_tablesize;
528 if (setup_hostid >= 0)
529 sun3_scsi_template.this_id = setup_hostid & 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Finn Thain0d31f872014-11-13 12:21:28 +1100531#ifdef SUN3_SCSI_VME
532 ioaddr = NULL;
533 for (i = 0; i < 2; i++) {
534 unsigned char x;
535
536 irq = platform_get_resource(pdev, IORESOURCE_IRQ, i);
537 mem = platform_get_resource(pdev, IORESOURCE_MEM, i);
538 if (!irq || !mem)
539 break;
540
541 ioaddr = sun3_ioremap(mem->start, resource_size(mem),
542 SUN3_PAGE_TYPE_VME16);
543 dregs = (struct sun3_dma_regs *)(ioaddr + 8);
544
545 if (sun3_map_test((unsigned long)dregs, &x)) {
546 unsigned short oldcsr;
547
548 oldcsr = dregs->csr;
549 dregs->csr = 0;
550 udelay(SUN3_DMA_DELAY);
551 if (dregs->csr == 0x1400)
552 break;
553
554 dregs->csr = oldcsr;
555 }
556
557 iounmap(ioaddr);
558 ioaddr = NULL;
559 }
560 if (!ioaddr)
561 return -ENODEV;
562#else
563 irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
564 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
565 if (!irq || !mem)
566 return -ENODEV;
567
568 ioaddr = ioremap(mem->start, resource_size(mem));
569 dregs = (struct sun3_dma_regs *)(ioaddr + 8);
570
571 udc_regs = dvma_malloc(sizeof(struct sun3_udc_regs));
572 if (!udc_regs) {
573 pr_err(PFX "couldn't allocate DVMA memory!\n");
574 iounmap(ioaddr);
575 return -ENOMEM;
576 }
577#endif
578
Finn Thain0d31f872014-11-13 12:21:28 +1100579 instance = scsi_host_alloc(&sun3_scsi_template,
580 sizeof(struct NCR5380_hostdata));
581 if (!instance) {
582 error = -ENOMEM;
583 goto fail_alloc;
584 }
Finn Thain0d31f872014-11-13 12:21:28 +1100585
Finn Thain0d31f872014-11-13 12:21:28 +1100586 instance->irq = irq->start;
587
Finn Thain820682b2016-10-10 00:46:53 -0400588 hostdata = shost_priv(instance);
Finn Thain61e1ce52016-10-10 00:46:53 -0400589 hostdata->base = mem->start;
590 hostdata->io = ioaddr;
Finn Thain820682b2016-10-10 00:46:53 -0400591
Finn Thain0ad0eff2016-01-03 16:05:21 +1100592 error = NCR5380_init(instance, host_flags);
593 if (error)
594 goto fail_init;
Finn Thain0d31f872014-11-13 12:21:28 +1100595
596 error = request_irq(instance->irq, scsi_sun3_intr, 0,
597 "NCR5380", instance);
598 if (error) {
Finn Thain0d31f872014-11-13 12:21:28 +1100599 pr_err(PFX "scsi%d: IRQ %d not free, bailing out\n",
600 instance->host_no, instance->irq);
601 goto fail_irq;
Finn Thain0d31f872014-11-13 12:21:28 +1100602 }
603
604 dregs->csr = 0;
605 udelay(SUN3_DMA_DELAY);
606 dregs->csr = CSR_SCSI | CSR_FIFO | CSR_INTR;
607 udelay(SUN3_DMA_DELAY);
608 dregs->fifo_count = 0;
609#ifdef SUN3_SCSI_VME
610 dregs->fifo_count_hi = 0;
611 dregs->dma_addr_hi = 0;
612 dregs->dma_addr_lo = 0;
613 dregs->dma_count_hi = 0;
614 dregs->dma_count_lo = 0;
615
616 dregs->ivect = VME_DATA24 | (instance->irq & 0xff);
617#endif
618
Finn Thain9c3f0e22016-01-03 16:05:11 +1100619 NCR5380_maybe_reset_bus(instance);
Finn Thain0d31f872014-11-13 12:21:28 +1100620
621 error = scsi_add_host(instance, NULL);
622 if (error)
623 goto fail_host;
624
625 platform_set_drvdata(pdev, instance);
626
627 scsi_scan_host(instance);
628 return 0;
629
630fail_host:
Finn Thaine4dec682016-03-23 21:10:12 +1100631 free_irq(instance->irq, instance);
Finn Thain0d31f872014-11-13 12:21:28 +1100632fail_irq:
633 NCR5380_exit(instance);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100634fail_init:
Finn Thain0d31f872014-11-13 12:21:28 +1100635 scsi_host_put(instance);
636fail_alloc:
637 if (udc_regs)
638 dvma_free(udc_regs);
Finn Thain61e1ce52016-10-10 00:46:53 -0400639 iounmap(ioaddr);
Finn Thain0d31f872014-11-13 12:21:28 +1100640 return error;
641}
642
643static int __exit sun3_scsi_remove(struct platform_device *pdev)
644{
645 struct Scsi_Host *instance = platform_get_drvdata(pdev);
Finn Thain61e1ce52016-10-10 00:46:53 -0400646 struct NCR5380_hostdata *hostdata = shost_priv(instance);
647 void __iomem *ioaddr = hostdata->io;
Finn Thain0d31f872014-11-13 12:21:28 +1100648
649 scsi_remove_host(instance);
Finn Thaine4dec682016-03-23 21:10:12 +1100650 free_irq(instance->irq, instance);
Finn Thain0d31f872014-11-13 12:21:28 +1100651 NCR5380_exit(instance);
652 scsi_host_put(instance);
653 if (udc_regs)
654 dvma_free(udc_regs);
Finn Thain61e1ce52016-10-10 00:46:53 -0400655 iounmap(ioaddr);
Finn Thain0d31f872014-11-13 12:21:28 +1100656 return 0;
657}
658
659static struct platform_driver sun3_scsi_driver = {
660 .remove = __exit_p(sun3_scsi_remove),
661 .driver = {
662 .name = DRV_MODULE_NAME,
Finn Thain0d31f872014-11-13 12:21:28 +1100663 },
664};
665
666module_platform_driver_probe(sun3_scsi_driver, sun3_scsi_probe);
667
668MODULE_ALIAS("platform:" DRV_MODULE_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669MODULE_LICENSE("GPL");