summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'pciever.h')
-rw-r--r--pciever.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/pciever.h b/pciever.h
new file mode 100644
index 0000000..a29ddc4
--- /dev/null
+++ b/pciever.h
@@ -0,0 +1,68 @@
1#ifndef PCIEVER_H
2#define PCIEVER_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8/* ============================================================= */
9/**
10 * @file pciever.h
11 *
12 * path ti/drv/pcie/pciever.h
13 *
14 * @brief PCIE sub-system LLD Version Definitions
15 *
16 * ============================================================
17 * Copyright (c) Texas Instruments Incorporated 2009-2015
18 *
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions
21 * are met:
22 *
23 * Redistributions of source code must retain the above copyright
24 * notice, this list of conditions and the following disclaimer.
25 *
26 * Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the
29 * distribution.
30 *
31 * Neither the name of Texas Instruments Incorporated nor the names of
32 * its contributors may be used to endorse or promote products derived
33 * from this software without specific prior written permission.
34 *
35 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
36 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
37 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
38 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
39 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
42 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
43 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
44 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
45 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
46 *
47*/
48
49/**
50 * @brief This is the PCIE LLD Version. Versions numbers are encoded in the following
51 * format:
52 * 0xAABBCCDD -> Arch (AA); API Changes (BB); Major (CC); Minor (DD)
53 */
54#define pcie_LLD_VERSION_ID (0x02020004U)
55
56/**
57 * @brief This is the version string which describes the PCIE LLD along with the
58 * date and build information.
59 */
60#define pcie_LLD_VERSION_STR "PCIE LLD Revision: 02.02.00.04"
61
62
63#ifdef __cplusplus
64}
65#endif
66
67
68#endif /* PCIEVER_H */