Files
gem5/src/dev/amdgpu/amdgpu_nbio.cc
Matthew Poremba 39153cd234 dev-amdgpu: Implement PCIe indirect read/write
PCIe can read/write to any 32-bit address using the PCI index/index2
registers as an address and then reading/writing the corresponding
data/data2 register.

This commit adds this functionality and removes one magic value being
written to support GPU POST. This feature is disabled for Vega10 which
relies on an MMIO trace for too many values to implement in the MMIO
interface.

Change-Id: Iacfdd1294a7652fc3e60304b57df536d318c847b
2024-03-21 10:13:55 -05:00

238 lines
9.1 KiB
C++

/*
* Copyright (c) 2023 Advanced Micro Devices, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include "dev/amdgpu/amdgpu_nbio.hh"
#include "debug/AMDGPUDevice.hh"
#include "dev/amdgpu/amdgpu_device.hh"
#include "mem/packet_access.hh"
namespace gem5
{
AMDGPUNbio::AMDGPUNbio()
{
// All read-before-write MMIOs go here
triggered_reads[AMDGPU_MP0_SMN_C2PMSG_64] = 0x80000000;
}
void
AMDGPUNbio::setGPUDevice(AMDGPUDevice *gpu_device)
{
gpuDevice = gpu_device;
}
void
AMDGPUNbio::readMMIO(PacketPtr pkt, Addr offset)
{
// For Vega10 we rely on the golden values in an MMIO trace. Return
// immediately as to not clobber those values.
if (gpuDevice->getGfxVersion() == GfxVersion::gfx900) {
if (offset == AMDGPU_PCIE_DATA || offset == AMDGPU_PCIE_DATA2) {
return;
}
}
switch (offset) {
// PCIE_DATA, PCIE_DATA2, PCIE_INDEX, and PCIE_INDEX2 handle "indirect
// "register reads/writes from the driver. This provides a way to read
// any register by providing a 32-bit address to one of the two INDEX
// registers and then reading the corresponding DATA register. See:
// https://github.com/ROCm/ROCK-Kernel-Driver/blob/roc-6.0.x/drivers/
// gpu/drm/amd/amdgpu/amdgpu_device.c#L459
case AMDGPU_PCIE_DATA:
{
uint32_t value = gpuDevice->getRegVal(pcie_index_reg);
DPRINTF(AMDGPUDevice, "Read PCIe index %lx data %x\n",
pcie_index_reg, value);
pkt->setLE<uint32_t>(value);
}
break;
case AMDGPU_PCIE_DATA2:
{
uint32_t value = gpuDevice->getRegVal(pcie_index2_reg);
DPRINTF(AMDGPUDevice, "Read PCIe index2 %lx data2 %x\n",
pcie_index2_reg, value);
pkt->setLE<uint32_t>(value);
}
break;
case AMDGPU_PCIE_INDEX:
pkt->setLE<uint32_t>(pcie_index_reg);
break;
case AMDGPU_PCIE_INDEX2:
pkt->setLE<uint32_t>(pcie_index2_reg);
break;
case AMDGPU_MM_DATA:
pkt->setLE<uint32_t>(gpuDevice->getRegVal(mm_index_reg));
break;
case VEGA10_INV_ENG17_ACK1:
case VEGA10_INV_ENG17_ACK2:
case MI100_INV_ENG17_ACK2:
case MI100_INV_ENG17_ACK3:
case MI200_INV_ENG17_ACK2:
pkt->setLE<uint32_t>(0x10001);
break;
case VEGA10_INV_ENG17_SEM1:
case VEGA10_INV_ENG17_SEM2:
case MI100_INV_ENG17_SEM2:
case MI100_INV_ENG17_SEM3:
case MI200_INV_ENG17_SEM2:
pkt->setLE<uint32_t>(0x1);
break;
// PSP responds with bit 31 set when ready
case AMDGPU_MP0_SMN_C2PMSG_35:
pkt->setLE<uint32_t>(0x80000000);
break;
case AMDGPU_MP1_SMN_C2PMSG_90:
pkt->setLE<uint32_t>(0x1);
break;
default:
if (triggered_reads.count(offset)) {
DPRINTF(AMDGPUDevice, "Found triggered read for %#x\n", offset);
pkt->setLE<uint32_t>(triggered_reads[offset]);
} else if (regs.count(offset)) {
DPRINTF(AMDGPUDevice, "Returning value of unknown MMIO offset "
"%x: %x\n", offset, regs[offset]);
pkt->setLE<uint32_t>(regs[offset]);
} else {
DPRINTF(AMDGPUDevice, "NBIO Unknown MMIO %#x (%#x)\n", offset,
pkt->getAddr());
}
break;
}
}
void
AMDGPUNbio::writeMMIO(PacketPtr pkt, Addr offset)
{
if (offset == AMDGPU_MM_INDEX) {
assert(pkt->getSize() == 4);
mm_index_reg = insertBits(mm_index_reg, 31, 0,
pkt->getLE<uint32_t>());
} else if (offset == AMDGPU_MM_INDEX_HI) {
assert(pkt->getSize() == 4);
mm_index_reg = insertBits(mm_index_reg, 63, 32,
pkt->getLE<uint32_t>());
} else if (offset == AMDGPU_MM_DATA) {
DPRINTF(AMDGPUDevice, "MM write to reg %#lx data %#lx\n",
mm_index_reg, pkt->getLE<uint32_t>());
gpuDevice->setRegVal(AMDGPU_MM_DATA, pkt->getLE<uint32_t>());
// PCIE_DATA, PCIE_DATA2, PCIE_INDEX, and PCIE_INDEX2 handle "indirect
// "register reads/writes from the driver. This provides a way to read
// any register by providing a 32-bit address to one of the two INDEX
// registers and then reading the corresponding DATA register. See:
// https://github.com/ROCm/ROCK-Kernel-Driver/blob/roc-6.0.x/drivers/
// gpu/drm/amd/amdgpu/amdgpu_device.c#L459
} else if (offset == AMDGPU_PCIE_INDEX) {
assert(pkt->getSize() == 4);
pcie_index_reg = pkt->getLE<uint32_t>();
} else if (offset == AMDGPU_PCIE_DATA) {
assert(pkt->getSize() == 4);
gpuDevice->setRegVal(pcie_index_reg, pkt->getLE<uint32_t>());
} else if (offset == AMDGPU_PCIE_INDEX2) {
assert(pkt->getSize() == 4);
pcie_index2_reg = pkt->getLE<uint32_t>();
} else if (offset == AMDGPU_PCIE_DATA2) {
assert(pkt->getSize() == 4);
gpuDevice->setRegVal(pcie_index2_reg, pkt->getLE<uint32_t>());
} else if (offset == AMDGPU_MP0_SMN_C2PMSG_35) {
// See psp_v3_1_bootloader_load_sos in amdgpu driver code.
if (pkt->getLE<uint32_t>() == 0x10000) {
triggered_reads[AMDGPU_MP0_SMN_C2PMSG_81] = 0xdf40b31;
}
} else if (offset == AMDGPU_MP0_SMN_C2PMSG_64) {
triggered_reads[AMDGPU_MP0_SMN_C2PMSG_64] =
0x80000000 + pkt->getLE<uint32_t>();
} else if (offset == AMDGPU_MP0_SMN_C2PMSG_69) {
// PSP ring low addr
psp_ring = insertBits(psp_ring, 31, 0, pkt->getLE<uint32_t>());
psp_ring_listen_addr = psp_ring
- gpuDevice->getVM().getSysAddrRangeLow() + 0xc;
} else if (offset == AMDGPU_MP0_SMN_C2PMSG_70) {
// PSP ring high addr
psp_ring = insertBits(psp_ring, 63, 32, pkt->getLE<uint32_t>());
psp_ring_listen_addr = psp_ring
- gpuDevice->getVM().getSysAddrRangeLow() + 0xc;
} else if (offset == AMDGPU_MP0_SMN_C2PMSG_71) {
// PSP ring size
psp_ring_size = pkt->getLE<uint32_t>();
} else {
// Fallback to a map of register values. This was previously in the
// AMDGPUDevice, however that short-circuited some reads from other
// IP blocks. Since this is an end point IP block it is safer to use
// here.
regs[offset] = pkt->getLE<uint32_t>();
DPRINTF(AMDGPUDevice, "Writing value of unknown MMIO offset "
"%x: %x\n", offset, regs[offset]);
}
}
bool
AMDGPUNbio::readFrame(PacketPtr pkt, Addr offset)
{
if (offset == psp_ring_dev_addr) {
psp_ring_value++;
pkt->setUintX(psp_ring_value, ByteOrder::little);
return true;
}
return false;
}
void
AMDGPUNbio::writeFrame(PacketPtr pkt, Addr offset)
{
if (offset == psp_ring_listen_addr) {
DPRINTF(AMDGPUDevice, "Saw psp_ring_listen_addr with size %ld value "
"%ld\n", pkt->getSize(), pkt->getUintX(ByteOrder::little));
/*
* In ROCm versions 4.x this packet is a 4 byte value. In ROCm 5.x
* the packet is 8 bytes and mapped as a system address which needs
* to be subtracted out to get the framebuffer address.
*/
if (pkt->getSize() == 4) {
psp_ring_dev_addr = pkt->getLE<uint32_t>();
} else if (pkt->getSize() == 8) {
psp_ring_dev_addr = pkt->getUintX(ByteOrder::little)
- gpuDevice->getVM().getSysAddrRangeLow();
} else {
panic("Invalid write size to psp_ring_listen_addr\n");
}
DPRINTF(AMDGPUDevice, "Setting PSP ring device address to %#lx\n",
psp_ring_dev_addr);
}
}
} // namespace gem5