2023-09-13 12:21:49 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright 2018-2022 Advanced Micro Devices, Inc.
|
2021-02-05 08:48:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _IONIC_OSDEP_
|
|
|
|
#define _IONIC_OSDEP_
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include <rte_common.h>
|
|
|
|
#include <rte_debug.h>
|
|
|
|
#include <rte_cycles.h>
|
|
|
|
#include <rte_log.h>
|
|
|
|
#include <rte_byteorder.h>
|
|
|
|
#include <rte_io.h>
|
|
|
|
#include <rte_memory.h>
|
2022-09-06 04:00:10 +00:00
|
|
|
#include <rte_eal_paging.h>
|
2021-02-05 08:48:47 +00:00
|
|
|
|
|
|
|
#include "ionic_logs.h"
|
|
|
|
|
|
|
|
#define BIT(nr) (1UL << (nr))
|
|
|
|
#define BIT_ULL(nr) (1ULL << (nr))
|
|
|
|
|
|
|
|
#ifndef PAGE_SHIFT
|
|
|
|
#define PAGE_SHIFT 12
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define __iomem
|
|
|
|
|
|
|
|
typedef uint8_t u8;
|
|
|
|
typedef uint16_t u16;
|
|
|
|
typedef uint32_t u32;
|
|
|
|
typedef uint64_t u64;
|
|
|
|
|
|
|
|
typedef uint16_t __le16;
|
|
|
|
typedef uint32_t __le32;
|
|
|
|
typedef uint64_t __le64;
|
|
|
|
|
|
|
|
#define ioread8(reg) rte_read8(reg)
|
2022-09-06 04:00:10 +00:00
|
|
|
#define ioread32(reg) rte_read32(rte_le_to_cpu_32(reg))
|
2021-02-05 08:48:47 +00:00
|
|
|
#define iowrite8(value, reg) rte_write8(value, reg)
|
2022-09-06 04:00:10 +00:00
|
|
|
#define iowrite32(value, reg) rte_write32(rte_cpu_to_le_32(value), reg)
|
2021-02-05 08:48:47 +00:00
|
|
|
|
|
|
|
#endif
|