blob: 81449f19b349c1bb8ac7ea0256d3f7e2d7be226d [file] [log] [blame]
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02001/**
2 * @file IxOsalConfig.h
3 *
4 * @brief OSAL Configuration header file
5 *
6 *
7 * @par
8 * IXP400 SW Release version 2.0
9 *
10 * -- Copyright Notice --
11 *
12 * @par
13 * Copyright 2001-2005, Intel Corporation.
14 * All rights reserved.
15 *
16 * @par
Wolfgang Denkcb3761e2013-07-28 22:12:47 +020017 * SPDX-License-Identifier: BSD-3-Clause
Wolfgang Denkba94a1b2006-05-30 15:56:48 +020018 * @par
19 * -- End of Copyright Notice --
20 */
21
22/*
23 * This file contains user-editable fields for modules inclusion.
24 */
25#ifndef IxOsalConfig_H
26#define IxOsalConfig_H
27
28
29/*
30 * Note: in the future these config options may
31 * become build time decision.
32 */
33
34/* Choose cache */
35#define IX_OSAL_CACHED
36/* #define IX_OSAL_UNCACHED */
37
38
39/*
40 * Select the module headers to include
41 */
42#include "IxOsalIoMem.h" /* I/O Memory Management module API */
43#include "IxOsalBufferMgt.h" /* Buffer Management module API */
44
45/*
46 * Select main platform header file to use
47 */
48#include "IxOsalOem.h"
49
50
51
52#endif /* IxOsalConfig_H */