Home | History | Annotate | Line # | Download | only in ic
      1  1.5  christos /*	$NetBSD: cyreg.h,v 1.5 2005/12/11 12:21:26 christos Exp $	*/
      2  1.1  christos 
      3  1.1  christos /*-
      4  1.1  christos  * Copyright (c) 1995 Bruce Evans.
      5  1.1  christos  * All rights reserved.
      6  1.1  christos  *
      7  1.1  christos  * Modified by Timo Rossi, 1996
      8  1.1  christos  *
      9  1.1  christos  * Redistribution and use in source and binary forms, with or without
     10  1.1  christos  * modification, are permitted provided that the following conditions
     11  1.1  christos  * are met:
     12  1.1  christos  * 1. Redistributions of source code must retain the above copyright
     13  1.1  christos  *    notice, this list of conditions and the following disclaimer.
     14  1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     16  1.1  christos  *    documentation and/or other materials provided with the distribution.
     17  1.1  christos  * 3. Neither the name of the author nor the names of contributors
     18  1.1  christos  *    may be used to endorse or promote products derived from this software
     19  1.1  christos  *    without specific prior written permission.
     20  1.1  christos  *
     21  1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     22  1.1  christos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23  1.1  christos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24  1.1  christos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     25  1.1  christos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     26  1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     27  1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     28  1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29  1.1  christos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30  1.1  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31  1.1  christos  * SUCH DAMAGE.
     32  1.1  christos  *
     33  1.4     perry  *	Id: cyreg.h,v 1.1 1995/07/05 12:15:51 bde Exp
     34  1.1  christos  */
     35  1.1  christos 
     36  1.1  christos /*
     37  1.1  christos  * Definitions for Cyclades Cyclom-Y serial boards.
     38  1.1  christos  */
     39  1.1  christos 
     40  1.1  christos #define	CY8_SVCACKR		0x100
     41  1.1  christos #define	CY8_SVCACKT		0x200
     42  1.1  christos #define	CY8_SVCACKM		0x300
     43  1.1  christos 
     44  1.1  christos /* twice this in PCI mode (shifed BUSTYPE bits left) */
     45  1.1  christos #define	CY_CD1400_MEMSPACING	0x400
     46  1.1  christos 
     47  1.1  christos /* adjustment value for accessing the last 4 cd1400s on Cyclom-32 */
     48  1.1  christos #define CY32_ADDR_FIX           0xe00
     49  1.1  christos 
     50  1.1  christos #define	CY16_RESET		0x1400
     51  1.1  christos #define	CY_CLEAR_INTR		0x1800	/* intr ack address */
     52  1.1  christos 
     53  1.1  christos #define	CY_MAX_CD1400s		8	/* for Cyclom-32 */
     54  1.1  christos 
     55  1.1  christos /* I/O location for enabling interrupts on PCI Cyclom cards */
     56  1.1  christos #define CY_PCI_INTENA           0x68
     57  1.3    tsubai #define CY_PCI_INTENA_9050      0x4c
     58  1.3    tsubai 
     59  1.3    tsubai /* Cyclom-Y Custom Register for PLX ID (PCI only) */
     60  1.3    tsubai #define CY_PLX_VER		0x3400		/* PLX version */
     61  1.3    tsubai #define CY_PLX_9050		0x0b
     62  1.3    tsubai #define CY_PLX_9060		0x0c
     63  1.3    tsubai #define CY_PLX_9080		0x0d
     64  1.1  christos 
     65  1.1  christos #define	CY_CLOCK		25000000	/* baud rate clock */
     66  1.2      tron #define	CY_CLOCK_60		60000000	/* new CD14000 */
     67  1.1  christos 
     68  1.1  christos #define CY_MEMSIZE		0x2000
     69  1.1  christos 
     70  1.1  christos /*
     71  1.1  christos  * bustype is actually the shift count for the offset
     72  1.1  christos  * ISA card addresses are multiplied by 2 (shifted 1 bit)
     73  1.1  christos  * and PCI addresses multiplied by 4 (shifted 2 bits)
     74  1.1  christos  */
     75  1.1  christos #define CY_BUSTYPE_ISA 0
     76  1.1  christos #define CY_BUSTYPE_PCI 1
     77