Home | History | Annotate | Line # | Download | only in pci
pciide_apollo_reg.h revision 1.11.2.1
      1  1.11.2.1  gehenna /*	$NetBSD: pciide_apollo_reg.h,v 1.11.2.1 2002/08/29 05:22:44 gehenna Exp $	*/
      2       1.2   bouyer 
      3       1.2   bouyer /*
      4       1.2   bouyer  * Copyright (c) 1998 Manuel Bouyer.
      5       1.2   bouyer  *
      6       1.2   bouyer  * Redistribution and use in source and binary forms, with or without
      7       1.2   bouyer  * modification, are permitted provided that the following conditions
      8       1.2   bouyer  * are met:
      9       1.2   bouyer  * 1. Redistributions of source code must retain the above copyright
     10       1.2   bouyer  *    notice, this list of conditions and the following disclaimer.
     11       1.2   bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     12       1.2   bouyer  *    notice, this list of conditions and the following disclaimer in the
     13       1.2   bouyer  *    documentation and/or other materials provided with the distribution.
     14       1.2   bouyer  * 3. All advertising materials mentioning features or use of this software
     15       1.2   bouyer  *    must display the following acknowledgement:
     16      1.11   bouyer  *	This product includes software developed by Manuel Bouyer.
     17       1.2   bouyer  * 4. Neither the name of the University nor the names of its contributors
     18       1.2   bouyer  *    may be used to endorse or promote products derived from this software
     19       1.2   bouyer  *    without specific prior written permission.
     20       1.2   bouyer  *
     21       1.6   bouyer  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22       1.6   bouyer  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23       1.6   bouyer  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24       1.6   bouyer  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25       1.6   bouyer  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26       1.6   bouyer  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27       1.6   bouyer  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28       1.6   bouyer  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29       1.6   bouyer  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30       1.6   bouyer  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31       1.2   bouyer  *
     32       1.2   bouyer  */
     33       1.2   bouyer 
     34       1.2   bouyer /*
     35       1.2   bouyer  * Registers definitions for VIA technologies's Apollo controllers (VT82V580VO,
     36       1.5   bouyer  * VT82C586A and VT82C586B). Available from http://www.via.com.tw/ or
     37       1.5   bouyer  * http://www.viatech.com/
     38       1.2   bouyer  */
     39       1.2   bouyer 
     40       1.2   bouyer /* misc. configuration registers */
     41       1.2   bouyer #define APO_IDECONF 0x40
     42       1.2   bouyer #define APO_IDECONF_EN(channel) (0x00000001 << (1 - (channel)))
     43       1.2   bouyer #define APO_IDECONF_SERR_EN	0x00000100 /* 580 only */
     44       1.2   bouyer #define APO_IDECONF_DS_SOURCE	0x00000200 /* 580 only */
     45       1.2   bouyer #define APO_IDECONF_ALT_INTR_EN	0x00000400 /* 580 only */
     46       1.2   bouyer #define APO_IDECONF_PERR_EN	0x00000800 /* 580 only */
     47       1.2   bouyer #define APO_IDECONF_WR_BUFF_EN(channel) (0x00001000 << ((1 - (channel)) << 1))
     48       1.2   bouyer #define APO_IDECONF_RD_PREF_EN(channel) (0x00002000 << ((1 - (channel)) << 1))
     49       1.2   bouyer #define APO_IDECONF_DEVSEL_TME	0x00010000 /* 580 only */
     50       1.2   bouyer #define APO_IDECONF_MAS_CMD_MON	0x00020000 /* 580 only */
     51       1.2   bouyer #define APO_IDECONF_IO_NAT(channel) \
     52       1.2   bouyer 	(0x00400000 << (1 - (channel))) /* 580 only */
     53       1.2   bouyer #define APO_IDECONF_FIFO_TRSH(channel, x) \
     54       1.2   bouyer 	((x) & 0x3) << ((1 - (channel)) << 1 + 24)
     55       1.2   bouyer #define APO_IDECONF_FIFO_CONF_MASK 0x60000000
     56       1.2   bouyer 
     57       1.2   bouyer /* Misc. controls register */
     58       1.2   bouyer #define APO_CTLMISC 0x44
     59       1.2   bouyer #define APO_CTLMISC_BM_STS_RTY	0x00000008
     60       1.2   bouyer #define APO_CTLMISC_FIFO_HWS	0x00000010
     61       1.2   bouyer #define APO_CTLMISC_WR_IRDY_WS	0x00000020
     62       1.2   bouyer #define APO_CTLMISC_RD_IRDY_WS	0x00000040
     63       1.2   bouyer #define APO_CTLMISC_INTR_SWP	0x00004000
     64       1.2   bouyer #define APO_CTLMISC_DRDY_TIME_MASK 0x00030000
     65       1.2   bouyer #define APO_CTLMISC_FIFO_FLSH_RD(channel) (0x00100000 << (1 - (channel)))
     66       1.2   bouyer #define APO_CTLMISC_FIFO_FLSH_DMA(channel) (0x00400000 << (1 - (channel)))
     67       1.2   bouyer 
     68       1.2   bouyer /* data port timings controls */
     69       1.2   bouyer #define APO_DATATIM 0x48
     70       1.4   bouyer #define APO_DATATIM_MASK(channel) (0xffff << ((1 - (channel)) << 4))
     71       1.2   bouyer #define APO_DATATIM_RECOV(channel, drive, x) (((x) & 0xf) << \
     72       1.2   bouyer 	(((1 - (channel)) << 4) + ((1 - (drive)) << 3)))
     73       1.2   bouyer #define APO_DATATIM_PULSE(channel, drive, x) (((x) & 0xf) << \
     74       1.2   bouyer 	(((1 - (channel)) << 4) + ((1 - (drive)) << 3) + 4))
     75       1.2   bouyer 
     76       1.2   bouyer /* misc timings control */
     77       1.2   bouyer #define APO_MISCTIM 0x4c
     78       1.2   bouyer 
     79       1.3   bouyer /* Ultra-DMA/33 control (586A/B only) */
     80       1.2   bouyer #define APO_UDMA 0x50
     81       1.7  tsutsui #define APO_UDMA_MASK(channel) (0xffff << ((1 - (channel)) << 4))
     82       1.9   bouyer #define APO_UDMA_TIME(channel, drive, x) (((x) & 0xf) << \
     83       1.2   bouyer 	(((1 - (channel)) << 4) + ((1 - (drive)) << 3)))
     84       1.2   bouyer #define APO_UDMA_PIO_MODE(channel, drive) (0x20 << \
     85       1.2   bouyer 	(((1 - (channel)) << 4) + ((1 - (drive)) << 3)))
     86       1.2   bouyer #define APO_UDMA_EN(channel, drive) (0x40 << \
     87       1.2   bouyer 	(((1 - (channel)) << 4) + ((1 - (drive)) << 3)))
     88       1.2   bouyer #define APO_UDMA_EN_MTH(channel, drive) (0x80 << \
     89       1.2   bouyer 	(((1 - (channel)) << 4) + ((1 - (drive)) << 3)))
     90       1.8   bouyer #define APO_UDMA_CLK66(channel) (0x08 << ((1 - (channel)) << 4))
     91       1.2   bouyer 
     92  1.11.2.1  gehenna static const int8_t apollo_udma133_tim[] __attribute__((__unused__)) =
     93  1.11.2.1  gehenna     {0x07, 0x07, 0x06, 0x04, 0x02, 0x01, 0x00};
     94      1.10  thorpej static const int8_t apollo_udma100_tim[] __attribute__((__unused__)) =
     95  1.11.2.1  gehenna     {0x07, 0x07, 0x04, 0x02, 0x01, 0x00};
     96      1.10  thorpej static const int8_t apollo_udma66_tim[] __attribute__((__unused__)) =
     97      1.10  thorpej     {0x03, 0x03, 0x02, 0x01, 0x00};
     98      1.10  thorpej static const int8_t apollo_udma33_tim[] __attribute__((__unused__)) =
     99      1.10  thorpej     {0x03, 0x02, 0x00};
    100      1.10  thorpej static const int8_t apollo_pio_set[] __attribute__((__unused__)) =
    101      1.10  thorpej     {0x0a, 0x0a, 0x0a, 0x02, 0x02};
    102      1.10  thorpej static const int8_t apollo_pio_rec[] __attribute__((__unused__)) =
    103      1.10  thorpej     {0x08, 0x08, 0x08, 0x02, 0x00};
    104