cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

mlx5_vdpa.h (3845B)


      1/* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
      2/* Copyright (c) 2020 Mellanox Technologies Ltd. */
      3
      4#ifndef __MLX5_VDPA_H__
      5#define __MLX5_VDPA_H__
      6
      7#include <linux/etherdevice.h>
      8#include <linux/vringh.h>
      9#include <linux/vdpa.h>
     10#include <linux/mlx5/driver.h>
     11
     12#define MLX5V_ETH_HARD_MTU (ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN)
     13
     14struct mlx5_vdpa_direct_mr {
     15	u64 start;
     16	u64 end;
     17	u32 perm;
     18	u32 mr;
     19	struct sg_table sg_head;
     20	int log_size;
     21	int nsg;
     22	int nent;
     23	struct list_head list;
     24	u64 offset;
     25};
     26
     27struct mlx5_vdpa_mr {
     28	u32 mkey;
     29
     30	/* list of direct MRs descendants of this indirect mr */
     31	struct list_head head;
     32	unsigned long num_directs;
     33	unsigned long num_klms;
     34	bool initialized;
     35
     36	/* serialize mkey creation and destruction */
     37	struct mutex mkey_mtx;
     38	bool user_mr;
     39};
     40
     41struct mlx5_vdpa_resources {
     42	u32 pdn;
     43	struct mlx5_uars_page *uar;
     44	void __iomem *kick_addr;
     45	u64 phys_kick_addr;
     46	u16 uid;
     47	u32 null_mkey;
     48	bool valid;
     49};
     50
     51struct mlx5_control_vq {
     52	struct vhost_iotlb *iotlb;
     53	/* spinlock to synchronize iommu table */
     54	spinlock_t iommu_lock;
     55	struct vringh vring;
     56	bool ready;
     57	u64 desc_addr;
     58	u64 device_addr;
     59	u64 driver_addr;
     60	struct vdpa_callback event_cb;
     61	struct vringh_kiov riov;
     62	struct vringh_kiov wiov;
     63	unsigned short head;
     64	unsigned int received_desc;
     65	unsigned int completed_desc;
     66};
     67
     68struct mlx5_vdpa_wq_ent {
     69	struct work_struct work;
     70	struct mlx5_vdpa_dev *mvdev;
     71};
     72
     73struct mlx5_vdpa_dev {
     74	struct vdpa_device vdev;
     75	struct mlx5_core_dev *mdev;
     76	struct mlx5_vdpa_resources res;
     77
     78	u64 mlx_features;
     79	u64 actual_features;
     80	u8 status;
     81	u32 max_vqs;
     82	u16 max_idx;
     83	u32 generation;
     84
     85	struct mlx5_vdpa_mr mr;
     86	struct mlx5_control_vq cvq;
     87	struct workqueue_struct *wq;
     88};
     89
     90int mlx5_vdpa_alloc_pd(struct mlx5_vdpa_dev *dev, u32 *pdn, u16 uid);
     91int mlx5_vdpa_dealloc_pd(struct mlx5_vdpa_dev *dev, u32 pdn, u16 uid);
     92int mlx5_vdpa_get_null_mkey(struct mlx5_vdpa_dev *dev, u32 *null_mkey);
     93int mlx5_vdpa_create_tis(struct mlx5_vdpa_dev *mvdev, void *in, u32 *tisn);
     94void mlx5_vdpa_destroy_tis(struct mlx5_vdpa_dev *mvdev, u32 tisn);
     95int mlx5_vdpa_create_rqt(struct mlx5_vdpa_dev *mvdev, void *in, int inlen, u32 *rqtn);
     96int mlx5_vdpa_modify_rqt(struct mlx5_vdpa_dev *mvdev, void *in, int inlen, u32 rqtn);
     97void mlx5_vdpa_destroy_rqt(struct mlx5_vdpa_dev *mvdev, u32 rqtn);
     98int mlx5_vdpa_create_tir(struct mlx5_vdpa_dev *mvdev, void *in, u32 *tirn);
     99void mlx5_vdpa_destroy_tir(struct mlx5_vdpa_dev *mvdev, u32 tirn);
    100int mlx5_vdpa_alloc_transport_domain(struct mlx5_vdpa_dev *mvdev, u32 *tdn);
    101void mlx5_vdpa_dealloc_transport_domain(struct mlx5_vdpa_dev *mvdev, u32 tdn);
    102int mlx5_vdpa_alloc_resources(struct mlx5_vdpa_dev *mvdev);
    103void mlx5_vdpa_free_resources(struct mlx5_vdpa_dev *mvdev);
    104int mlx5_vdpa_create_mkey(struct mlx5_vdpa_dev *mvdev, u32 *mkey, u32 *in,
    105			  int inlen);
    106int mlx5_vdpa_destroy_mkey(struct mlx5_vdpa_dev *mvdev, u32 mkey);
    107int mlx5_vdpa_handle_set_map(struct mlx5_vdpa_dev *mvdev, struct vhost_iotlb *iotlb,
    108			     bool *change_map);
    109int mlx5_vdpa_create_mr(struct mlx5_vdpa_dev *mvdev, struct vhost_iotlb *iotlb);
    110void mlx5_vdpa_destroy_mr(struct mlx5_vdpa_dev *mvdev);
    111
    112#define mlx5_vdpa_warn(__dev, format, ...)                                                         \
    113	dev_warn((__dev)->mdev->device, "%s:%d:(pid %d) warning: " format, __func__, __LINE__,     \
    114		 current->pid, ##__VA_ARGS__)
    115
    116#define mlx5_vdpa_info(__dev, format, ...)                                                         \
    117	dev_info((__dev)->mdev->device, "%s:%d:(pid %d): " format, __func__, __LINE__,             \
    118		 current->pid, ##__VA_ARGS__)
    119
    120#define mlx5_vdpa_dbg(__dev, format, ...)                                                          \
    121	dev_debug((__dev)->mdev->device, "%s:%d:(pid %d): " format, __func__, __LINE__,            \
    122		  current->pid, ##__VA_ARGS__)
    123
    124#endif /* __MLX5_VDPA_H__ */