cvmx.h revision 210284
1/***********************license start***************
2 *  Copyright (c) 2003-2008 Cavium Networks (support@cavium.com). All rights
3 *  reserved.
4 *
5 *
6 *  Redistribution and use in source and binary forms, with or without
7 *  modification, are permitted provided that the following conditions are
8 *  met:
9 *
10 *      * Redistributions of source code must retain the above copyright
11 *        notice, this list of conditions and the following disclaimer.
12 *
13 *      * Redistributions in binary form must reproduce the above
14 *        copyright notice, this list of conditions and the following
15 *        disclaimer in the documentation and/or other materials provided
16 *        with the distribution.
17 *
18 *      * Neither the name of Cavium Networks nor the names of
19 *        its contributors may be used to endorse or promote products
20 *        derived from this software without specific prior written
21 *        permission.
22 *
23 *  TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS"
24 *  AND WITH ALL FAULTS AND CAVIUM NETWORKS MAKES NO PROMISES, REPRESENTATIONS
25 *  OR WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH
26 *  RESPECT TO THE SOFTWARE, INCLUDING ITS CONDITION, ITS CONFORMITY TO ANY
27 *  REPRESENTATION OR DESCRIPTION, OR THE EXISTENCE OF ANY LATENT OR PATENT
28 *  DEFECTS, AND CAVIUM SPECIFICALLY DISCLAIMS ALL IMPLIED (IF ANY) WARRANTIES
29 *  OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR
30 *  PURPOSE, LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET
31 *  POSSESSION OR CORRESPONDENCE TO DESCRIPTION.  THE ENTIRE RISK ARISING OUT
32 *  OF USE OR PERFORMANCE OF THE SOFTWARE LIES WITH YOU.
33 *
34 *
35 *  For any questions regarding licensing please contact marketing@caviumnetworks.com
36 *
37 ***********************license end**************************************/
38
39
40/**
41 * @file
42 *
43 * Main Octeon executive header file (This should be the second header
44 * file included by an application).
45 *
46 * <hr>$Revision: 41586 $<hr>
47*/
48#ifndef __CVMX_H__
49#define __CVMX_H__
50
51/* Control whether simple executive applications use 1-1 TLB mappings to access physical
52** memory addresses.  This must be disabled to allow large programs that use more than
53** the 0x10000000 - 0x20000000 virtual address range.
54*/
55#ifndef CVMX_USE_1_TO_1_TLB_MAPPINGS
56#define CVMX_USE_1_TO_1_TLB_MAPPINGS 1
57#endif
58
59#ifndef CVMX_ENABLE_PARAMETER_CHECKING
60#define CVMX_ENABLE_PARAMETER_CHECKING 1
61#endif
62
63#ifndef CVMX_ENABLE_DEBUG_PRINTS
64#define CVMX_ENABLE_DEBUG_PRINTS 1
65#endif
66
67#ifdef	__cplusplus
68extern "C" {
69#endif
70
71#include "cvmx-platform.h"
72#include "cvmx-access.h"
73#include "cvmx-address.h"
74#include "cvmx-asm.h"
75#include "cvmx-packet.h"
76#include "cvmx-warn.h"
77#include "cvmx-sysinfo.h"
78#include "octeon-model.h"
79#include "cvmx-csr.h"
80#include "cvmx-utils.h"
81
82#if defined(__mips__) && !defined(CVMX_BUILD_FOR_LINUX_HOST)
83#include "cvmx-access-native.h"
84#endif
85
86#ifdef	__cplusplus
87}
88#endif
89
90#endif  /*  __CVMX_H__  */
91