Home | History | Annotate | Line # | Download | only in jazz
dma.h revision 1.4
      1  1.4  tsutsui /*	$NetBSD: dma.h,v 1.4 2003/02/10 15:19:44 tsutsui Exp $	*/
      2  1.1       ur /*	$OpenBSD: dma.h,v 1.3 1997/04/19 17:19:51 pefo Exp $	*/
      3  1.1       ur 
      4  1.1       ur /*
      5  1.1       ur  * Copyright (c) 1996 Per Fogelstrom
      6  1.1       ur  * All rights reserved.
      7  1.1       ur  *
      8  1.1       ur  * Redistribution and use in source and binary forms, with or without
      9  1.1       ur  * modification, are permitted provided that the following conditions
     10  1.1       ur  * are met:
     11  1.1       ur  * 1. Redistributions of source code must retain the above copyright
     12  1.1       ur  *    notice, this list of conditions and the following disclaimer.
     13  1.1       ur  * 2. Redistributions in binary form must reproduce the above copyright
     14  1.1       ur  *    notice, this list of conditions and the following disclaimer in the
     15  1.1       ur  *    documentation and/or other materials provided with the distribution.
     16  1.1       ur  * 3. All advertising materials mentioning features or use of this software
     17  1.1       ur  *    must display the following acknowledgement:
     18  1.1       ur  *      This product includes software developed by Per Fogelstrom.
     19  1.1       ur  * 4. The name of the author may not be used to endorse or promote products
     20  1.1       ur  *    derived from this software without specific prior written permission
     21  1.1       ur  *
     22  1.1       ur  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23  1.1       ur  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24  1.1       ur  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25  1.1       ur  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26  1.1       ur  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27  1.1       ur  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28  1.1       ur  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29  1.1       ur  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30  1.1       ur  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31  1.1       ur  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32  1.1       ur  */
     33  1.1       ur 
     34  1.1       ur /*
     35  1.1       ur  *  Hardware dma registers.
     36  1.1       ur  */
     37  1.1       ur typedef volatile struct {
     38  1.1       ur 	int32_t		dma_mode;
     39  1.1       ur 	int32_t		pad1;
     40  1.1       ur 	int32_t		dma_enab;
     41  1.1       ur 	int32_t		pad2;
     42  1.1       ur 	int32_t		dma_count;
     43  1.1       ur 	int32_t		pad3;
     44  1.1       ur 	int32_t		dma_addr;
     45  1.1       ur 	int32_t		pad4;
     46  1.1       ur } DmaReg, *pDmaReg;
     47  1.1       ur 
     48  1.4  tsutsui #define R4030_DMA_MODE		0x00
     49  1.4  tsutsui #define  R4030_DMA_MODE_40NS	0x00	/* Device dma timing */
     50  1.4  tsutsui #define  R4030_DMA_MODE_80NS	0x01	/* Device dma timing */
     51  1.4  tsutsui #define  R4030_DMA_MODE_120NS	0x02	/* Device dma timing */
     52  1.4  tsutsui #define  R4030_DMA_MODE_160NS	0x03	/* Device dma timing */
     53  1.4  tsutsui #define  R4030_DMA_MODE_200NS	0x04	/* Device dma timing */
     54  1.4  tsutsui #define  R4030_DMA_MODE_240NS	0x05	/* Device dma timing */
     55  1.4  tsutsui #define  R4030_DMA_MODE_280NS	0x06	/* Device dma timing */
     56  1.4  tsutsui #define  R4030_DMA_MODE_320NS	0x07	/* Device dma timing */
     57  1.4  tsutsui #define  R4030_DMA_MODE_8	0x08	/* Device 8 bit  */
     58  1.4  tsutsui #define  R4030_DMA_MODE_16	0x10	/* Device 16 bit */
     59  1.4  tsutsui #define  R4030_DMA_MODE_32	0x18	/* Device 32 bit */
     60  1.4  tsutsui #define  R4030_DMA_MODE_INT	0x20	/* Interrupt when done */
     61  1.4  tsutsui #define  R4030_DMA_MODE_BURST	0x40	/* Burst mode (Rev 2 only) */
     62  1.4  tsutsui #define  R4030_DMA_MODE_FAST	0x80	/* Fast dma cycle (Rev 2 only) */
     63  1.4  tsutsui #define  R4030_DMA_MODE_MASK	0xff	/* Mode register bits */
     64  1.4  tsutsui #define  DMA_DIR_WRITE		0x100	/* Software direction status */
     65  1.4  tsutsui #define  DMA_DIR_READ		0x000	/* Software direction status */
     66  1.4  tsutsui 
     67  1.4  tsutsui #define R4030_DMA_ENAB		0x08
     68  1.4  tsutsui #define  R4030_DMA_ENAB_RUN	0x0001	/* Enable dma */
     69  1.4  tsutsui #define  R4030_DMA_ENAB_READ	0x0000	/* Read from device */
     70  1.4  tsutsui #define  R4030_DMA_ENAB_WRITE	0x0002	/* Write to device */
     71  1.4  tsutsui #define  R4030_DMA_ENAB_TC_IE	0x0100	/* Terminal count int enable */
     72  1.4  tsutsui #define  R4030_DMA_ENAB_ME_IE	0x0200	/* Memory error int enable */
     73  1.4  tsutsui #define  R4030_DMA_ENAB_TL_IE	0x0400	/* Translation limit int enable */
     74  1.1       ur 
     75  1.4  tsutsui #define R4030_DMA_COUNT		0x10
     76  1.4  tsutsui #define  R4030_DMA_COUNT_MASK	0x000fffff /* Byte count mask */
     77  1.4  tsutsui 
     78  1.4  tsutsui #define R4030_DMA_ADDR		0x18
     79  1.4  tsutsui 
     80  1.4  tsutsui #define R4030_DMA_RANGE		0x20
     81  1.1       ur 
     82  1.1       ur /*
     83  1.1       ur  *  Structure used to control dma.
     84  1.1       ur  */
     85  1.1       ur 
     86  1.1       ur typedef struct dma_softc {
     87  1.1       ur 	struct device	sc_dev;		/* use as a device */
     88  1.1       ur 	struct esp_softc *sc_esp;
     89  1.1       ur 	bus_addr_t	dma_va;		/* Viritual address for transfer */
     90  1.1       ur 	int		mode;		/* Mode register value and direction */
     91  1.1       ur 	jazz_dma_pte_t	*pte_base;	/* Pointer to dma tlb array */
     92  1.1       ur 	int		pte_size;	/* Size of pte allocated pte array */
     93  1.1       ur 	pDmaReg		dma_reg;	/* Pointer to dma registers */
     94  1.1       ur 	int		sc_active;	/* Active flag */
     95  1.1       ur 	void (*reset)(struct dma_softc *);	/* Reset routine pointer */
     96  1.1       ur 	void (*enintr)(struct dma_softc *);	/* Int enab routine pointer */
     97  1.1       ur 	void (*map)(struct dma_softc *, char *, size_t, int);
     98  1.1       ur 						/* Map a dma viritual area */
     99  1.1       ur 	void (*start)(struct dma_softc *, caddr_t, size_t, int);
    100  1.1       ur 						/* Start routine pointer */
    101  1.1       ur 	int (*isintr)(struct dma_softc *);	/* Int check routine pointer */
    102  1.1       ur 	int (*intr)(struct dma_softc *);	/* Interrupt routine pointer */
    103  1.1       ur 	void (*end)(struct dma_softc *);	/* Interrupt routine pointer */
    104  1.1       ur } dma_softc_t;
    105  1.1       ur 
    106  1.1       ur #define	DMA_TO_DEV	0
    107  1.1       ur #define	DMA_FROM_DEV	1
    108  1.1       ur 
    109  1.1       ur #define	DMA_RESET(r)		((r->reset)(r))
    110  1.1       ur #define	DMA_START(a, b, c, d)	((a->start)(a, b, c, d))
    111  1.1       ur #define	DMA_MAP(a, b, c, d)	((a->map)(a, b, c, d))
    112  1.1       ur #define	DMA_INTR(r)		((r->intr)(r))
    113  1.1       ur #define	DMA_DRAIN(r)
    114  1.1       ur #define	DMA_END(r)		((r->end)(r))
    115  1.1       ur 
    116  1.1       ur void picaDmaTLBAlloc __P((dma_softc_t *));
    117  1.1       ur void picaDmaTLBFree __P((dma_softc_t *));
    118  1.1       ur void picaDmaMap __P((struct dma_softc *, char *, size_t, int));
    119  1.1       ur void picaDmaStart __P((struct dma_softc *, char *, size_t, int));
    120  1.1       ur void picaDmaFlush __P((struct dma_softc *, char *, size_t, int));
    121  1.1       ur void asc_dma_init __P((struct dma_softc *));
    122