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