2018-01-10 09:17:10 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright 2008-2017 Cisco Systems, Inc. All rights reserved.
|
2014-11-25 17:26:43 +00:00
|
|
|
* Copyright 2007 Nuova Systems, Inc. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ENIC_COMPAT_H_
|
|
|
|
#define _ENIC_COMPAT_H_
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2014-11-29 07:17:37 +00:00
|
|
|
#include <unistd.h>
|
2014-11-25 17:26:43 +00:00
|
|
|
|
|
|
|
#include <rte_atomic.h>
|
|
|
|
#include <rte_malloc.h>
|
2015-02-14 15:32:58 +00:00
|
|
|
#include <rte_log.h>
|
2017-01-18 01:21:33 +00:00
|
|
|
#include <rte_io.h>
|
2014-11-25 17:26:43 +00:00
|
|
|
|
|
|
|
#define ETH_ALEN 6
|
|
|
|
|
|
|
|
#define __iomem
|
|
|
|
|
|
|
|
#define pr_err(y, args...) dev_err(0, y, ##args)
|
|
|
|
#define pr_warn(y, args...) dev_warning(0, y, ##args)
|
|
|
|
#define BUG() pr_err("BUG at %s:%d", __func__, __LINE__)
|
|
|
|
|
2015-02-17 02:08:08 +00:00
|
|
|
#define VNIC_ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a)-1)
|
2014-11-25 17:26:43 +00:00
|
|
|
#define __ALIGN_MASK(x, mask) (((x)+(mask))&~(mask))
|
|
|
|
|
2019-07-16 05:37:20 +00:00
|
|
|
extern int enic_pmd_logtype;
|
|
|
|
|
2015-02-14 15:32:58 +00:00
|
|
|
#define dev_printk(level, fmt, args...) \
|
2019-07-16 05:37:20 +00:00
|
|
|
rte_log(RTE_LOG_ ## level, enic_pmd_logtype, \
|
|
|
|
"PMD: rte_enic_pmd: " fmt, ##args)
|
2015-02-14 15:32:58 +00:00
|
|
|
|
|
|
|
#define dev_err(x, args...) dev_printk(ERR, args)
|
|
|
|
#define dev_info(x, args...) dev_printk(INFO, args)
|
|
|
|
#define dev_warning(x, args...) dev_printk(WARNING, args)
|
|
|
|
#define dev_debug(x, args...) dev_printk(DEBUG, args)
|
2014-11-25 17:26:43 +00:00
|
|
|
|
2019-07-16 05:37:20 +00:00
|
|
|
#define ENICPMD_LOG(level, fmt, args...) \
|
|
|
|
rte_log(RTE_LOG_ ## level, enic_pmd_logtype, \
|
2019-10-31 05:36:21 +00:00
|
|
|
"%s " fmt "\n", __func__, ##args)
|
|
|
|
#define ENICPMD_FUNC_TRACE() ENICPMD_LOG(DEBUG, ">>")
|
2018-01-10 09:17:09 +00:00
|
|
|
|
2014-11-25 17:26:43 +00:00
|
|
|
typedef unsigned long long dma_addr_t;
|
|
|
|
|
2014-11-28 09:38:19 +00:00
|
|
|
static inline uint32_t ioread32(volatile void *addr)
|
2014-11-25 17:26:43 +00:00
|
|
|
{
|
2017-01-18 01:21:33 +00:00
|
|
|
return rte_read32(addr);
|
2014-11-25 17:26:43 +00:00
|
|
|
}
|
|
|
|
|
2014-11-28 09:38:19 +00:00
|
|
|
static inline uint8_t ioread8(volatile void *addr)
|
2014-11-25 17:26:43 +00:00
|
|
|
{
|
2017-01-18 01:21:33 +00:00
|
|
|
return rte_read8(addr);
|
2014-11-25 17:26:43 +00:00
|
|
|
}
|
|
|
|
|
2014-11-28 09:38:19 +00:00
|
|
|
static inline void iowrite32(uint32_t val, volatile void *addr)
|
2014-11-25 17:26:43 +00:00
|
|
|
{
|
2017-01-18 01:21:33 +00:00
|
|
|
rte_write32(val, addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void iowrite32_relaxed(uint32_t val, volatile void *addr)
|
|
|
|
{
|
|
|
|
rte_write32_relaxed(val, addr);
|
2014-11-25 17:26:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned int readl(volatile void __iomem *addr)
|
|
|
|
{
|
2017-01-18 01:21:33 +00:00
|
|
|
return rte_read32(addr);
|
|
|
|
}
|
|
|
|
|
2014-11-25 17:26:43 +00:00
|
|
|
static inline void writel(unsigned int val, volatile void __iomem *addr)
|
|
|
|
{
|
2017-01-18 01:21:33 +00:00
|
|
|
rte_write32(val, addr);
|
2014-11-25 17:26:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _ENIC_COMPAT_H_ */
|