xref: /netbsd-src/sys/arch/evbarm/stand/board/gemini.c (revision 1913f7ba9972b4b373db7960178333e7a5dd365e)
1*1913f7baScliff /*	$NetBSD: gemini.c,v 1.1 2008/10/30 06:23:13 cliff Exp $	*/
2*1913f7baScliff 
3*1913f7baScliff /* adapted from:
4*1913f7baScliff  *	NetBSD: iq80321.c,v 1.1 2002/04/17 17:37:52 thorpej Exp
5*1913f7baScliff  */
6*1913f7baScliff 
7*1913f7baScliff /*
8*1913f7baScliff  * Copyright (c) 2002 Wasabi Systems, Inc.
9*1913f7baScliff  * All rights reserved.
10*1913f7baScliff  *
11*1913f7baScliff  * Written by Jason R. Thorpe for Wasabi Systems, Inc.
12*1913f7baScliff  *
13*1913f7baScliff  * Redistribution and use in source and binary forms, with or without
14*1913f7baScliff  * modification, are permitted provided that the following conditions
15*1913f7baScliff  * are met:
16*1913f7baScliff  * 1. Redistributions of source code must retain the above copyright
17*1913f7baScliff  *    notice, this list of conditions and the following disclaimer.
18*1913f7baScliff  * 2. Redistributions in binary form must reproduce the above copyright
19*1913f7baScliff  *    notice, this list of conditions and the following disclaimer in the
20*1913f7baScliff  *    documentation and/or other materials provided with the distribution.
21*1913f7baScliff  * 3. All advertising materials mentioning features or use of this software
22*1913f7baScliff  *    must display the following acknowledgement:
23*1913f7baScliff  *	This product includes software developed for the NetBSD Project by
24*1913f7baScliff  *	Wasabi Systems, Inc.
25*1913f7baScliff  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
26*1913f7baScliff  *    or promote products derived from this software without specific prior
27*1913f7baScliff  *    written permission.
28*1913f7baScliff  *
29*1913f7baScliff  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
30*1913f7baScliff  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
31*1913f7baScliff  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
32*1913f7baScliff  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
33*1913f7baScliff  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
34*1913f7baScliff  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
35*1913f7baScliff  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
36*1913f7baScliff  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
37*1913f7baScliff  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
38*1913f7baScliff  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
39*1913f7baScliff  * POSSIBILITY OF SUCH DAMAGE.
40*1913f7baScliff  */
41*1913f7baScliff 
42*1913f7baScliff /*
43*1913f7baScliff  * Board initialization routines for the Intel Gemini eval board.
44*1913f7baScliff  */
45*1913f7baScliff 
46*1913f7baScliff #include <sys/types.h>
47*1913f7baScliff #include <lib/libsa/stand.h>
48*1913f7baScliff 
49*1913f7baScliff #include "board.h"
50*1913f7baScliff 
51*1913f7baScliff void
board_init(void)52*1913f7baScliff board_init(void)
53*1913f7baScliff {
54*1913f7baScliff 
55*1913f7baScliff 	mem_init();
56*1913f7baScliff }
57*1913f7baScliff 
58*1913f7baScliff void
board_fini(void)59*1913f7baScliff board_fini(void)
60*1913f7baScliff {
61*1913f7baScliff 
62*1913f7baScliff 	/* Nothing to do here. */
63*1913f7baScliff }
64