platform.h revision 266301
1266301Sandrew/*-
2266301Sandrew * Copyright (c) 2014 Andrew Turner
3266301Sandrew * All rights reserved.
4266301Sandrew *
5266301Sandrew * Redistribution and use in source and binary forms, with or without
6266301Sandrew * modification, are permitted provided that the following conditions
7266301Sandrew * are met:
8266301Sandrew * 1. Redistributions of source code must retain the above copyright
9266301Sandrew *    notice, this list of conditions and the following disclaimer.
10266301Sandrew * 2. Redistributions in binary form must reproduce the above copyright
11266301Sandrew *    notice, this list of conditions and the following disclaimer in the
12266301Sandrew *    documentation and/or other materials provided with the distribution.
13266301Sandrew *
14266301Sandrew * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15266301Sandrew * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16266301Sandrew * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17266301Sandrew * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18266301Sandrew * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19266301Sandrew * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20266301Sandrew * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21266301Sandrew * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22266301Sandrew * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23266301Sandrew * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24266301Sandrew * SUCH DAMAGE.
25266301Sandrew *
26266301Sandrew * $FreeBSD: head/sys/arm/include/platform.h 266301 2014-05-17 11:27:36Z andrew $
27266301Sandrew */
28266301Sandrew
29266301Sandrew#ifndef	_MACHINE_PLATFORM_H_
30266301Sandrew#define	_MACHINE_PLATFORM_H_
31266301Sandrew
32266301Sandrewvoid platform_probe_and_attach(void);
33266301Sandrewint platform_devmap_init(void);
34266301Sandrewvm_offset_t platform_lastaddr(void);
35266301Sandrewvoid platform_gpio_init(void);
36266301Sandrewvoid platform_late_init(void);
37266301Sandrew
38266301Sandrew#endif	/* _MACHINE_PLATFORM_H_ */
39