2021-02-17 04:09:50 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
/* Copyright(c) 2020 Intel Corporation. All rights reserved. */
|
|
|
|
#ifndef __CXL_PCI_H__
|
|
|
|
#define __CXL_PCI_H__
|
|
|
|
|
|
|
|
#define CXL_MEMORY_PROGIF 0x10
|
|
|
|
|
|
|
|
/*
|
|
|
|
* See section 8.1 Configuration Space Registers in the CXL 2.0
|
2022-01-24 00:29:00 +00:00
|
|
|
* Specification. Names are taken straight from the specification with "CXL" and
|
|
|
|
* "DVSEC" redundancies removed. When obvious, abbreviations may be used.
|
2021-02-17 04:09:50 +00:00
|
|
|
*/
|
2021-02-17 04:09:51 +00:00
|
|
|
#define PCI_DVSEC_HEADER1_LENGTH_MASK GENMASK(31, 20)
|
2021-02-17 04:09:50 +00:00
|
|
|
#define PCI_DVSEC_VENDOR_ID_CXL 0x1E98
|
|
|
|
|
2022-01-24 00:29:00 +00:00
|
|
|
/* CXL 2.0 8.1.3: PCIe DVSEC for CXL Device */
|
|
|
|
#define CXL_DVSEC_PCIE_DEVICE 0
|
2021-02-17 04:09:51 +00:00
|
|
|
|
2022-01-24 00:29:00 +00:00
|
|
|
/* CXL 2.0 8.1.9: Register Locator DVSEC */
|
|
|
|
#define CXL_DVSEC_REG_LOCATOR 8
|
|
|
|
#define CXL_DVSEC_REG_LOCATOR_BLOCK1_OFFSET 0xC
|
|
|
|
#define CXL_DVSEC_REG_LOCATOR_BIR_MASK GENMASK(2, 0)
|
|
|
|
#define CXL_DVSEC_REG_LOCATOR_BLOCK_ID_MASK GENMASK(15, 8)
|
|
|
|
#define CXL_DVSEC_REG_LOCATOR_BLOCK_OFF_LOW_MASK GENMASK(31, 16)
|
2021-02-17 04:09:51 +00:00
|
|
|
|
|
|
|
/* Register Block Identifier (RBI) */
|
2021-10-09 16:44:02 +00:00
|
|
|
enum cxl_regloc_type {
|
|
|
|
CXL_REGLOC_RBI_EMPTY = 0,
|
|
|
|
CXL_REGLOC_RBI_COMPONENT,
|
|
|
|
CXL_REGLOC_RBI_VIRT,
|
|
|
|
CXL_REGLOC_RBI_MEMDEV,
|
|
|
|
CXL_REGLOC_RBI_TYPES
|
|
|
|
};
|
2021-02-17 04:09:51 +00:00
|
|
|
|
2021-02-17 04:09:50 +00:00
|
|
|
#endif /* __CXL_PCI_H__ */
|