xref: /freebsd/sys/arm/ti/tivar.h (revision e53470fee3cf7ba343701650d5e75b8142046acf)
1*e53470feSOleksandr Tymoshenko /*
2*e53470feSOleksandr Tymoshenko  * Copyright (c) 2010
3*e53470feSOleksandr Tymoshenko  *	Ben Gray <ben.r.gray@gmail.com>.
4*e53470feSOleksandr Tymoshenko  * All rights reserved.
5*e53470feSOleksandr Tymoshenko  *
6*e53470feSOleksandr Tymoshenko  * Redistribution and use in source and binary forms, with or without
7*e53470feSOleksandr Tymoshenko  * modification, are permitted provided that the following conditions
8*e53470feSOleksandr Tymoshenko  * are met:
9*e53470feSOleksandr Tymoshenko  * 1. Redistributions of source code must retain the above copyright
10*e53470feSOleksandr Tymoshenko  *    notice, this list of conditions and the following disclaimer.
11*e53470feSOleksandr Tymoshenko  * 2. Redistributions in binary form must reproduce the above copyright
12*e53470feSOleksandr Tymoshenko  *    notice, this list of conditions and the following disclaimer in the
13*e53470feSOleksandr Tymoshenko  *    documentation and/or other materials provided with the distribution.
14*e53470feSOleksandr Tymoshenko  * 3. All advertising materials mentioning features or use of this software
15*e53470feSOleksandr Tymoshenko  *    must display the following acknowledgement:
16*e53470feSOleksandr Tymoshenko  *	This product includes software developed by Ben Gray.
17*e53470feSOleksandr Tymoshenko  * 4. The name of the company nor the name of the author may be used to
18*e53470feSOleksandr Tymoshenko  *    endorse or promote products derived from this software without specific
19*e53470feSOleksandr Tymoshenko  *    prior written permission.
20*e53470feSOleksandr Tymoshenko  *
21*e53470feSOleksandr Tymoshenko  * THIS SOFTWARE IS PROVIDED BY BEN GRAY ``AS IS'' AND ANY EXPRESS OR
22*e53470feSOleksandr Tymoshenko  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23*e53470feSOleksandr Tymoshenko  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24*e53470feSOleksandr Tymoshenko  * IN NO EVENT SHALL BEN GRAY BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25*e53470feSOleksandr Tymoshenko  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26*e53470feSOleksandr Tymoshenko  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27*e53470feSOleksandr Tymoshenko  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28*e53470feSOleksandr Tymoshenko  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29*e53470feSOleksandr Tymoshenko  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
30*e53470feSOleksandr Tymoshenko  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31*e53470feSOleksandr Tymoshenko  *
32*e53470feSOleksandr Tymoshenko  * $FreeBSD$
33*e53470feSOleksandr Tymoshenko  */
34*e53470feSOleksandr Tymoshenko 
35*e53470feSOleksandr Tymoshenko #ifndef _TIVAR_H_
36*e53470feSOleksandr Tymoshenko #define	_TIVAR_H_
37*e53470feSOleksandr Tymoshenko 
38*e53470feSOleksandr Tymoshenko /* board-dependent reset function implementation */
39*e53470feSOleksandr Tymoshenko extern void (*ti_cpu_reset)(void);
40*e53470feSOleksandr Tymoshenko 
41*e53470feSOleksandr Tymoshenko #endif /* _TIVAR_H_ */
42