diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2016-06-13 15:37:34 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2016-06-13 15:37:34 -0400 |
commit | 05082b8bbd1a0ffc74235449c4b8930a8c240f85 (patch) | |
tree | a0ba88b8c93b11bc1fcf697599bba62eaf7a8de8 | |
parent | 048765ad5af7c8939603b4c6cb96293ffa05e00d (diff) |
drm/radeon: fix asic initialization for virtualized environments
When executing in a PCI passthrough based virtuzliation environment, the
hypervisor will usually attempt to send a PCIe bus reset signal to the
ASIC when the VM reboots. In this scenario, the card is not correctly
initialized, but we still consider it to be posted. Therefore, in a
passthrough based environemnt we should always post the card to guarantee
it is in a good state for driver initialization.
Ported from amdgpu commit:
amdgpu: fix asic initialization for virtualized environments
Cc: Andres Rodriguez <andres.rodriguez@amd.com>
Cc: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
-rw-r--r-- | drivers/gpu/drm/radeon/radeon_device.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_device.c b/drivers/gpu/drm/radeon/radeon_device.c index e61c7636864d..21c44b2293bc 100644 --- a/drivers/gpu/drm/radeon/radeon_device.c +++ b/drivers/gpu/drm/radeon/radeon_device.c | |||
@@ -630,6 +630,23 @@ void radeon_gtt_location(struct radeon_device *rdev, struct radeon_mc *mc) | |||
630 | /* | 630 | /* |
631 | * GPU helpers function. | 631 | * GPU helpers function. |
632 | */ | 632 | */ |
633 | |||
634 | /** | ||
635 | * radeon_device_is_virtual - check if we are running is a virtual environment | ||
636 | * | ||
637 | * Check if the asic has been passed through to a VM (all asics). | ||
638 | * Used at driver startup. | ||
639 | * Returns true if virtual or false if not. | ||
640 | */ | ||
641 | static bool radeon_device_is_virtual(void) | ||
642 | { | ||
643 | #ifdef CONFIG_X86 | ||
644 | return boot_cpu_has(X86_FEATURE_HYPERVISOR); | ||
645 | #else | ||
646 | return false; | ||
647 | #endif | ||
648 | } | ||
649 | |||
633 | /** | 650 | /** |
634 | * radeon_card_posted - check if the hw has already been initialized | 651 | * radeon_card_posted - check if the hw has already been initialized |
635 | * | 652 | * |
@@ -643,6 +660,10 @@ bool radeon_card_posted(struct radeon_device *rdev) | |||
643 | { | 660 | { |
644 | uint32_t reg; | 661 | uint32_t reg; |
645 | 662 | ||
663 | /* for pass through, always force asic_init */ | ||
664 | if (radeon_device_is_virtual()) | ||
665 | return false; | ||
666 | |||
646 | /* required for EFI mode on macbook2,1 which uses an r5xx asic */ | 667 | /* required for EFI mode on macbook2,1 which uses an r5xx asic */ |
647 | if (efi_enabled(EFI_BOOT) && | 668 | if (efi_enabled(EFI_BOOT) && |
648 | (rdev->pdev->subsystem_vendor == PCI_VENDOR_ID_APPLE) && | 669 | (rdev->pdev->subsystem_vendor == PCI_VENDOR_ID_APPLE) && |