2021-12-20 19:41:39 +05:30
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/*
|
2023-03-16 16:32:08 +05:30
|
|
|
* Copyright 2016-2023 Broadcom Inc. All rights reserved.
|
2021-12-20 19:41:39 +05:30
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifndef MPI30_PCI_H
|
|
|
|
#define MPI30_PCI_H 1
|
2023-03-16 16:32:06 +05:30
|
|
|
#ifndef MPI3_NVME_ENCAP_CMD_MAX
|
|
|
|
#define MPI3_NVME_ENCAP_CMD_MAX (1)
|
|
|
|
#endif
|
2021-12-20 19:41:39 +05:30
|
|
|
#define MPI3_NVME_FLAGS_FORCE_ADMIN_ERR_REPLY_MASK (0x0002)
|
|
|
|
#define MPI3_NVME_FLAGS_FORCE_ADMIN_ERR_REPLY_FAIL_ONLY (0x0000)
|
|
|
|
#define MPI3_NVME_FLAGS_FORCE_ADMIN_ERR_REPLY_ALL (0x0002)
|
|
|
|
#define MPI3_NVME_FLAGS_SUBMISSIONQ_MASK (0x0001)
|
|
|
|
#define MPI3_NVME_FLAGS_SUBMISSIONQ_IO (0x0000)
|
|
|
|
#define MPI3_NVME_FLAGS_SUBMISSIONQ_ADMIN (0x0001)
|
2022-04-29 17:16:36 -04:00
|
|
|
|
2021-12-20 19:41:39 +05:30
|
|
|
#endif
|