net/mlx5: PD and UAR commands via mlx5 ifc
[cascardo/linux.git] / drivers / net / ethernet / mellanox / mlx5 / core / pd.c
index f2d3aee..efe452c 100644 (file)
 #include <linux/mlx5/cmd.h>
 #include "mlx5_core.h"
 
-struct mlx5_alloc_pd_mbox_in {
-       struct mlx5_inbox_hdr   hdr;
-       u8                      rsvd[8];
-};
-
-struct mlx5_alloc_pd_mbox_out {
-       struct mlx5_outbox_hdr  hdr;
-       __be32                  pdn;
-       u8                      rsvd[4];
-};
-
-struct mlx5_dealloc_pd_mbox_in {
-       struct mlx5_inbox_hdr   hdr;
-       __be32                  pdn;
-       u8                      rsvd[4];
-};
-
-struct mlx5_dealloc_pd_mbox_out {
-       struct mlx5_outbox_hdr  hdr;
-       u8                      rsvd[8];
-};
-
 int mlx5_core_alloc_pd(struct mlx5_core_dev *dev, u32 *pdn)
 {
-       struct mlx5_alloc_pd_mbox_in    in;
-       struct mlx5_alloc_pd_mbox_out   out;
+       u32 out[MLX5_ST_SZ_DW(alloc_pd_out)] = {0};
+       u32 in[MLX5_ST_SZ_DW(alloc_pd_in)]   = {0};
        int err;
 
-       memset(&in, 0, sizeof(in));
-       memset(&out, 0, sizeof(out));
-       in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_ALLOC_PD);
-       err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out));
+       MLX5_SET(alloc_pd_in, in, opcode, MLX5_CMD_OP_ALLOC_PD);
+       err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
+       err = err ? : mlx5_cmd_status_to_err_v2(out);
        if (err)
                return err;
 
-       if (out.hdr.status)
-               return mlx5_cmd_status_to_err(&out.hdr);
-
-       *pdn = be32_to_cpu(out.pdn) & 0xffffff;
+       *pdn = MLX5_GET(alloc_pd_out, out, pd);
        return err;
 }
 EXPORT_SYMBOL(mlx5_core_alloc_pd);
 
 int mlx5_core_dealloc_pd(struct mlx5_core_dev *dev, u32 pdn)
 {
-       struct mlx5_dealloc_pd_mbox_in  in;
-       struct mlx5_dealloc_pd_mbox_out out;
+       u32 out[MLX5_ST_SZ_DW(dealloc_pd_out)] = {0};
+       u32 in[MLX5_ST_SZ_DW(dealloc_pd_in)]   = {0};
        int err;
 
-       memset(&in, 0, sizeof(in));
-       memset(&out, 0, sizeof(out));
-       in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_DEALLOC_PD);
-       in.pdn = cpu_to_be32(pdn);
-       err = mlx5_cmd_exec(dev, &in, sizeof(in), &out, sizeof(out));
-       if (err)
-               return err;
-
-       if (out.hdr.status)
-               return mlx5_cmd_status_to_err(&out.hdr);
-
-       return err;
+       MLX5_SET(dealloc_pd_in, in, opcode, MLX5_CMD_OP_DEALLOC_PD);
+       MLX5_SET(dealloc_pd_in, in, pd, pdn);
+       err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
+       return err ? : mlx5_cmd_status_to_err_v2(out);
 }
 EXPORT_SYMBOL(mlx5_core_dealloc_pd);