Home | History | Annotate | Line # | Download | only in pci
pciide_pdc202xx_reg.h revision 1.11.10.1
      1  1.11.10.1      yamt /*	$NetBSD: pciide_pdc202xx_reg.h,v 1.11.10.1 2005/03/19 08:35:12 yamt Exp $ */
      2        1.1    bouyer 
      3        1.1    bouyer /*
      4        1.1    bouyer  * Copyright (c) 1999 Manuel Bouyer.
      5        1.1    bouyer  *
      6        1.1    bouyer  * Redistribution and use in source and binary forms, with or without
      7        1.1    bouyer  * modification, are permitted provided that the following conditions
      8        1.1    bouyer  * are met:
      9        1.1    bouyer  * 1. Redistributions of source code must retain the above copyright
     10        1.1    bouyer  *    notice, this list of conditions and the following disclaimer.
     11        1.1    bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     12        1.1    bouyer  *    notice, this list of conditions and the following disclaimer in the
     13        1.1    bouyer  *    documentation and/or other materials provided with the distribution.
     14        1.1    bouyer  * 3. All advertising materials mentioning features or use of this software
     15        1.1    bouyer  *    must display the following acknowledgement:
     16        1.7    bouyer  *	This product includes software developed by Manuel Bouyer.
     17       1.11    bouyer  * 4. The name of the author may not be used to endorse or promote products
     18       1.11    bouyer  *    derived from this software without specific prior written permission.
     19        1.1    bouyer  *
     20        1.3    bouyer  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21        1.3    bouyer  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22        1.3    bouyer  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23  1.11.10.1      yamt  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24        1.3    bouyer  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25        1.3    bouyer  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26        1.3    bouyer  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27        1.3    bouyer  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28        1.3    bouyer  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29        1.3    bouyer  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30        1.1    bouyer  *
     31        1.1    bouyer  */
     32        1.1    bouyer 
     33        1.1    bouyer /*
     34        1.2    bouyer  * Registers definitions for PROMISE PDC20246/PDC20262 PCI IDE controller.
     35        1.2    bouyer  * Unfortunably the HW docs are not publically available. I've been able
     36        1.2    bouyer  * to get a partial one for the PDC20246, and a better one for the PDC20262
     37        1.2    bouyer  * from Promise.
     38        1.1    bouyer  */
     39        1.1    bouyer 
     40        1.1    bouyer #define PDC2xx_STATE		0x50
     41        1.2    bouyer #define PDC2xx_STATE_IDERAID		0x0001
     42        1.1    bouyer #define PDC2xx_STATE_NATIVE		0x0080
     43        1.2    bouyer /* controller initial state values(PDC20246 only) */
     44        1.2    bouyer #define PDC246_STATE_SHIPID		0x8000
     45        1.2    bouyer #define PDC246_STATE_IOCHRDY		0x0400
     46        1.2    bouyer #define PDC246_STATE_LBA(channel)	(0x0100 << (channel))
     47        1.2    bouyer #define PDC246_STATE_ISAIRQ		0x0008
     48        1.2    bouyer #define PDC246_STATE_EN(channel)	(0x0002 << (channel))
     49        1.2    bouyer /* controller initial state values(PDC20262 only) */
     50        1.2    bouyer #define PDC262_STATE_EN(chan)		(0x1000 << (chan))
     51        1.2    bouyer #define PDC262_STATE_80P(chan)		(0x0400 << (chan))
     52        1.1    bouyer 
     53        1.1    bouyer /* per-drive timings */
     54        1.1    bouyer #define PDC2xx_TIM(channel, drive) (0x60 + 4 * (drive) + 8 * (channel))
     55        1.1    bouyer #define PDC2xx_TIM_SET_PA(r, x)	(((r) & 0xfffffff0) | ((x) & 0xf))
     56        1.1    bouyer #define PDC2xx_TIM_SET_PB(r, x)	(((r) & 0xffffe0ff) | (((x) & 0x1f) << 8))
     57        1.1    bouyer #define PDC2xx_TIM_SET_MB(r, x)	(((r) & 0xffff1fff) | (((x) & 0x7) << 13))
     58        1.1    bouyer #define PDC2xx_TIM_SET_MC(r, x)	(((r) & 0xfff0ffff) | (((x) & 0xf) << 16))
     59        1.1    bouyer #define PDC2xx_TIM_PRE		0x00000010
     60        1.1    bouyer #define PDC2xx_TIM_IORDY	0x00000020
     61        1.1    bouyer #define PDC2xx_TIM_ERRDY	0x00000040
     62        1.1    bouyer #define PDC2xx_TIM_SYNC		0x00000080
     63        1.1    bouyer #define PDC2xx_TIM_DMAW		0x00100000
     64        1.1    bouyer #define PDC2xx_TIM_DMAR		0x00200000
     65        1.1    bouyer #define PDC2xx_TIM_IORDYp	0x00400000
     66        1.1    bouyer #define PDC2xx_TIM_DMARQp	0x00800000
     67        1.1    bouyer 
     68        1.5    toshii /* The following are extensions of the DMA registers */
     69        1.1    bouyer 
     70        1.2    bouyer /* Ultra-DMA mode 3/4 control (PDC20262 only, 1 byte) */
     71        1.2    bouyer #define PDC262_U66	0x11
     72        1.4    bouyer #define PDC262_U66_EN(chan) (0x2 << ((chan) *2))
     73        1.1    bouyer /* primary mode (1 byte) */
     74        1.1    bouyer #define PDC2xx_PM	0x1a
     75        1.1    bouyer /* secondary mode (1 byte) */
     76        1.1    bouyer #define PDC2xx_SM	0x1b
     77        1.1    bouyer /* System control register (4 bytes) */
     78        1.1    bouyer #define PDC2xx_SCR	0x1c
     79        1.2    bouyer #define PDC2xx_SCR_SET_GEN(r,x) (((r) & 0xffffff00) | ((x) & 0xff))
     80        1.1    bouyer #define PDC2xx_SCR_EMPTY(channel) (0x00000100 << (4 * channel))
     81        1.1    bouyer #define PDC2xx_SCR_FULL(channel) (0x00000200 << (4 * channel))
     82        1.1    bouyer #define PDC2xx_SCR_INT(channel) (0x00000400 << (4 * channel))
     83        1.1    bouyer #define PDC2xx_SCR_ERR(channel) (0x00000800 << (4 * channel))
     84        1.1    bouyer #define PDC2xx_SCR_SET_I2C(r,x) (((r) & 0xfff0ffff) | (((x) & 0xf) << 16))
     85        1.1    bouyer #define PDC2xx_SCR_SET_POLL(r,x) (((r) & 0xff0fffff) | (((x) & 0xf) << 20))
     86        1.1    bouyer #define PDC2xx_SCR_DMA		0x01000000
     87        1.1    bouyer #define PDC2xx_SCR_IORDY	0x02000000
     88  1.11.10.1      yamt #define PDC2xx_SCR_G2FD		0x04000000
     89        1.1    bouyer #define PDC2xx_SCR_FLOAT	0x08000000
     90        1.1    bouyer #define PDC2xx_SCR_RSET		0x10000000
     91        1.1    bouyer #define PDC2xx_SCR_TST		0x20000000
     92       1.10    bouyer /* Values for "General Purpose Register" (PDC2026{2|5} only) */
     93        1.2    bouyer #define PDC262_SCR_GEN_LAT	0x20
     94       1.10    bouyer #define PDC265_SCR_GEN_LAT	0x03
     95        1.2    bouyer 
     96        1.2    bouyer /* ATAPI port ((PDC20262 only) (4 bytes) */
     97        1.2    bouyer #define PDC262_ATAPI(chan) (0x20 + (4 * (chan)))
     98        1.2    bouyer #define PDC262_ATAPI_WC_MASK	0x00000fff
     99        1.2    bouyer #define PDC262_ATAPI_DMA_READ	0x00001000
    100        1.2    bouyer #define PDC262_ATAPI_DMA_WRITE	0x00002000
    101        1.2    bouyer #define PDC262_ATAPI_UDMA	0x00004000
    102        1.9  nakayama #define PDC262_ATAPI_LBA48_READ  0x05000000
    103        1.9  nakayama #define PDC262_ATAPI_LBA48_WRITE 0x06000000
    104        1.1    bouyer 
    105        1.1    bouyer /*
    106        1.2    bouyer  * The timings provided here cmoes from the PDC20262 docs. I hope they are
    107        1.8       wiz  * right for the PDC20246 too ...
    108        1.1    bouyer  */
    109        1.1    bouyer 
    110        1.6   thorpej static const int8_t pdc2xx_pa[] __attribute__((__unused__)) =
    111        1.6   thorpej     {0x9, 0x5, 0x3, 0x2, 0x1};
    112        1.6   thorpej static const int8_t pdc2xx_pb[] __attribute__((__unused__)) =
    113        1.6   thorpej     {0x13, 0xc, 0x8, 0x6, 0x4};
    114        1.6   thorpej static const int8_t pdc2xx_dma_mb[] __attribute__((__unused__)) =
    115        1.6   thorpej     {0x3, 0x3, 0x3};
    116        1.6   thorpej static const int8_t pdc2xx_dma_mc[] __attribute__((__unused__)) =
    117        1.6   thorpej     {0x5, 0x4, 0x3};
    118        1.6   thorpej static const int8_t pdc2xx_udma_mb[] __attribute__((__unused__)) =
    119        1.6   thorpej     {0x3, 0x2, 0x1, 0x2, 0x1, 0x1};
    120        1.6   thorpej static const int8_t pdc2xx_udma_mc[] __attribute__((__unused__)) =
    121        1.6   thorpej     {0x3, 0x2, 0x1, 0x2, 0x1, 0x1};
    122