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