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