1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 /* Copyright (C) 2019 Netronome Systems, Inc. */
3 
4 #include <linux/dma-mapping.h>
5 
6 #include "nfp_dev.h"
7 
8 const struct nfp_dev_info nfp_dev_info[NFP_DEV_CNT] = {
9 	[NFP_DEV_NFP6000] = {
10 		.dma_mask		= DMA_BIT_MASK(40),
11 		.chip_names		= "NFP4000/NFP5000/NFP6000",
12 		.pcie_cfg_expbar_offset	= 0x0400,
13 		.pcie_expl_offset	= 0x1000,
14 	},
15 };
16