Home | History | Annotate | Line # | Download | only in tsarm
tsarmreg.h revision 1.1
      1  1.1  joff /*	$NetBSD: tsarmreg.h,v 1.1 2004/12/23 04:29:38 joff Exp $	*/
      2  1.1  joff 
      3  1.1  joff /*
      4  1.1  joff  * Copyright (c) 2002 Wasabi Systems, Inc.
      5  1.1  joff  * All rights reserved.
      6  1.1  joff  *
      7  1.1  joff  * Based on code written by Jason R. Thorpe for Wasabi Systems, Inc.
      8  1.1  joff  *
      9  1.1  joff  * Redistribution and use in source and binary forms, with or without
     10  1.1  joff  * modification, are permitted provided that the following conditions
     11  1.1  joff  * are met:
     12  1.1  joff  * 1. Redistributions of source code must retain the above copyright
     13  1.1  joff  *    notice, this list of conditions and the following disclaimer.
     14  1.1  joff  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.1  joff  *    notice, this list of conditions and the following disclaimer in the
     16  1.1  joff  *    documentation and/or other materials provided with the distribution.
     17  1.1  joff  * 3. All advertising materials mentioning features or use of this software
     18  1.1  joff  *    must display the following acknowledgement:
     19  1.1  joff  *	This product includes software developed for the NetBSD Project by
     20  1.1  joff  *	Wasabi Systems, Inc.
     21  1.1  joff  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22  1.1  joff  *    or promote products derived from this software without specific prior
     23  1.1  joff  *    written permission.
     24  1.1  joff  *
     25  1.1  joff  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26  1.1  joff  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27  1.1  joff  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28  1.1  joff  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29  1.1  joff  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30  1.1  joff  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31  1.1  joff  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32  1.1  joff  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33  1.1  joff  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34  1.1  joff  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35  1.1  joff  * POSSIBILITY OF SUCH DAMAGE.
     36  1.1  joff  */
     37  1.1  joff 
     38  1.1  joff #ifndef _TS7XXXREG_H_
     39  1.1  joff #define	_TS7XXXREG_H_
     40  1.1  joff 
     41  1.1  joff /*
     42  1.1  joff  * Memory map and register definitions for the TS-7200 single board computer
     43  1.1  joff  */
     44  1.1  joff #define TS7XXX_IO_VBASE		0xf0300000UL
     45  1.1  joff #define TS7XXX_IO8_VBASE	TS7XXX_IO_VBASE
     46  1.1  joff #define TS7XXX_IO8_HWBASE	0x10000000UL
     47  1.1  joff #define TS7XXX_IO8_SIZE		0x04000000UL
     48  1.1  joff #define  TS7XXX_STATUS1		0x00800000UL
     49  1.1  joff #define  TS7XXX_CFREGS1		0x01000001UL
     50  1.1  joff #define  TS7XXX_CFREGS2		0x01040006UL
     51  1.1  joff #define TS7XXX_IO16_VBASE	(TS7XXX_IO8_VBASE + TS7XXX_IO8_SIZE)
     52  1.1  joff #define TS7XXX_IO16_HWBASE	0x20000000UL
     53  1.1  joff #define TS7XXX_IO16_SIZE	0x04000000UL
     54  1.1  joff #define  TS7XXX_ISAMEM		0x01800000UL
     55  1.1  joff #define  TS7XXX_ISAIO		0x01c00000UL
     56  1.1  joff #define  TS7XXX_CFDATA		0x01000000UL
     57  1.1  joff #define  TS7XXX_MODEL		0x02000000UL
     58  1.1  joff #define  TS7XXX_FEATURES	0x02400000UL
     59  1.1  joff #define  TS7XXX_STATUS2		0x02800000UL
     60  1.1  joff #define  TS7XXX_PLDREV		0x03400000UL
     61  1.1  joff #define  TS7XXX_WDOGCTRL	0x03800000UL
     62  1.1  joff #define  TS7XXX_WDOGFEED	0x03c00000UL
     63  1.1  joff 
     64  1.1  joff #endif /* _TS7XXXREG_H_ */
     65