1 /* $NetBSD: tsarmreg.h,v 1.6 2009/10/23 00:39:31 snj Exp $ */ 2 3 /* 4 * Copyright (c) 2004 Jesse Off 5 * All rights reserved. 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 * 16 * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 18 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 19 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC 20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 26 * POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 #ifndef _TSARMREG_H_ 30 #define _TSARMREG_H_ 31 32 /* 33 * Memory map and register definitions for the TS-7200 single board computer 34 */ 35 #define TS7XXX_IO_VBASE 0xf0300000UL 36 #define TS7XXX_IO8_VBASE TS7XXX_IO_VBASE 37 #define TS7XXX_IO8_HWBASE 0x10000000UL 38 #define TS7XXX_IO8_SIZE 0x04000000UL 39 #define TS7XXX_STATUS1 0x00800000UL 40 #define TS7XXX_RTCIDX 0x00b00000UL 41 #define TS7XXX_MAX197ADC 0x00c00000UL 42 #define TS7XXX_CFREGS1 0x01000001UL 43 #define TS7XXX_CFREGS2 0x01040006UL 44 #define TS7XXX_RTCDAT 0x01700000UL 45 #define TS7XXX_IO16_VBASE (TS7XXX_IO8_VBASE + TS7XXX_IO8_SIZE) 46 #define TS7XXX_IO16_HWBASE 0x20000000UL 47 #define TS7XXX_IO16_SIZE 0x04000000UL 48 #define TS7XXX_ISAMEM 0x01a00000UL 49 #define TS7XXX_ISAIO 0x01e00000UL 50 #define TS7XXX_CFDATA 0x01000000UL 51 #define TS7XXX_MODEL 0x02000000UL 52 #define TS7XXX_FEATURES 0x02400000UL 53 #define TS7XXX_STATUS2 0x02800000UL 54 #define TS7XXX_PLDREV 0x03400000UL 55 #define TS7XXX_WDOGCTRL 0x03800000UL 56 #define TS7XXX_WDOGFEED 0x03c00000UL 57 58 #endif /* _TSARMREG_H_ */ 59