Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f5af512e authored by Felix Kuehling's avatar Felix Kuehling Committed by Oded Gabbay
Browse files

drm/radeon: Return dword offsets of address watch registers



Dword offsets are what KFD really needs and what amdgpu already returns.

Signed-off-by: default avatarFelix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: default avatarOded Gabbay <oded.gabbay@gmail.com>
parent 3f4f46f6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -785,7 +785,8 @@ static uint32_t kgd_address_watch_get_offset(struct kgd_dev *kgd,
					unsigned int watch_point_id,
					unsigned int reg_offset)
{
	return watchRegs[watch_point_id * ADDRESS_WATCH_REG_MAX + reg_offset];
	return watchRegs[watch_point_id * ADDRESS_WATCH_REG_MAX + reg_offset]
		/ 4;
}

static bool get_atc_vmid_pasid_mapping_valid(struct kgd_dev *kgd, uint8_t vmid)