1185305Simp/*-
2185305Simp * Copyright (c) 2008 Warner Losh.  All rights reserved.
3185305Simp *
4185305Simp * Redistribution and use in source and binary forms, with or without
5185305Simp * modification, are permitted provided that the following conditions
6185305Simp * are met:
7185305Simp * 1. Redistributions of source code must retain the above copyright
8185305Simp *    notice, this list of conditions and the following disclaimer.
9185305Simp * 2. Redistributions in binary form must reproduce the above copyright
10185305Simp *    notice, this list of conditions and the following disclaimer in the
11185305Simp *    documentation and/or other materials provided with the distribution.
12185305Simp *
13185305Simp * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14185305Simp * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15185305Simp * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16185305Simp * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
17185305Simp * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18185305Simp * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19185305Simp * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20185305Simp * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21185305Simp * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22185305Simp * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23185305Simp * SUCH DAMAGE.
24185305Simp */
25185305Simp
26185305Simp/* $FreeBSD$ */
27185305Simp
28185305Simp#ifndef _ARM_AT91_AT91BOARD_H_
29185305Simp#define _ARM_AT91_AT91BOARD_H_
30185305Simp
31185305Simp/*
32185305Simp * These routines are used by board init routines
33185305Simp */
34185305Simplong at91_ramsize(void);
35185305Simp
36185305Simp#endif /* _ARM_AT91_AT91BOARD_H_ */
37