xref: /netbsd/sys/arch/evbarm/include/param.h (revision 8694f07c)
1*8694f07cSryo /*	$NetBSD: param.h,v 1.3 2018/04/01 04:35:05 ryo Exp $	*/
21bf6aa62Smatt 
31bf6aa62Smatt /*
41bf6aa62Smatt  * Copyright (c) 1994,1995 Mark Brinicombe.
51bf6aa62Smatt  * All rights reserved.
61bf6aa62Smatt  *
71bf6aa62Smatt  * Redistribution and use in source and binary forms, with or without
81bf6aa62Smatt  * modification, are permitted provided that the following conditions
91bf6aa62Smatt  * are met:
101bf6aa62Smatt  * 1. Redistributions of source code must retain the above copyright
111bf6aa62Smatt  *    notice, this list of conditions and the following disclaimer.
121bf6aa62Smatt  * 2. Redistributions in binary form must reproduce the above copyright
131bf6aa62Smatt  *    notice, this list of conditions and the following disclaimer in the
141bf6aa62Smatt  *    documentation and/or other materials provided with the distribution.
151bf6aa62Smatt  * 3. All advertising materials mentioning features or use of this software
161bf6aa62Smatt  *    must display the following acknowledgement:
171bf6aa62Smatt  *	This product includes software developed by the RiscBSD team.
181bf6aa62Smatt  * 4. The name "RiscBSD" nor the name of the author may be used to
191bf6aa62Smatt  *    endorse or promote products derived from this software without specific
201bf6aa62Smatt  *    prior written permission.
211bf6aa62Smatt  *
221bf6aa62Smatt  * THIS SOFTWARE IS PROVIDED BY RISCBSD ``AS IS'' AND ANY EXPRESS OR IMPLIED
231bf6aa62Smatt  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
241bf6aa62Smatt  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
251bf6aa62Smatt  * IN NO EVENT SHALL RISCBSD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
261bf6aa62Smatt  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
271bf6aa62Smatt  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
281bf6aa62Smatt  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
291bf6aa62Smatt  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
301bf6aa62Smatt  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
311bf6aa62Smatt  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
321bf6aa62Smatt  * SUCH DAMAGE.
331bf6aa62Smatt  */
341bf6aa62Smatt 
351bf6aa62Smatt #ifndef	_EVBARM_PARAM_H_
361bf6aa62Smatt #define	_EVBARM_PARAM_H_
371bf6aa62Smatt 
381bf6aa62Smatt /*
391bf6aa62Smatt  * Machine dependent constants
401bf6aa62Smatt  */
411bf6aa62Smatt 
421bf6aa62Smatt #define	_MACHINE	evbarm
431bf6aa62Smatt #define	MACHINE		"evbarm"
441bf6aa62Smatt 
45*8694f07cSryo #ifdef __aarch64__
46*8694f07cSryo #include <aarch64/param.h>
47*8694f07cSryo #else
481bf6aa62Smatt #include <arm/arm32/param.h>
49*8694f07cSryo #endif
501bf6aa62Smatt 
511bf6aa62Smatt #endif	/* _EVBARM_PARAM_H_ */
52