1184588Sdfr/*	$NetBSD$	*/
2184588Sdfr
3184588Sdfr/*
4184588Sdfr * Copyright (c) 2002 Wasabi Systems, Inc.
5184588Sdfr * All rights reserved.
6184588Sdfr *
7184588Sdfr * Written by Jason R. Thorpe for Wasabi Systems, Inc.
8184588Sdfr *
9184588Sdfr * Redistribution and use in source and binary forms, with or without
10184588Sdfr * modification, are permitted provided that the following conditions
11184588Sdfr * are met:
12184588Sdfr * 1. Redistributions of source code must retain the above copyright
13184588Sdfr *    notice, this list of conditions and the following disclaimer.
14184588Sdfr * 2. Redistributions in binary form must reproduce the above copyright
15184588Sdfr *    notice, this list of conditions and the following disclaimer in the
16184588Sdfr *    documentation and/or other materials provided with the distribution.
17184588Sdfr * 3. All advertising materials mentioning features or use of this software
18184588Sdfr *    must display the following acknowledgement:
19184588Sdfr *	This product includes software developed for the NetBSD Project by
20184588Sdfr *	Wasabi Systems, Inc.
21184588Sdfr * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22184588Sdfr *    or promote products derived from this software without specific prior
23184588Sdfr *    written permission.
24184588Sdfr *
25184588Sdfr * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26184588Sdfr * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27184588Sdfr * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28184588Sdfr * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
29184588Sdfr * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30184588Sdfr * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31184588Sdfr * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32184588Sdfr * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33184588Sdfr * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34244370Srmacklem * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35184588Sdfr * POSSIBILITY OF SUCH DAMAGE.
36184588Sdfr */
37244370Srmacklem
38184588Sdfr/*
39184588Sdfr * Board initialization routines for the Intel IQ80321 eval board.
40184588Sdfr */
41184588Sdfr
42184588Sdfr#include <sys/types.h>
43184588Sdfr#include <lib/libsa/stand.h>
44184588Sdfr
45184588Sdfr#include "board.h"
46184588Sdfr
47223309Srmacklemvoid
48184588Sdfrboard_init(void)
49184588Sdfr{
50184588Sdfr
51184588Sdfr	mem_init();
52184588Sdfr}
53184588Sdfr
54184588Sdfrvoid
55184588Sdfrboard_fini(void)
56184588Sdfr{
57184588Sdfr
58184588Sdfr	/* Nothing to do here. */
59184588Sdfr}
60184588Sdfr