OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [arch/] [armnommu/] [drivers/] [scsi/] [cumana_2.h] - Diff between revs 1765 and 1782

Only display areas with differences | Details | Blame | View Log

Rev 1765 Rev 1782
/*
/*
 * Cumana SCSI II driver
 * Cumana SCSI II driver
 *
 *
 * Copyright (C) 1997-1998 Russell King
 * Copyright (C) 1997-1998 Russell King
 */
 */
#ifndef CUMANA_2_H
#ifndef CUMANA_2_H
#define CUMANA_2_H
#define CUMANA_2_H
 
 
extern int cumanascsi_2_detect (Scsi_Host_Template *);
extern int cumanascsi_2_detect (Scsi_Host_Template *);
extern int cumanascsi_2_release (struct Scsi_Host *);
extern int cumanascsi_2_release (struct Scsi_Host *);
extern const char *cumanascsi_2_info (struct Scsi_Host *);
extern const char *cumanascsi_2_info (struct Scsi_Host *);
extern int cumanascsi_2_proc_info (char *buffer, char **start, off_t offset,
extern int cumanascsi_2_proc_info (char *buffer, char **start, off_t offset,
                                        int length, int hostno, int inout);
                                        int length, int hostno, int inout);
 
 
#ifndef NULL
#ifndef NULL
#define NULL ((void *)0)
#define NULL ((void *)0)
#endif
#endif
 
 
#ifndef CAN_QUEUE
#ifndef CAN_QUEUE
/*
/*
 * Default queue size
 * Default queue size
 */
 */
#define CAN_QUEUE       1
#define CAN_QUEUE       1
#endif
#endif
 
 
#ifndef SCSI_ID
#ifndef SCSI_ID
/*
/*
 * Default SCSI host ID
 * Default SCSI host ID
 */
 */
#define SCSI_ID         7
#define SCSI_ID         7
#endif
#endif
 
 
#include <scsi/scsicam.h>
#include <scsi/scsicam.h>
 
 
#ifndef HOSTS_C
#ifndef HOSTS_C
#include "fas216.h"
#include "fas216.h"
#endif
#endif
 
 
#define CUMANASCSI_2 {                                                  \
#define CUMANASCSI_2 {                                                  \
        NULL,                                                           \
        NULL,                                                           \
        NULL,                                                           \
        NULL,                                                           \
        NULL,                                                           \
        NULL,                                                           \
        cumanascsi_2_proc_info,                                         \
        cumanascsi_2_proc_info,                                         \
        "Cumana SCSI II",                                               \
        "Cumana SCSI II",                                               \
        cumanascsi_2_detect,            /* detect               */      \
        cumanascsi_2_detect,            /* detect               */      \
        cumanascsi_2_release,           /* release              */      \
        cumanascsi_2_release,           /* release              */      \
        cumanascsi_2_info,              /* info                 */      \
        cumanascsi_2_info,              /* info                 */      \
        fas216_command,                 /* command              */      \
        fas216_command,                 /* command              */      \
        fas216_queue_command,           /* queuecommand         */      \
        fas216_queue_command,           /* queuecommand         */      \
        fas216_abort,                   /* abort                */      \
        fas216_abort,                   /* abort                */      \
        fas216_reset,                   /* reset                */      \
        fas216_reset,                   /* reset                */      \
        NULL,                                                           \
        NULL,                                                           \
        scsicam_bios_param,             /* biosparam            */      \
        scsicam_bios_param,             /* biosparam            */      \
        CAN_QUEUE,                      /* can queue            */      \
        CAN_QUEUE,                      /* can queue            */      \
        SCSI_ID,                        /* scsi host id         */      \
        SCSI_ID,                        /* scsi host id         */      \
        SG_ALL,                         /* sg_tablesize         */      \
        SG_ALL,                         /* sg_tablesize         */      \
        CAN_QUEUE,                      /* cmd per lun          */      \
        CAN_QUEUE,                      /* cmd per lun          */      \
        0,                               /* number of boards     */      \
        0,                               /* number of boards     */      \
        0,                               /* unchecked isa dma    */      \
        0,                               /* unchecked isa dma    */      \
        DISABLE_CLUSTERING                                              \
        DISABLE_CLUSTERING                                              \
        }
        }
 
 
#ifndef HOSTS_C
#ifndef HOSTS_C
 
 
#include <asm/dma.h>
#include <asm/dma.h>
 
 
#define NR_SG   256
#define NR_SG   256
 
 
typedef struct {
typedef struct {
        FAS216_Info info;
        FAS216_Info info;
 
 
        /* other info... */
        /* other info... */
        unsigned int    status;         /* card status register */
        unsigned int    status;         /* card status register */
        unsigned int    alatch;         /* Control register     */
        unsigned int    alatch;         /* Control register     */
        unsigned int    terms;          /* Terminator state     */
        unsigned int    terms;          /* Terminator state     */
        unsigned int    dmaarea;        /* Pseudo DMA area      */
        unsigned int    dmaarea;        /* Pseudo DMA area      */
        dmasg_t         dmasg[NR_SG];   /* Scatter DMA list     */
        dmasg_t         dmasg[NR_SG];   /* Scatter DMA list     */
} CumanaScsi2_Info;
} CumanaScsi2_Info;
 
 
#define CSTATUS_IRQ     (1 << 0)
#define CSTATUS_IRQ     (1 << 0)
#define CSTATUS_DRQ     (1 << 1)
#define CSTATUS_DRQ     (1 << 1)
 
 
#endif /* HOSTS_C */
#endif /* HOSTS_C */
 
 
#endif /* CUMANASCSI_2_H */
#endif /* CUMANASCSI_2_H */
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.