ebada60e1d340d29fdba09a763ec6587ce21f1dd
[deb_dpdk.git] / drivers / bus / fslmc / mc / fsl_mc_sys.h
1 /*-
2  * This file is provided under a dual BSD/GPLv2 license. When using or
3  * redistributing this file, you may do so under either license.
4  *
5  *   BSD LICENSE
6  *
7  * Copyright 2013-2015 Freescale Semiconductor Inc.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions are met:
11  * * Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  * * Redistributions in binary form must reproduce the above copyright
14  * notice, this list of conditions and the following disclaimer in the
15  * documentation and/or other materials provided with the distribution.
16  * * Neither the name of the above-listed copyright holders nor the
17  * names of any contributors may be used to endorse or promote products
18  * derived from this software without specific prior written permission.
19  *
20  *   GPL LICENSE SUMMARY
21  *
22  * ALTERNATIVELY, this software may be distributed under the terms of the
23  * GNU General Public License ("GPL") as published by the Free Software
24  * Foundation, either version 2 of that License or (at your option) any
25  * later version.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
28  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
31  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37  * POSSIBILITY OF SUCH DAMAGE.
38  */
39 #ifndef _FSL_MC_SYS_H
40 #define _FSL_MC_SYS_H
41
42 #ifdef __linux_driver__
43
44 #include <linux/errno.h>
45 #include <asm/io.h>
46 #include <linux/slab.h>
47
48 struct fsl_mc_io {
49         void *regs;
50 };
51
52 #ifndef ENOTSUP
53 #define ENOTSUP         95
54 #endif
55
56 #define ioread64(_p)        readq(_p)
57 #define iowrite64(_v, _p)   writeq(_v, _p)
58
59 #else /* __linux_driver__ */
60
61 #include <stdio.h>
62 #include <libio.h>
63 #include <stdint.h>
64 #include <errno.h>
65 #include <sys/uio.h>
66 #include <linux/byteorder/little_endian.h>
67
68 #define cpu_to_le64(x) __cpu_to_le64(x)
69 #ifndef dmb
70 #define dmb() {__asm__ __volatile__("" : : : "memory"); }
71 #endif
72 #define __iormb()       dmb()
73 #define __iowmb()       dmb()
74 #define __arch_getq(a)                  (*(volatile unsigned long *)(a))
75 #define __arch_putq(v, a)                (*(volatile unsigned long *)(a) = (v))
76 #define __arch_putq32(v, a)                (*(volatile unsigned int *)(a) = (v))
77 #define readq(c)        \
78         ({ uint64_t __v = __arch_getq(c); __iormb(); __v; })
79 #define writeq(v, c)     \
80         ({ uint64_t __v = v; __iowmb(); __arch_putq(__v, c); __v; })
81 #define writeq32(v, c) \
82         ({ uint32_t __v = v; __iowmb(); __arch_putq32(__v, c); __v; })
83 #define ioread64(_p)        readq(_p)
84 #define iowrite64(_v, _p)   writeq(_v, _p)
85 #define iowrite32(_v, _p)   writeq32(_v, _p)
86 #define __iomem
87
88 struct fsl_mc_io {
89         void *regs;
90 };
91
92 #ifndef ENOTSUP
93 #define ENOTSUP         95
94 #endif
95
96 /*GPP is supposed to use MC commands with low priority*/
97 #define CMD_PRI_LOW          0 /*!< Low Priority command indication */
98
99 struct mc_command;
100
101 int mc_send_command(struct fsl_mc_io *mc_io, struct mc_command *cmd);
102
103 #endif /* __linux_driver__ */
104
105 #endif /* _FSL_MC_SYS_H */