#include <linux/module.h>
#include <linux/types.h>
#include <linux/stddef.h>
#include <linux/ctype.h>
#include <linux/delay.h>
#include <linux/mm.h>
#include <linux/blkdev.h>
#include <linux/interrupt.h>
#include <linux/init.h>
#include <linux/nvram.h>
#include <linux/bitops.h>
#include <asm/setup.h>
#include <asm/atarihw.h>
#include <asm/atariints.h>
#include <asm/page.h>
#include <asm/pgtable.h>
#include <asm/irq.h>
#include <asm/traps.h>
#include "scsi.h"
#include <scsi/scsi_host.h>
#include "atari_scsi.h"
#include "NCR5380.h"
#include <asm/atari_stdma.h>
#include <asm/atari_stram.h>
#include <asm/io.h>
#include <linux/stat.h>
#include "atari_NCR5380.c"
#include "scsi_module.c"
Go to the source code of this file.
|
| module_param (setup_can_queue, int, 0) |
|
| module_param (setup_cmd_per_lun, int, 0) |
|
| module_param (setup_sg_tablesize, int, 0) |
|
| module_param (setup_use_tagged_queuing, int, 0) |
|
| module_param (setup_hostid, int, 0) |
|
| __setup ("atascsi=", atari_scsi_setup) |
|
| MODULE_LICENSE ("GPL") |
|
#define AFTER_RESET_DELAY (HZ/2) |
#define CMD_MODE_UNKNOWN 2 |
#define CMD_SURELY_BLOCK_MODE 0 |
#define CMD_SURELY_BYTE_MODE 1 |
Value:
(atari_scsi_host->hostdata))->dma_len)
Definition at line 174 of file atari_scsi.c.
#define NDEBUG_ABORT 0x00100000 |
#define NDEBUG_MERGING 0x00400000 |
#define NDEBUG_TAGS 0x00200000 |
#define SCSI_DMA_READ_P |
( |
|
elt | ) |
|
#define SCSI_DMA_WRITE_P |
( |
|
elt, |
|
|
|
val |
|
) |
| |
Value:do { \
tt_scsi_dma.elt##_lo = v & 0xff; \
v >>= 8; \
tt_scsi_dma.elt##_lmd = v & 0xff; \
v >>= 8; \
tt_scsi_dma.elt##_hmd = v & 0xff; \
v >>= 8; \
tt_scsi_dma.elt##_hi = v & 0xff; \
} while(0)
Definition at line 114 of file atari_scsi.c.
#define STRAM_ADDR |
( |
|
a | ) |
(((a) & atari_dma_stram_mask) == 0) |
#define STRAM_BUFFER_SIZE (4096) |
module_param |
( |
setup_can_queue |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
setup_cmd_per_lun |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
setup_sg_tablesize |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
setup_use_tagged_queuing |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
setup_hostid |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |