1 /*******************************************************************************
2 * Copyright (C) 2018 Cadence Design Systems, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files (the
6 * "Software"), to use this Software with Cadence processor cores only and
7 * not with any other processors and platforms, subject to
8 * the following conditions:
9 *
10 * The above copyright notice and this permission notice shall be included
11 * in all copies or substantial portions of the Software.
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
16 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
17 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
18 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
19 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20 
21 ******************************************************************************/
22 
23 #ifdef  __XF_H
24 #error  "xf.h included more than once"
25 #endif
26 
27 #define __XF_H
28 
29 /*******************************************************************************
30  * Common runtime framework
31  ******************************************************************************/
32 
33 /* ...target configuration */
34 #include "xf-config.h"
35 
36 /* ...platform run-time */
37 #include "xf-runtime.h"
38 
39 /* ...debugging facility */
40 #include "xf-debug.h"
41 
42 /* ...API prototypes */
43 #include "xf-proto.h"
44 
45 /* ...standard opcodes */
46 #include "xf-opcode.h"
47 
48 /* ...platform-specific IPC layer */
49 #include "xf-ipc.h"
50 
51 /* ...proxy definitions */
52 #include "xf-proxy.h"
53 
54