This series adds support for NBIF 6.3.1. NBIF handles the PCIe Bus InterFace on the GPU. The first two patches add new register headers and are very large so they were not sent to the list. Hawking Zhang (3): drm/amdgpu: Add nbif v6_3_1 ip headers (v5) drm/amdgpu: Add pcie v6_1_0 ip headers (v5) drm/amdgpu: Add nbif v6_3_1 ip block support Likun Gao (1): drm/amdgpu/discovery: add nbif v6_3_1 ip block drivers/gpu/drm/amd/amdgpu/Makefile | 2 +- drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c | 5 + drivers/gpu/drm/amd/amdgpu/nbif_v6_3_1.c | 495 + drivers/gpu/drm/amd/amdgpu/nbif_v6_3_1.h | 33 + .../include/asic_reg/nbif/nbif_6_3_1_offset.h | 11287 ++++++ .../asic_reg/nbif/nbif_6_3_1_sh_mask.h | 32806 ++++++++++++++++ .../include/asic_reg/pcie/pcie_6_1_0_offset.h | 630 + .../asic_reg/pcie/pcie_6_1_0_sh_mask.h | 4250 ++ 8 files changed, 49507 insertions(+), 1 deletion(-) create mode 100644 drivers/gpu/drm/amd/amdgpu/nbif_v6_3_1.c create mode 100644 drivers/gpu/drm/amd/amdgpu/nbif_v6_3_1.h create mode 100644 drivers/gpu/drm/amd/include/asic_reg/nbif/nbif_6_3_1_offset.h create mode 100644 drivers/gpu/drm/amd/include/asic_reg/nbif/nbif_6_3_1_sh_mask.h create mode 100644 drivers/gpu/drm/amd/include/asic_reg/pcie/pcie_6_1_0_offset.h create mode 100644 drivers/gpu/drm/amd/include/asic_reg/pcie/pcie_6_1_0_sh_mask.h -- 2.44.0