NetBSD/sys/dev/ic/wdcvar.h

233 lines
8.7 KiB
C
Raw Normal View History

2004-01-01 23:18:33 +03:00
/* $NetBSD: wdcvar.h,v 1.50 2004/01/01 20:18:33 thorpej Exp $ */
1998-08-15 14:10:47 +04:00
/*-
* Copyright (c) 1998, 2003 The NetBSD Foundation, Inc.
1998-08-15 14:10:47 +04:00
* All rights reserved.
*
1998-08-15 14:10:47 +04:00
* This code is derived from software contributed to The NetBSD Foundation
* by Charles M. Hannum, by Onno van der Linden and by Manuel Bouyer.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
1998-10-12 20:09:10 +04:00
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
1998-10-12 20:09:10 +04:00
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
1998-08-15 14:10:47 +04:00
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
1998-08-15 14:10:47 +04:00
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
2004-01-01 23:18:33 +03:00
#ifndef _DEV_IC_WDCVAR_H_
#define _DEV_IC_WDCVAR_H_
/* XXX For scsipi_adapter and scsipi_channel. */
#include <dev/scsipi/scsipi_all.h>
#include <dev/scsipi/atapiconf.h>
#include <sys/callout.h>
1998-10-12 20:09:10 +04:00
#define WAITTIME (10 * hz) /* time to wait for a completion */
/* this is a lot for hard drives, but not for cdroms */
#define WDC_NREG 8 /* number of command registers */
1998-10-12 20:09:10 +04:00
struct channel_softc { /* Per channel data */
/* Our timeout callout */
struct callout ch_callout;
1998-10-12 20:09:10 +04:00
/* Our location */
int channel;
/* Our controller's softc */
struct wdc_softc *wdc;
/* Our registers */
bus_space_tag_t cmd_iot;
bus_space_handle_t cmd_baseioh;
bus_space_handle_t cmd_iohs[WDC_NREG];
1998-10-12 20:09:10 +04:00
bus_space_tag_t ctl_iot;
bus_space_handle_t ctl_ioh;
/* data32{iot,ioh} are only used for 32 bit data xfers */
1998-10-12 20:09:10 +04:00
bus_space_tag_t data32iot;
bus_space_handle_t data32ioh;
/* Our state */
int ch_flags;
#define WDCF_ACTIVE 0x01 /* channel is active */
#define WDCF_SHUTDOWN 0x02 /* channel is shutting down */
1998-10-12 20:09:10 +04:00
#define WDCF_IRQ_WAIT 0x10 /* controller is waiting for irq */
#define WDCF_DMA_WAIT 0x20 /* controller is waiting for DMA */
#define WDCF_DISABLED 0x80 /* channel is disabled */
#define WDCF_TH_RUN 0x100 /* the kenrel thread is working */
#define WDCF_TH_RESET 0x200 /* someone ask the thread to reset */
1998-10-12 20:09:10 +04:00
u_int8_t ch_status; /* copy of status register */
u_int8_t ch_error; /* copy of error register */
/* per-drive infos */
struct ata_drive_datas ch_drive[2];
struct device *atabus; /* self */
struct device *atapibus; /* children */
struct scsipi_channel ch_atapi_channel;
struct device *ata_drives[2]; /* children */
1998-10-12 20:09:10 +04:00
/*
* channel queues. May be the same for all channels, if hw channels
* are not independent.
1998-10-12 20:09:10 +04:00
*/
struct ata_queue *ch_queue;
/* the channel kernel thread */
struct proc *thread;
};
1998-10-12 20:09:10 +04:00
struct wdc_softc { /* Per controller state */
struct device sc_dev;
/* mandatory fields */
int cap;
/* Capabilities supported by the controller */
#define WDC_CAPABILITY_DATA16 0x0001 /* can do 16-bit data access */
#define WDC_CAPABILITY_DATA32 0x0002 /* can do 32-bit data access */
#define WDC_CAPABILITY_MODE 0x0004 /* controller knows its PIO/DMA modes */
#define WDC_CAPABILITY_DMA 0x0008 /* DMA */
#define WDC_CAPABILITY_UDMA 0x0010 /* Ultra-DMA/33 */
#define WDC_CAPABILITY_HWLOCK 0x0020 /* Needs to lock HW */
#define WDC_CAPABILITY_ATA_NOSTREAM 0x0040 /* Don't use stream funcs on ATA */
#define WDC_CAPABILITY_ATAPI_NOSTREAM 0x0080 /* Don't use stream f on ATAPI */
#define WDC_CAPABILITY_NO_EXTRA_RESETS 0x0100 /* only reset once */
#define WDC_CAPABILITY_PREATA 0x0200 /* ctrl can be a pre-ata one */
#define WDC_CAPABILITY_IRQACK 0x0400 /* callback to ack interrupt */
#define WDC_CAPABILITY_NOIRQ 0x1000 /* Controller never interrupts */
#define WDC_CAPABILITY_SELECT 0x2000 /* Controller selects target */
#define WDC_CAPABILITY_RAID 0x4000 /* Controller "supports" RAID */
u_int8_t PIO_cap; /* highest PIO mode supported */
u_int8_t DMA_cap; /* highest DMA mode supported */
u_int8_t UDMA_cap; /* highest UDMA mode supported */
1998-10-12 20:09:10 +04:00
int nchannels; /* Number of channels on this controller */
struct channel_softc **channels; /* channels-specific datas (array) */
/*
* The reference count here is used for both IDE and ATAPI devices.
*/
struct atapi_adapter sc_atapi_adapter;
/* Function used to probe for drives. */
2004-01-01 23:18:33 +03:00
void (*drv_probe)(struct channel_softc *);
/* if WDC_CAPABILITY_DMA set in 'cap' */
1998-10-12 20:09:10 +04:00
void *dma_arg;
2004-01-01 23:18:33 +03:00
int (*dma_init)(void *, int, int, void *, size_t, int);
void (*dma_start)(void *, int, int);
int (*dma_finish)(void *, int, int, int);
/* flags passed to dma_init */
#define WDC_DMA_READ 0x01
#define WDC_DMA_IRQW 0x02
#define WDC_DMA_LBA48 0x04
2004-01-01 23:18:33 +03:00
int dma_status; /* status returned from dma_finish() */
#define WDC_DMAST_NOIRQ 0x01 /* missing IRQ */
#define WDC_DMAST_ERR 0x02 /* DMA error */
#define WDC_DMAST_UNDER 0x04 /* DMA underrun */
/* if WDC_CAPABILITY_HWLOCK set in 'cap' */
2004-01-01 23:18:33 +03:00
int (*claim_hw)(void *, int);
void (*free_hw)(void *);
/* if WDC_CAPABILITY_MODE set in 'cap' */
2004-01-01 23:18:33 +03:00
void (*set_modes)(struct channel_softc *);
/* if WDC_CAPABILITY_SELECT set in 'cap' */
2004-01-01 23:18:33 +03:00
void (*select)(struct channel_softc *,int);
/* if WDC_CAPABILITY_IRQACK set in 'cap' */
2004-01-01 23:18:33 +03:00
void (*irqack)(struct channel_softc *);
};
1998-10-12 20:09:10 +04:00
/*
* Public functions which can be called by ATA or ATAPI specific parts,
* or bus-specific backends.
*/
2004-01-01 23:18:33 +03:00
int wdcprobe(struct channel_softc *);
void wdcattach(struct channel_softc *);
int wdcdetach(struct device *, int);
int wdcactivate(struct device *, enum devact);
int wdcintr(void *);
void wdc_exec_xfer(struct channel_softc *, struct ata_xfer *);
struct ata_xfer *wdc_get_xfer(int); /* int = WDC_NOSLEEP/CANSLEEP */
1998-10-12 20:09:10 +04:00
#define WDC_CANSLEEP 0x00
#define WDC_NOSLEEP 0x01
2004-01-01 23:18:33 +03:00
void wdc_free_xfer (struct channel_softc *, struct ata_xfer *);
void wdcstart(struct channel_softc *);
void wdcrestart(void*);
int wdcreset(struct channel_softc *, int);
#define RESET_POLL 1
#define RESET_SLEEP 0 /* wdcreset will use tsleep() */
2004-01-01 23:18:33 +03:00
int wdcwait(struct channel_softc *, int, int, int, int);
#define WDCWAIT_OK 0 /* we have what we asked */
#define WDCWAIT_TOUT -1 /* timed out */
#define WDCWAIT_THR 1 /* return, the kernel thread has been awakened */
2004-01-01 23:18:33 +03:00
int wdc_dmawait(struct channel_softc *, struct ata_xfer *, int);
void wdcbit_bucket( struct channel_softc *, int);
void wdccommand(struct channel_softc *, u_int8_t, u_int8_t, u_int16_t,
u_int8_t, u_int8_t, u_int8_t, u_int8_t);
void wdccommandext(struct channel_softc *, u_int8_t, u_int8_t, u_int64_t,
u_int16_t);
void wdccommandshort(struct channel_softc *, int, int);
void wdctimeout(void *arg);
void wdc_reset_channel(struct ata_drive_datas *, int);
int wdc_exec_command(struct ata_drive_datas *, struct wdc_command*);
#define WDC_COMPLETE 0x01
#define WDC_QUEUED 0x02
#define WDC_TRY_AGAIN 0x03
2004-01-01 23:18:33 +03:00
int wdc_addref(struct channel_softc *);
void wdc_delref(struct channel_softc *);
void wdc_kill_pending(struct channel_softc *);
void wdc_print_modes (struct channel_softc *);
2004-01-01 23:18:33 +03:00
void wdc_probe_caps(struct ata_drive_datas*);
1998-10-12 20:09:10 +04:00
/*
* ST506 spec says that if READY or SEEKCMPLT go off, then the read or write
* command is aborted.
*/
#define wait_for_drq(chp, timeout, flags) \
wdcwait((chp), WDCS_DRQ, WDCS_DRQ, (timeout), (flags))
#define wait_for_unbusy(chp, timeout, flags) \
wdcwait((chp), 0, 0, (timeout), (flags))
#define wait_for_ready(chp, timeout, flags) \
wdcwait((chp), WDCS_DRDY, WDCS_DRDY, (timeout), (flags))
2004-01-01 23:18:33 +03:00
1998-10-12 20:09:10 +04:00
/* ATA/ATAPI specs says a device can take 31s to reset */
#define WDC_RESET_WAIT 31000
2004-01-01 23:18:33 +03:00
void wdc_atapibus_attach(struct atabus_softc *);
/* XXX */
struct atabus_softc;
void atabusconfig(struct atabus_softc *);
2004-01-01 23:18:33 +03:00
#endif /* _DEV_IC_WDCVAR_H_ */