xref: /openbsd/sys/arch/landisk/include/param.h (revision 184e2458)
1*184e2458Sderaadt /*	$OpenBSD: param.h,v 1.3 2013/03/23 16:12:23 deraadt Exp $	*/
20d032535Smiod 
30d032535Smiod /*-
40d032535Smiod  * Copyright (c) 1990 The Regents of the University of California.
50d032535Smiod  * All rights reserved.
60d032535Smiod  *
70d032535Smiod  * This code is derived from software contributed to Berkeley by
80d032535Smiod  * William Jolitz.
90d032535Smiod  *
100d032535Smiod  * Redistribution and use in source and binary forms, with or without
110d032535Smiod  * modification, are permitted provided that the following conditions
120d032535Smiod  * are met:
130d032535Smiod  * 1. Redistributions of source code must retain the above copyright
140d032535Smiod  *    notice, this list of conditions and the following disclaimer.
150d032535Smiod  * 2. Redistributions in binary form must reproduce the above copyright
160d032535Smiod  *    notice, this list of conditions and the following disclaimer in the
170d032535Smiod  *    documentation and/or other materials provided with the distribution.
180d032535Smiod  * 3. Neither the name of the University nor the names of its contributors
190d032535Smiod  *    may be used to endorse or promote products derived from this software
200d032535Smiod  *    without specific prior written permission.
210d032535Smiod  *
220d032535Smiod  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
230d032535Smiod  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
240d032535Smiod  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
250d032535Smiod  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
260d032535Smiod  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
270d032535Smiod  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
280d032535Smiod  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
290d032535Smiod  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
300d032535Smiod  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
310d032535Smiod  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
320d032535Smiod  * SUCH DAMAGE.
330d032535Smiod  */
340d032535Smiod 
352fa72412Spirofti #ifndef	_MACHINE_PARAM_H_
362fa72412Spirofti #define	_MACHINE_PARAM_H_
370d032535Smiod 
380d032535Smiod #include <sh/param.h>
390d032535Smiod 
400d032535Smiod #define	_MACHINE	landisk
410d032535Smiod #define	MACHINE		"landisk"
420d032535Smiod 
430d032535Smiod /*
440d032535Smiod  * Physical addresses of on-board ROM and RAM
450d032535Smiod  */
460d032535Smiod #define IOM_ROM_BEGIN	0x00000000
470d032535Smiod #define IOM_ROM_SIZE	0x00080000	/* 512KB */
480d032535Smiod #define IOM_RAM_BEGIN	0x0c000000
490d032535Smiod #define IOM_RAM_SIZE	0x04000000	/* 64MB */
500d032535Smiod 
512fa72412Spirofti #endif /* _MACHINE_PARAM_H_ */
52