e74f2fbd8b
Update copyright year from 2022 to 2023. Signed-off-by: Ranjan Kumar <ranjan.kumar@broadcom.com> Signed-off-by: Sreekanth Reddy <sreekanth.reddy@broadcom.com> Link: https://lore.kernel.org/r/20230316110209.60145-8-ranjan.kumar@broadcom.com Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
19 lines
650 B
C
19 lines
650 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright 2016-2023 Broadcom Inc. All rights reserved.
|
|
*
|
|
*/
|
|
#ifndef MPI30_PCI_H
|
|
#define MPI30_PCI_H 1
|
|
#ifndef MPI3_NVME_ENCAP_CMD_MAX
|
|
#define MPI3_NVME_ENCAP_CMD_MAX (1)
|
|
#endif
|
|
#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)
|
|
|
|
#endif
|