* [PATCH 1/2] drm/amdgpu: init atpx at switcheroo register time
@ 2016-07-27 20:10 Alex Deucher
[not found] ` <1469650245-7919-1-git-send-email-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Alex Deucher @ 2016-07-27 20:10 UTC (permalink / raw)
To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Alex Deucher, Peter Wu
If we do it at enable time, it's too late for the feature
checks.
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: Peter Wu <peter@lekensteyn.nl>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_atpx_handler.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_atpx_handler.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_atpx_handler.c
index 0494fe7..bc8dc71 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_atpx_handler.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_atpx_handler.c
@@ -539,7 +539,7 @@ static int amdgpu_atpx_get_client_id(struct pci_dev *pdev)
static const struct vga_switcheroo_handler amdgpu_atpx_handler = {
.switchto = amdgpu_atpx_switchto,
.power_state = amdgpu_atpx_power_state,
- .init = amdgpu_atpx_init,
+ .init = NULL,
.get_client_id = amdgpu_atpx_get_client_id,
};
@@ -574,6 +574,7 @@ static bool amdgpu_atpx_detect(void)
printk(KERN_INFO "vga_switcheroo: detected switching method %s handle\n",
acpi_method_name);
amdgpu_atpx_priv.atpx_detected = true;
+ amdgpu_atpx_init();
return true;
}
return false;
--
2.5.5
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx
^ permalink raw reply related [flat|nested] 3+ messages in thread[parent not found: <1469650245-7919-1-git-send-email-alexander.deucher-5C7GfCeVMHo@public.gmane.org>]
* [PATCH 2/2] drm/radeon: init atpx at switcheroo register time [not found] ` <1469650245-7919-1-git-send-email-alexander.deucher-5C7GfCeVMHo@public.gmane.org> @ 2016-07-27 20:10 ` Alex Deucher [not found] ` <1469650245-7919-2-git-send-email-alexander.deucher-5C7GfCeVMHo@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Alex Deucher @ 2016-07-27 20:10 UTC (permalink / raw) To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Alex Deucher, Peter Wu If we do it at enable time, it's too late for the feature checks. bug: https://bugzilla.kernel.org/show_bug.cgi?id=115321 Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Cc: Peter Wu <peter@lekensteyn.nl> --- drivers/gpu/drm/radeon/radeon_atpx_handler.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/radeon/radeon_atpx_handler.c b/drivers/gpu/drm/radeon/radeon_atpx_handler.c index 86dcdf3..b46b4c4 100644 --- a/drivers/gpu/drm/radeon/radeon_atpx_handler.c +++ b/drivers/gpu/drm/radeon/radeon_atpx_handler.c @@ -536,7 +536,7 @@ static int radeon_atpx_get_client_id(struct pci_dev *pdev) static const struct vga_switcheroo_handler radeon_atpx_handler = { .switchto = radeon_atpx_switchto, .power_state = radeon_atpx_power_state, - .init = radeon_atpx_init, + .init = NULL, .get_client_id = radeon_atpx_get_client_id, }; @@ -572,6 +572,7 @@ static bool radeon_atpx_detect(void) printk(KERN_INFO "vga_switcheroo: detected switching method %s handle\n", acpi_method_name); radeon_atpx_priv.atpx_detected = true; + radeon_atpx_init(); return true; } return false; -- 2.5.5 _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply related [flat|nested] 3+ messages in thread
[parent not found: <1469650245-7919-2-git-send-email-alexander.deucher-5C7GfCeVMHo@public.gmane.org>]
* Re: [PATCH 2/2] drm/radeon: init atpx at switcheroo register time [not found] ` <1469650245-7919-2-git-send-email-alexander.deucher-5C7GfCeVMHo@public.gmane.org> @ 2016-07-28 23:51 ` Peter Wu 0 siblings, 0 replies; 3+ messages in thread From: Peter Wu @ 2016-07-28 23:51 UTC (permalink / raw) To: Alex Deucher; +Cc: Alex Deucher, amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW On Wed, Jul 27, 2016 at 04:10:45PM -0400, Alex Deucher wrote: > If we do it at enable time, it's too late for the feature > checks. > > bug: https://bugzilla.kernel.org/show_bug.cgi?id=115321 > Signed-off-by: Alex Deucher <alexander.deucher@amd.com> > Cc: Peter Wu <peter@lekensteyn.nl> > --- > drivers/gpu/drm/radeon/radeon_atpx_handler.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/radeon/radeon_atpx_handler.c b/drivers/gpu/drm/radeon/radeon_atpx_handler.c > index 86dcdf3..b46b4c4 100644 > --- a/drivers/gpu/drm/radeon/radeon_atpx_handler.c > +++ b/drivers/gpu/drm/radeon/radeon_atpx_handler.c > @@ -536,7 +536,7 @@ static int radeon_atpx_get_client_id(struct pci_dev *pdev) > static const struct vga_switcheroo_handler radeon_atpx_handler = { > .switchto = radeon_atpx_switchto, > .power_state = radeon_atpx_power_state, > - .init = radeon_atpx_init, > + .init = NULL, Let's just remove this initialization, it allows for trivial removal of the init member later. radeon was the only user of this anyway. > .get_client_id = radeon_atpx_get_client_id, > }; > > @@ -572,6 +572,7 @@ static bool radeon_atpx_detect(void) > printk(KERN_INFO "vga_switcheroo: detected switching method %s handle\n", > acpi_method_name); > radeon_atpx_priv.atpx_detected = true; > + radeon_atpx_init(); > return true; > } > return false; > -- > 2.5.5 > Other than the command above, both patches are Reviewed-by: Peter Wu <peter@lekensteyn.nl> I'll be testing this (via your amd-staging-4.6 branch) tomorrow on an AMD/AMD hybrid (GCN 1.0 unfortunately, so restricted to radeon). -- Kind regards, Peter Wu https://lekensteyn.nl _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-07-28 23:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-27 20:10 [PATCH 1/2] drm/amdgpu: init atpx at switcheroo register time Alex Deucher
[not found] ` <1469650245-7919-1-git-send-email-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
2016-07-27 20:10 ` [PATCH 2/2] drm/radeon: " Alex Deucher
[not found] ` <1469650245-7919-2-git-send-email-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
2016-07-28 23:51 ` Peter Wu
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.