1292407Sbr/*-
2292407Sbr * Copyright (c) 2001 by Thomas Moestl <tmm@FreeBSD.org>.
3292407Sbr * All rights reserved.
4292407Sbr *
5292407Sbr * Redistribution and use in source and binary forms, with or without
6292407Sbr * modification, are permitted provided that the following conditions
7292407Sbr * are met:
8292407Sbr * 1. Redistributions of source code must retain the above copyright
9292407Sbr *    notice, this list of conditions and the following disclaimer.
10292407Sbr * 2. Redistributions in binary form must reproduce the above copyright
11292407Sbr *    notice, this list of conditions and the following disclaimer in the
12292407Sbr *    documentation and/or other materials provided with the distribution.
13292407Sbr *
14292407Sbr * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15292407Sbr * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16292407Sbr * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17292407Sbr * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
18292407Sbr * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19292407Sbr * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
20292407Sbr * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
21292407Sbr * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
22292407Sbr * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
23292407Sbr * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24292407Sbr *
25292407Sbr * $FreeBSD$
26292407Sbr */
27292407Sbr
28292407Sbr#ifndef _MACHINE_OFW_MACHDEP_H_
29292407Sbr#define _MACHINE_OFW_MACHDEP_H_
30292407Sbr
31292407Sbr#include <vm/vm.h>
32292407Sbr
33292407Sbrtypedef	uint32_t	cell_t;
34292407Sbrstruct mem_region {
35292407Sbr	vm_offset_t	mr_start;
36292407Sbr	vm_size_t	mr_size;
37292407Sbr};
38292407Sbr
39292407Sbr#endif /* _MACHINE_OFW_MACHDEP_H_ */
40