#ifndef _DEV_PCI_PCIIDEVAR_H_
#define _DEV_PCI_PCIIDEVAR_H_
#include <dev/ata/atavar.h>
#include <dev/ic/wdcreg.h>
#include <dev/ic/wdcvar.h>
#define PCIIDE_MAX_CHANNELS 4
struct pciide_softc {
struct wdc_softc sc_wdcdev;
pci_chipset_tag_t sc_pc;
pcitag_t sc_tag;
void *sc_pci_ih;
int sc_dma_ok;
bus_space_tag_t sc_dma_iot;
bus_space_handle_t sc_dma_ioh;
bus_size_t sc_dma_iosz;
bus_dma_tag_t sc_dmat;
bus_size_t sc_dma_maxsegsz;
bus_size_t sc_dma_boundary;
pcireg_t sc_save[6];
pcireg_t sc_save2[6];
const struct pciide_product_desc *sc_pp;
void (*chip_unmap)(struct pciide_softc *, int);
int sc_rev;
struct channel_softc *wdc_chanarray[PCIIDE_MAX_CHANNELS];
struct pciide_channel {
struct channel_softc wdc_channel;
const char *name;
int hw_ok;
int compat;
int dma_in_progress;
void *ih;
bus_space_handle_t ctl_baseioh;
struct pciide_dma_maps {
bus_dmamap_t dmamap_table;
struct idedma_table *dma_table;
bus_dmamap_t dmamap_xfer;
int dma_flags;
} dma_maps[2];
uint8_t idedma_cmd;
} pciide_channels[PCIIDE_MAX_CHANNELS];
void *sc_cookie;
size_t sc_cookielen;
u_int8_t (*sc_dmacmd_read)(struct pciide_softc *, int);
void (*sc_dmacmd_write)(struct pciide_softc *, int, u_int8_t);
u_int8_t (*sc_dmactl_read)(struct pciide_softc *, int);
void (*sc_dmactl_write)(struct pciide_softc *, int, u_int8_t);
void (*sc_dmatbl_write)(struct pciide_softc *, int, u_int32_t);
};
#define PCIIDE_DMACMD_READ(sc, chan) \
(sc)->sc_dmacmd_read((sc), (chan))
#define PCIIDE_DMACMD_WRITE(sc, chan, val) \
(sc)->sc_dmacmd_write((sc), (chan), (val))
#define PCIIDE_DMACTL_READ(sc, chan) \
(sc)->sc_dmactl_read((sc), (chan))
#define PCIIDE_DMACTL_WRITE(sc, chan, val) \
(sc)->sc_dmactl_write((sc), (chan), (val))
#define PCIIDE_DMATBL_WRITE(sc, chan, val) \
(sc)->sc_dmatbl_write((sc), (chan), (val))
int pciide_mapregs_compat( struct pci_attach_args *,
struct pciide_channel *, int, bus_size_t *, bus_size_t *);
int pciide_mapregs_native(struct pci_attach_args *,
struct pciide_channel *, bus_size_t *, bus_size_t *,
int (*pci_intr)(void *));
void pciide_mapreg_dma(struct pciide_softc *,
struct pci_attach_args *);
int pciide_chansetup(struct pciide_softc *, int, pcireg_t);
void pciide_mapchan(struct pci_attach_args *,
struct pciide_channel *, pcireg_t, bus_size_t *, bus_size_t *,
int (*pci_intr)(void *));
int pciide_chan_candisable(struct pciide_channel *);
void pciide_map_compat_intr( struct pci_attach_args *,
struct pciide_channel *, int, int);
void pciide_unmap_compat_intr( struct pci_attach_args *,
struct pciide_channel *, int, int);
int pciide_compat_intr(void *);
int pciide_pci_intr(void *);
int pciide_intr_flag(struct pciide_channel *);
u_int8_t pciide_dmacmd_read(struct pciide_softc *, int);
void pciide_dmacmd_write(struct pciide_softc *, int, u_int8_t);
u_int8_t pciide_dmactl_read(struct pciide_softc *, int);
void pciide_dmactl_write(struct pciide_softc *, int, u_int8_t);
void pciide_dmatbl_write(struct pciide_softc *, int, u_int32_t);
void pciide_channel_dma_setup(struct pciide_channel *);
int pciide_dma_table_setup(struct pciide_softc *, int, int);
int pciide_dma_init(void *, int, int, void *, size_t, int);
void pciide_dma_start(void *, int, int);
int pciide_dma_finish(void *, int, int, int);
void pciide_irqack(struct channel_softc *);
void pciide_print_modes(struct pciide_channel *);
void pciide_print_channels(int, pcireg_t);
void default_chip_unmap(struct pciide_softc *, int);
void pciide_unmapreg_dma(struct pciide_softc *);
void pciide_chanfree(struct pciide_softc *, int);
void pciide_unmap_chan(struct pciide_softc *, struct pciide_channel *, int);
int pciide_unmapregs_compat(struct pciide_softc *,
struct pciide_channel *);
int pciide_unmapregs_native(struct pciide_softc *,
struct pciide_channel *);
#ifdef __i386__
void gcsc_chip_map(struct pciide_softc *, struct pci_attach_args *);
#endif
#if !defined(pciide_machdep_compat_intr_establish)
void *pciide_machdep_compat_intr_establish(struct device *,
struct pci_attach_args *, int, int (*)(void *), void *);
void pciide_machdep_compat_intr_disestablish(pci_chipset_tag_t pc,
void *);
#endif
#endif