blob: 6f3d2ac4f185c2ff64f6c6a41721f604f08edab7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Generic Generic NCR5380 driver defines
3 *
4 * Copyright 1993, Drew Eckhardt
5 * Visionary Computing
6 * (Unix and Linux consulting and custom programming)
7 * drew@colorado.edu
8 * +1 (303) 440-4894
9 *
10 * NCR53C400 extensions (c) 1994,1995,1996, Kevin Lentin
11 * K.Lentin@cs.monash.edu.au
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#ifndef GENERIC_NCR5380_H
15#define GENERIC_NCR5380_H
16
Finn Thain4d8c08c2016-01-03 16:05:09 +110017#ifdef CONFIG_SCSI_GENERIC_NCR53C400
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#define BIOSPARAM
19#define NCR5380_BIOSPARAM generic_NCR5380_biosparam
20#else
21#define NCR5380_BIOSPARAM NULL
22#endif
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#define __STRVAL(x) #x
25#define STRVAL(x) __STRVAL(x)
26
Ondrej Zary702a98c2010-08-10 18:01:16 -070027#ifndef SCSI_G_NCR5380_MEM
Finn Thainaa2e2cb2016-01-03 16:05:48 +110028#define DRV_MODULE_NAME "g_NCR5380"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#define NCR5380_map_type int
31#define NCR5380_map_name port
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Finn Thain4d8c08c2016-01-03 16:05:09 +110033#ifdef CONFIG_SCSI_GENERIC_NCR53C400
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#define NCR5380_region_size 16
35#else
36#define NCR5380_region_size 8
37#endif
38
Finn Thain54d8fe42016-01-03 16:05:06 +110039#define NCR5380_read(reg) \
40 inb(instance->io_port + (reg))
41#define NCR5380_write(reg, value) \
42 outb(value, instance->io_port + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Ondrej Zary12150792016-01-03 16:06:15 +110044#define NCR5380_implementation_fields \
45 int c400_ctl_status; \
46 int c400_blk_cnt; \
Ondrej Zaryaeb51152016-01-03 16:06:17 +110047 int c400_host_buf; \
48 int io_width;
Al Viroc818cb62006-03-24 03:15:37 -080049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#else
Ondrej Zary702a98c2010-08-10 18:01:16 -070051/* therefore SCSI_G_NCR5380_MEM */
Finn Thainaa2e2cb2016-01-03 16:05:48 +110052#define DRV_MODULE_NAME "g_NCR5380_mmio"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define NCR5380_map_type unsigned long
55#define NCR5380_map_name base
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define NCR53C400_mem_base 0x3880
57#define NCR53C400_host_buffer 0x3900
58#define NCR5380_region_size 0x3a00
59
Finn Thain54d8fe42016-01-03 16:05:06 +110060#define NCR5380_read(reg) \
61 readb(((struct NCR5380_hostdata *)shost_priv(instance))->iomem + \
62 NCR53C400_mem_base + (reg))
63#define NCR5380_write(reg, value) \
64 writeb(value, ((struct NCR5380_hostdata *)shost_priv(instance))->iomem + \
65 NCR53C400_mem_base + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67#define NCR5380_implementation_fields \
Ondrej Zary12150792016-01-03 16:06:15 +110068 void __iomem *iomem; \
69 int c400_ctl_status; \
70 int c400_blk_cnt; \
71 int c400_host_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Al Viroc818cb62006-03-24 03:15:37 -080073#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Finn Thainff3d4572016-01-03 16:05:25 +110075#define NCR5380_dma_xfer_len(instance, cmd, phase) \
76 generic_NCR5380_dma_xfer_len(cmd)
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#define NCR5380_intr generic_NCR5380_intr
79#define NCR5380_queue_command generic_NCR5380_queue_command
80#define NCR5380_abort generic_NCR5380_abort
81#define NCR5380_bus_reset generic_NCR5380_bus_reset
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#define NCR5380_pread generic_NCR5380_pread
83#define NCR5380_pwrite generic_NCR5380_pwrite
Finn Thain8c325132014-11-12 16:11:58 +110084#define NCR5380_info generic_NCR5380_info
85#define NCR5380_show_info generic_NCR5380_show_info
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#define BOARD_NCR5380 0
88#define BOARD_NCR53C400 1
89#define BOARD_NCR53C400A 2
90#define BOARD_DTC3181E 3
Ondrej Zaryc6084cb2016-01-03 16:06:19 +110091#define BOARD_HP_C2502 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#endif /* GENERIC_NCR5380_H */
94