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