5ef518098e
Register the Pensando ionic PMD (net_ionic) and define initial probe and remove callbacks with adapter initialization. Signed-off-by: Alfredo Cardigliano <cardigliano@ntop.org> Reviewed-by: Shannon Nelson <snelson@pensando.io>
65 lines
1.4 KiB
C
65 lines
1.4 KiB
C
/* SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0)
|
|
* Copyright(c) 2018-2019 Pensando Systems, Inc. All rights reserved.
|
|
*/
|
|
|
|
#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>
|
|
|
|
#include "ionic_logs.h"
|
|
|
|
#define DELAY(x) rte_delay_us(x)
|
|
#define usec_delay(x) DELAY(x)
|
|
#define msec_delay(x) DELAY(1000 * (x))
|
|
|
|
#define BIT(nr) (1UL << (nr))
|
|
#define BIT_ULL(nr) (1ULL << (nr))
|
|
#define BITS_TO_LONGS(nr) div_round_up(nr, 8 * sizeof(long))
|
|
|
|
#ifndef PAGE_SHIFT
|
|
#define PAGE_SHIFT 12
|
|
#define PAGE_SIZE (1 << PAGE_SHIFT)
|
|
#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;
|
|
|
|
#ifndef __cplusplus
|
|
typedef uint8_t bool;
|
|
#define false 0
|
|
#define true 1
|
|
#endif
|
|
|
|
static inline uint32_t div_round_up(uint32_t n, uint32_t d)
|
|
{
|
|
return (n + d - 1) / d;
|
|
}
|
|
|
|
#define ioread8(reg) rte_read8(reg)
|
|
#define ioread32(reg) rte_read32(reg)
|
|
#define iowrite8(value, reg) rte_write8(value, reg)
|
|
#define iowrite32(value, reg) rte_write32(value, reg)
|
|
#define writeq(value, reg) rte_write64(value, reg)
|
|
|
|
#endif
|