1239281Sgonzo/*-
2239281Sgonzo * Copyright (c) 2012 Olivier Houchard.  All rights reserved.
3239281Sgonzo *
4239281Sgonzo * Redistribution and use in source and binary forms, with or without
5239281Sgonzo * modification, are permitted provided that the following conditions
6239281Sgonzo * are met:
7239281Sgonzo * 1. Redistributions of source code must retain the above copyright
8239281Sgonzo *    notice, this list of conditions and the following disclaimer.
9239281Sgonzo * 2. Redistributions in binary form must reproduce the above copyright
10239281Sgonzo *    notice, this list of conditions and the following disclaimer in the
11239281Sgonzo *    documentation and/or other materials provided with the distribution.
12239281Sgonzo *
13239281Sgonzo * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14239281Sgonzo * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15239281Sgonzo * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16239281Sgonzo * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17239281Sgonzo * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18239281Sgonzo * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19239281Sgonzo * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20239281Sgonzo * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21239281Sgonzo * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22239281Sgonzo * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23239281Sgonzo */
24239281Sgonzo
25239281Sgonzo
26239281Sgonzo/*
27239281Sgonzo * $FreeBSD: releng/10.3/sys/arm/ti/ti_smc.h 239281 2012-08-15 06:31:32Z gonzo $
28239281Sgonzo */
29239281Sgonzo
30239281Sgonzo#ifndef TI_SMC_H_
31239281Sgonzo#define TI_SMC_H_
32239281Sgonzouint32_t ti_smc0(uint32_t r0, uint32_t r1, uint32_t function_id);
33239281Sgonzo#endif /* TI_SMC_H_ */
34