* [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[]
@ 2021-01-11 11:46 ` Colin King
0 siblings, 0 replies; 27+ messages in thread
From: Colin King @ 2021-01-11 11:46 UTC (permalink / raw)
To: Alex Deucher, Christian König, David Airlie, Daniel Vetter,
Xiaojian Du, amd-gfx, dri-devel
Cc: kernel-janitors, linux-kernel
From: Colin Ian King <colin.king@canonical.com>
A recent change added a new BOOTUP_DEFAULT power profile mode
to the PP_SMC_POWER_PROFILE enum but omitted updating the
corresponding profile_name array. Fix this by adding in the
missing BOOTUP_DEFAULT to profile_name[].
Addresses-Coverity: ("Out-of-bounds read")
Fixes: c27c9778a19e ("drm/amd/powerplay: support BOOTUP_DEFAULT power profile mode")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c b/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c
index 75ddcadf3802..4763cb095820 100644
--- a/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c
+++ b/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c
@@ -774,6 +774,7 @@ static int vangogh_get_power_profile_mode(struct smu_context *smu,
char *buf)
{
static const char *profile_name[] = {
+ "BOOTUP_DEFAULT",
"FULL_SCREEN_3D",
"VIDEO",
"VR",
--
2.29.2
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx
^ permalink raw reply related [flat|nested] 27+ messages in thread* [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-11 11:46 ` Colin King 0 siblings, 0 replies; 27+ messages in thread From: Colin King @ 2021-01-11 11:46 UTC (permalink / raw) To: Alex Deucher, Christian König, David Airlie, Daniel Vetter, Xiaojian Du, amd-gfx, dri-devel Cc: kernel-janitors, linux-kernel From: Colin Ian King <colin.king@canonical.com> A recent change added a new BOOTUP_DEFAULT power profile mode to the PP_SMC_POWER_PROFILE enum but omitted updating the corresponding profile_name array. Fix this by adding in the missing BOOTUP_DEFAULT to profile_name[]. Addresses-Coverity: ("Out-of-bounds read") Fixes: c27c9778a19e ("drm/amd/powerplay: support BOOTUP_DEFAULT power profile mode") Signed-off-by: Colin Ian King <colin.king@canonical.com> --- drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c b/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c index 75ddcadf3802..4763cb095820 100644 --- a/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c +++ b/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c @@ -774,6 +774,7 @@ static int vangogh_get_power_profile_mode(struct smu_context *smu, char *buf) { static const char *profile_name[] = { + "BOOTUP_DEFAULT", "FULL_SCREEN_3D", "VIDEO", "VR", -- 2.29.2 _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply related [flat|nested] 27+ messages in thread
* [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-11 11:46 ` Colin King 0 siblings, 0 replies; 27+ messages in thread From: Colin King @ 2021-01-11 11:46 UTC (permalink / raw) To: Alex Deucher, Christian König, David Airlie, Daniel Vetter, Xiaojian Du, amd-gfx, dri-devel Cc: kernel-janitors, linux-kernel From: Colin Ian King <colin.king@canonical.com> A recent change added a new BOOTUP_DEFAULT power profile mode to the PP_SMC_POWER_PROFILE enum but omitted updating the corresponding profile_name array. Fix this by adding in the missing BOOTUP_DEFAULT to profile_name[]. Addresses-Coverity: ("Out-of-bounds read") Fixes: c27c9778a19e ("drm/amd/powerplay: support BOOTUP_DEFAULT power profile mode") Signed-off-by: Colin Ian King <colin.king@canonical.com> --- drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c b/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c index 75ddcadf3802..4763cb095820 100644 --- a/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c +++ b/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c @@ -774,6 +774,7 @@ static int vangogh_get_power_profile_mode(struct smu_context *smu, char *buf) { static const char *profile_name[] = { + "BOOTUP_DEFAULT", "FULL_SCREEN_3D", "VIDEO", "VR", -- 2.29.2 ^ permalink raw reply related [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] 2021-01-11 11:46 ` Colin King (?) (?) @ 2021-01-11 16:19 ` Alex Deucher -1 siblings, 0 replies; 27+ messages in thread From: Alex Deucher @ 2021-01-11 16:19 UTC (permalink / raw) To: Colin King Cc: Xiaojian Du, David Airlie, kernel-janitors, LKML, amd-gfx list, Maling list - DRI developers, Daniel Vetter, Alex Deucher, Christian König On Mon, Jan 11, 2021 at 6:46 AM Colin King <colin.king@canonical.com> wrote: > > From: Colin Ian King <colin.king@canonical.com> > > A recent change added a new BOOTUP_DEFAULT power profile mode > to the PP_SMC_POWER_PROFILE enum but omitted updating the > corresponding profile_name array. Fix this by adding in the > missing BOOTUP_DEFAULT to profile_name[]. > > Addresses-Coverity: ("Out-of-bounds read") > Fixes: c27c9778a19e ("drm/amd/powerplay: support BOOTUP_DEFAULT power profile mode") > Signed-off-by: Colin Ian King <colin.king@canonical.com> Applied. Thanks! Alex > --- > drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c b/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c > index 75ddcadf3802..4763cb095820 100644 > --- a/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c > +++ b/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c > @@ -774,6 +774,7 @@ static int vangogh_get_power_profile_mode(struct smu_context *smu, > char *buf) > { > static const char *profile_name[] = { > + "BOOTUP_DEFAULT", > "FULL_SCREEN_3D", > "VIDEO", > "VR", > -- > 2.29.2 > > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-11 16:19 ` Alex Deucher 0 siblings, 0 replies; 27+ messages in thread From: Alex Deucher @ 2021-01-11 16:19 UTC (permalink / raw) To: Colin King Cc: Alex Deucher, Christian König, David Airlie, Daniel Vetter, Xiaojian Du, amd-gfx list, Maling list - DRI developers, kernel-janitors, LKML On Mon, Jan 11, 2021 at 6:46 AM Colin King <colin.king@canonical.com> wrote: > > From: Colin Ian King <colin.king@canonical.com> > > A recent change added a new BOOTUP_DEFAULT power profile mode > to the PP_SMC_POWER_PROFILE enum but omitted updating the > corresponding profile_name array. Fix this by adding in the > missing BOOTUP_DEFAULT to profile_name[]. > > Addresses-Coverity: ("Out-of-bounds read") > Fixes: c27c9778a19e ("drm/amd/powerplay: support BOOTUP_DEFAULT power profile mode") > Signed-off-by: Colin Ian King <colin.king@canonical.com> Applied. Thanks! Alex > --- > drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c b/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c > index 75ddcadf3802..4763cb095820 100644 > --- a/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c > +++ b/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c > @@ -774,6 +774,7 @@ static int vangogh_get_power_profile_mode(struct smu_context *smu, > char *buf) > { > static const char *profile_name[] = { > + "BOOTUP_DEFAULT", > "FULL_SCREEN_3D", > "VIDEO", > "VR", > -- > 2.29.2 > > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-11 16:19 ` Alex Deucher 0 siblings, 0 replies; 27+ messages in thread From: Alex Deucher @ 2021-01-11 16:19 UTC (permalink / raw) To: Colin King Cc: Xiaojian Du, David Airlie, kernel-janitors, LKML, amd-gfx list, Maling list - DRI developers, Alex Deucher, Christian König On Mon, Jan 11, 2021 at 6:46 AM Colin King <colin.king@canonical.com> wrote: > > From: Colin Ian King <colin.king@canonical.com> > > A recent change added a new BOOTUP_DEFAULT power profile mode > to the PP_SMC_POWER_PROFILE enum but omitted updating the > corresponding profile_name array. Fix this by adding in the > missing BOOTUP_DEFAULT to profile_name[]. > > Addresses-Coverity: ("Out-of-bounds read") > Fixes: c27c9778a19e ("drm/amd/powerplay: support BOOTUP_DEFAULT power profile mode") > Signed-off-by: Colin Ian King <colin.king@canonical.com> Applied. Thanks! Alex > --- > drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c b/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c > index 75ddcadf3802..4763cb095820 100644 > --- a/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c > +++ b/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c > @@ -774,6 +774,7 @@ static int vangogh_get_power_profile_mode(struct smu_context *smu, > char *buf) > { > static const char *profile_name[] = { > + "BOOTUP_DEFAULT", > "FULL_SCREEN_3D", > "VIDEO", > "VR", > -- > 2.29.2 > > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-11 16:19 ` Alex Deucher 0 siblings, 0 replies; 27+ messages in thread From: Alex Deucher @ 2021-01-11 16:19 UTC (permalink / raw) To: Colin King Cc: Xiaojian Du, David Airlie, kernel-janitors, LKML, amd-gfx list, Maling list - DRI developers, Daniel Vetter, Alex Deucher, Christian König On Mon, Jan 11, 2021 at 6:46 AM Colin King <colin.king@canonical.com> wrote: > > From: Colin Ian King <colin.king@canonical.com> > > A recent change added a new BOOTUP_DEFAULT power profile mode > to the PP_SMC_POWER_PROFILE enum but omitted updating the > corresponding profile_name array. Fix this by adding in the > missing BOOTUP_DEFAULT to profile_name[]. > > Addresses-Coverity: ("Out-of-bounds read") > Fixes: c27c9778a19e ("drm/amd/powerplay: support BOOTUP_DEFAULT power profile mode") > Signed-off-by: Colin Ian King <colin.king@canonical.com> Applied. Thanks! Alex > --- > drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c b/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c > index 75ddcadf3802..4763cb095820 100644 > --- a/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c > +++ b/drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c > @@ -774,6 +774,7 @@ static int vangogh_get_power_profile_mode(struct smu_context *smu, > char *buf) > { > static const char *profile_name[] = { > + "BOOTUP_DEFAULT", > "FULL_SCREEN_3D", > "VIDEO", > "VR", > -- > 2.29.2 > > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] 2021-01-11 11:46 ` Colin King (?) (?) @ 2021-01-12 10:07 ` Dan Carpenter -1 siblings, 0 replies; 27+ messages in thread From: Dan Carpenter @ 2021-01-12 10:07 UTC (permalink / raw) To: Colin King Cc: Xiaojian Du, David Airlie, kernel-janitors, linux-kernel, amd-gfx, dri-devel, Daniel Vetter, Alex Deucher, Christian König On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: > From: Colin Ian King <colin.king@canonical.com> > > A recent change added a new BOOTUP_DEFAULT power profile mode > to the PP_SMC_POWER_PROFILE enum but omitted updating the > corresponding profile_name array. Fix this by adding in the > missing BOOTUP_DEFAULT to profile_name[]. > Still not enough to prevent the array overflow. It needs POWERSAVE as well. regards, dan carpenter _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-12 10:07 ` Dan Carpenter 0 siblings, 0 replies; 27+ messages in thread From: Dan Carpenter @ 2021-01-12 10:07 UTC (permalink / raw) To: Colin King Cc: Alex Deucher, Christian König, David Airlie, Daniel Vetter, Xiaojian Du, amd-gfx, dri-devel, kernel-janitors, linux-kernel On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: > From: Colin Ian King <colin.king@canonical.com> > > A recent change added a new BOOTUP_DEFAULT power profile mode > to the PP_SMC_POWER_PROFILE enum but omitted updating the > corresponding profile_name array. Fix this by adding in the > missing BOOTUP_DEFAULT to profile_name[]. > Still not enough to prevent the array overflow. It needs POWERSAVE as well. regards, dan carpenter ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-12 10:07 ` Dan Carpenter 0 siblings, 0 replies; 27+ messages in thread From: Dan Carpenter @ 2021-01-12 10:07 UTC (permalink / raw) To: Colin King Cc: Xiaojian Du, David Airlie, kernel-janitors, linux-kernel, amd-gfx, dri-devel, Alex Deucher, Christian König On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: > From: Colin Ian King <colin.king@canonical.com> > > A recent change added a new BOOTUP_DEFAULT power profile mode > to the PP_SMC_POWER_PROFILE enum but omitted updating the > corresponding profile_name array. Fix this by adding in the > missing BOOTUP_DEFAULT to profile_name[]. > Still not enough to prevent the array overflow. It needs POWERSAVE as well. regards, dan carpenter _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-12 10:07 ` Dan Carpenter 0 siblings, 0 replies; 27+ messages in thread From: Dan Carpenter @ 2021-01-12 10:07 UTC (permalink / raw) To: Colin King Cc: Xiaojian Du, David Airlie, kernel-janitors, linux-kernel, amd-gfx, dri-devel, Daniel Vetter, Alex Deucher, Christian König On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: > From: Colin Ian King <colin.king@canonical.com> > > A recent change added a new BOOTUP_DEFAULT power profile mode > to the PP_SMC_POWER_PROFILE enum but omitted updating the > corresponding profile_name array. Fix this by adding in the > missing BOOTUP_DEFAULT to profile_name[]. > Still not enough to prevent the array overflow. It needs POWERSAVE as well. regards, dan carpenter ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] 2021-01-12 10:07 ` Dan Carpenter (?) (?) @ 2021-01-15 9:37 ` Colin Ian King -1 siblings, 0 replies; 27+ messages in thread From: Colin Ian King @ 2021-01-15 9:37 UTC (permalink / raw) To: Dan Carpenter Cc: Xiaojian Du, David Airlie, kernel-janitors, linux-kernel, amd-gfx, dri-devel, Daniel Vetter, Alex Deucher, Christian König On 12/01/2021 10:07, Dan Carpenter wrote: > On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: >> From: Colin Ian King <colin.king@canonical.com> >> >> A recent change added a new BOOTUP_DEFAULT power profile mode >> to the PP_SMC_POWER_PROFILE enum but omitted updating the >> corresponding profile_name array. Fix this by adding in the >> missing BOOTUP_DEFAULT to profile_name[]. >> > > Still not enough to prevent the array overflow. It needs POWERSAVE as > well. Thanks for checking, but there is a 1-to-1 relation ship now: enum PP_SMC_POWER_PROFILE { PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT = 0x0, PP_SMC_POWER_PROFILE_FULLSCREEN3D = 0x1, PP_SMC_POWER_PROFILE_POWERSAVING = 0x2, PP_SMC_POWER_PROFILE_VIDEO = 0x3, PP_SMC_POWER_PROFILE_VR = 0x4, PP_SMC_POWER_PROFILE_COMPUTE = 0x5, PP_SMC_POWER_PROFILE_CUSTOM = 0x6, PP_SMC_POWER_PROFILE_COUNT, }; vs static const char *profile_name[] = { "BOOTUP_DEFAULT", "3D_FULL_SCREEN", "POWER_SAVING", "VIDEO", "VR", "COMPUTE", "CUSTOM"}; unless I'm missing something because I've not had enough coffee. Colin > > regards, > dan carpenter > _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-15 9:37 ` Colin Ian King 0 siblings, 0 replies; 27+ messages in thread From: Colin Ian King @ 2021-01-15 9:37 UTC (permalink / raw) To: Dan Carpenter Cc: Alex Deucher, Christian König, David Airlie, Daniel Vetter, Xiaojian Du, amd-gfx, dri-devel, kernel-janitors, linux-kernel On 12/01/2021 10:07, Dan Carpenter wrote: > On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: >> From: Colin Ian King <colin.king@canonical.com> >> >> A recent change added a new BOOTUP_DEFAULT power profile mode >> to the PP_SMC_POWER_PROFILE enum but omitted updating the >> corresponding profile_name array. Fix this by adding in the >> missing BOOTUP_DEFAULT to profile_name[]. >> > > Still not enough to prevent the array overflow. It needs POWERSAVE as > well. Thanks for checking, but there is a 1-to-1 relation ship now: enum PP_SMC_POWER_PROFILE { PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT = 0x0, PP_SMC_POWER_PROFILE_FULLSCREEN3D = 0x1, PP_SMC_POWER_PROFILE_POWERSAVING = 0x2, PP_SMC_POWER_PROFILE_VIDEO = 0x3, PP_SMC_POWER_PROFILE_VR = 0x4, PP_SMC_POWER_PROFILE_COMPUTE = 0x5, PP_SMC_POWER_PROFILE_CUSTOM = 0x6, PP_SMC_POWER_PROFILE_COUNT, }; vs static const char *profile_name[] = { "BOOTUP_DEFAULT", "3D_FULL_SCREEN", "POWER_SAVING", "VIDEO", "VR", "COMPUTE", "CUSTOM"}; unless I'm missing something because I've not had enough coffee. Colin > > regards, > dan carpenter > ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-15 9:37 ` Colin Ian King 0 siblings, 0 replies; 27+ messages in thread From: Colin Ian King @ 2021-01-15 9:37 UTC (permalink / raw) To: Dan Carpenter Cc: Xiaojian Du, David Airlie, kernel-janitors, linux-kernel, amd-gfx, dri-devel, Alex Deucher, Christian König On 12/01/2021 10:07, Dan Carpenter wrote: > On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: >> From: Colin Ian King <colin.king@canonical.com> >> >> A recent change added a new BOOTUP_DEFAULT power profile mode >> to the PP_SMC_POWER_PROFILE enum but omitted updating the >> corresponding profile_name array. Fix this by adding in the >> missing BOOTUP_DEFAULT to profile_name[]. >> > > Still not enough to prevent the array overflow. It needs POWERSAVE as > well. Thanks for checking, but there is a 1-to-1 relation ship now: enum PP_SMC_POWER_PROFILE { PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT = 0x0, PP_SMC_POWER_PROFILE_FULLSCREEN3D = 0x1, PP_SMC_POWER_PROFILE_POWERSAVING = 0x2, PP_SMC_POWER_PROFILE_VIDEO = 0x3, PP_SMC_POWER_PROFILE_VR = 0x4, PP_SMC_POWER_PROFILE_COMPUTE = 0x5, PP_SMC_POWER_PROFILE_CUSTOM = 0x6, PP_SMC_POWER_PROFILE_COUNT, }; vs static const char *profile_name[] = { "BOOTUP_DEFAULT", "3D_FULL_SCREEN", "POWER_SAVING", "VIDEO", "VR", "COMPUTE", "CUSTOM"}; unless I'm missing something because I've not had enough coffee. Colin > > regards, > dan carpenter > _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-15 9:37 ` Colin Ian King 0 siblings, 0 replies; 27+ messages in thread From: Colin Ian King @ 2021-01-15 9:37 UTC (permalink / raw) To: Dan Carpenter Cc: Xiaojian Du, David Airlie, kernel-janitors, linux-kernel, amd-gfx, dri-devel, Daniel Vetter, Alex Deucher, Christian König On 12/01/2021 10:07, Dan Carpenter wrote: > On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: >> From: Colin Ian King <colin.king@canonical.com> >> >> A recent change added a new BOOTUP_DEFAULT power profile mode >> to the PP_SMC_POWER_PROFILE enum but omitted updating the >> corresponding profile_name array. Fix this by adding in the >> missing BOOTUP_DEFAULT to profile_name[]. >> > > Still not enough to prevent the array overflow. It needs POWERSAVE as > well. Thanks for checking, but there is a 1-to-1 relation ship now: enum PP_SMC_POWER_PROFILE { PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT = 0x0, PP_SMC_POWER_PROFILE_FULLSCREEN3D = 0x1, PP_SMC_POWER_PROFILE_POWERSAVING = 0x2, PP_SMC_POWER_PROFILE_VIDEO = 0x3, PP_SMC_POWER_PROFILE_VR = 0x4, PP_SMC_POWER_PROFILE_COMPUTE = 0x5, PP_SMC_POWER_PROFILE_CUSTOM = 0x6, PP_SMC_POWER_PROFILE_COUNT, }; vs static const char *profile_name[] = { "BOOTUP_DEFAULT", "3D_FULL_SCREEN", "POWER_SAVING", "VIDEO", "VR", "COMPUTE", "CUSTOM"}; unless I'm missing something because I've not had enough coffee. Colin > > regards, > dan carpenter > ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] 2021-01-15 9:37 ` Colin Ian King (?) (?) @ 2021-01-15 10:07 ` Christophe JAILLET -1 siblings, 0 replies; 27+ messages in thread From: Christophe JAILLET @ 2021-01-15 10:07 UTC (permalink / raw) To: Colin Ian King, Dan Carpenter Cc: Xiaojian Du, David Airlie, kernel-janitors, linux-kernel, amd-gfx, dri-devel, Daniel Vetter, Alex Deucher, Christian König Le 15/01/2021 à 10:37, Colin Ian King a écrit : > On 12/01/2021 10:07, Dan Carpenter wrote: >> On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: >>> From: Colin Ian King <colin.king@canonical.com> >>> >>> A recent change added a new BOOTUP_DEFAULT power profile mode >>> to the PP_SMC_POWER_PROFILE enum but omitted updating the >>> corresponding profile_name array. Fix this by adding in the >>> missing BOOTUP_DEFAULT to profile_name[]. >>> >> >> Still not enough to prevent the array overflow. It needs POWERSAVE as >> well. > > Thanks for checking, but there is a 1-to-1 relation ship now: > > enum PP_SMC_POWER_PROFILE { > PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT = 0x0, > PP_SMC_POWER_PROFILE_FULLSCREEN3D = 0x1, > PP_SMC_POWER_PROFILE_POWERSAVING = 0x2, > PP_SMC_POWER_PROFILE_VIDEO = 0x3, > PP_SMC_POWER_PROFILE_VR = 0x4, > PP_SMC_POWER_PROFILE_COMPUTE = 0x5, > PP_SMC_POWER_PROFILE_CUSTOM = 0x6, > PP_SMC_POWER_PROFILE_COUNT, > }; > > vs > > static const char *profile_name[] = { > "BOOTUP_DEFAULT", > "3D_FULL_SCREEN", > "POWER_SAVING", This line has been added yesterday in commit f727ebeb589d. So Dan was right when he sent his patch, but some else fixed it. CJ > "VIDEO", > "VR", > "COMPUTE", > "CUSTOM"}; > > > unless I'm missing something because I've not had enough coffee. > > Colin > >> >> regards, >> dan carpenter >> > > _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-15 10:07 ` Christophe JAILLET 0 siblings, 0 replies; 27+ messages in thread From: Christophe JAILLET @ 2021-01-15 10:07 UTC (permalink / raw) To: Colin Ian King, Dan Carpenter Cc: Alex Deucher, Christian König, David Airlie, Daniel Vetter, Xiaojian Du, amd-gfx, dri-devel, kernel-janitors, linux-kernel Le 15/01/2021 à 10:37, Colin Ian King a écrit : > On 12/01/2021 10:07, Dan Carpenter wrote: >> On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: >>> From: Colin Ian King <colin.king@canonical.com> >>> >>> A recent change added a new BOOTUP_DEFAULT power profile mode >>> to the PP_SMC_POWER_PROFILE enum but omitted updating the >>> corresponding profile_name array. Fix this by adding in the >>> missing BOOTUP_DEFAULT to profile_name[]. >>> >> >> Still not enough to prevent the array overflow. It needs POWERSAVE as >> well. > > Thanks for checking, but there is a 1-to-1 relation ship now: > > enum PP_SMC_POWER_PROFILE { > PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT = 0x0, > PP_SMC_POWER_PROFILE_FULLSCREEN3D = 0x1, > PP_SMC_POWER_PROFILE_POWERSAVING = 0x2, > PP_SMC_POWER_PROFILE_VIDEO = 0x3, > PP_SMC_POWER_PROFILE_VR = 0x4, > PP_SMC_POWER_PROFILE_COMPUTE = 0x5, > PP_SMC_POWER_PROFILE_CUSTOM = 0x6, > PP_SMC_POWER_PROFILE_COUNT, > }; > > vs > > static const char *profile_name[] = { > "BOOTUP_DEFAULT", > "3D_FULL_SCREEN", > "POWER_SAVING", This line has been added yesterday in commit f727ebeb589d. So Dan was right when he sent his patch, but some else fixed it. CJ > "VIDEO", > "VR", > "COMPUTE", > "CUSTOM"}; > > > unless I'm missing something because I've not had enough coffee. > > Colin > >> >> regards, >> dan carpenter >> > > ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-15 10:07 ` Christophe JAILLET 0 siblings, 0 replies; 27+ messages in thread From: Christophe JAILLET @ 2021-01-15 10:07 UTC (permalink / raw) To: Colin Ian King, Dan Carpenter Cc: Xiaojian Du, David Airlie, kernel-janitors, linux-kernel, amd-gfx, dri-devel, Alex Deucher, Christian König Le 15/01/2021 à 10:37, Colin Ian King a écrit : > On 12/01/2021 10:07, Dan Carpenter wrote: >> On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: >>> From: Colin Ian King <colin.king@canonical.com> >>> >>> A recent change added a new BOOTUP_DEFAULT power profile mode >>> to the PP_SMC_POWER_PROFILE enum but omitted updating the >>> corresponding profile_name array. Fix this by adding in the >>> missing BOOTUP_DEFAULT to profile_name[]. >>> >> >> Still not enough to prevent the array overflow. It needs POWERSAVE as >> well. > > Thanks for checking, but there is a 1-to-1 relation ship now: > > enum PP_SMC_POWER_PROFILE { > PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT = 0x0, > PP_SMC_POWER_PROFILE_FULLSCREEN3D = 0x1, > PP_SMC_POWER_PROFILE_POWERSAVING = 0x2, > PP_SMC_POWER_PROFILE_VIDEO = 0x3, > PP_SMC_POWER_PROFILE_VR = 0x4, > PP_SMC_POWER_PROFILE_COMPUTE = 0x5, > PP_SMC_POWER_PROFILE_CUSTOM = 0x6, > PP_SMC_POWER_PROFILE_COUNT, > }; > > vs > > static const char *profile_name[] = { > "BOOTUP_DEFAULT", > "3D_FULL_SCREEN", > "POWER_SAVING", This line has been added yesterday in commit f727ebeb589d. So Dan was right when he sent his patch, but some else fixed it. CJ > "VIDEO", > "VR", > "COMPUTE", > "CUSTOM"}; > > > unless I'm missing something because I've not had enough coffee. > > Colin > >> >> regards, >> dan carpenter >> > > _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-15 10:07 ` Christophe JAILLET 0 siblings, 0 replies; 27+ messages in thread From: Christophe JAILLET @ 2021-01-15 10:07 UTC (permalink / raw) To: Colin Ian King, Dan Carpenter Cc: Xiaojian Du, David Airlie, kernel-janitors, linux-kernel, amd-gfx, dri-devel, Daniel Vetter, Alex Deucher, Christian König Le 15/01/2021 à 10:37, Colin Ian King a écrit : > On 12/01/2021 10:07, Dan Carpenter wrote: >> On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: >>> From: Colin Ian King <colin.king@canonical.com> >>> >>> A recent change added a new BOOTUP_DEFAULT power profile mode >>> to the PP_SMC_POWER_PROFILE enum but omitted updating the >>> corresponding profile_name array. Fix this by adding in the >>> missing BOOTUP_DEFAULT to profile_name[]. >>> >> >> Still not enough to prevent the array overflow. It needs POWERSAVE as >> well. > > Thanks for checking, but there is a 1-to-1 relation ship now: > > enum PP_SMC_POWER_PROFILE { > PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT = 0x0, > PP_SMC_POWER_PROFILE_FULLSCREEN3D = 0x1, > PP_SMC_POWER_PROFILE_POWERSAVING = 0x2, > PP_SMC_POWER_PROFILE_VIDEO = 0x3, > PP_SMC_POWER_PROFILE_VR = 0x4, > PP_SMC_POWER_PROFILE_COMPUTE = 0x5, > PP_SMC_POWER_PROFILE_CUSTOM = 0x6, > PP_SMC_POWER_PROFILE_COUNT, > }; > > vs > > static const char *profile_name[] = { > "BOOTUP_DEFAULT", > "3D_FULL_SCREEN", > "POWER_SAVING", This line has been added yesterday in commit f727ebeb589d. So Dan was right when he sent his patch, but some else fixed it. CJ > "VIDEO", > "VR", > "COMPUTE", > "CUSTOM"}; > > > unless I'm missing something because I've not had enough coffee. > > Colin > >> >> regards, >> dan carpenter >> > > ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] 2021-01-15 10:07 ` Christophe JAILLET (?) (?) @ 2021-01-15 10:10 ` Colin Ian King -1 siblings, 0 replies; 27+ messages in thread From: Colin Ian King @ 2021-01-15 10:10 UTC (permalink / raw) To: Christophe JAILLET, Dan Carpenter Cc: Xiaojian Du, David Airlie, kernel-janitors, linux-kernel, amd-gfx, dri-devel, Daniel Vetter, Alex Deucher, Christian König On 15/01/2021 10:07, Christophe JAILLET wrote: > Le 15/01/2021 à 10:37, Colin Ian King a écrit : >> On 12/01/2021 10:07, Dan Carpenter wrote: >>> On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: >>>> From: Colin Ian King <colin.king@canonical.com> >>>> >>>> A recent change added a new BOOTUP_DEFAULT power profile mode >>>> to the PP_SMC_POWER_PROFILE enum but omitted updating the >>>> corresponding profile_name array. Fix this by adding in the >>>> missing BOOTUP_DEFAULT to profile_name[]. >>>> >>> >>> Still not enough to prevent the array overflow. It needs POWERSAVE as >>> well. >> >> Thanks for checking, but there is a 1-to-1 relation ship now: >> >> enum PP_SMC_POWER_PROFILE { >> PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT = 0x0, >> PP_SMC_POWER_PROFILE_FULLSCREEN3D = 0x1, >> PP_SMC_POWER_PROFILE_POWERSAVING = 0x2, >> PP_SMC_POWER_PROFILE_VIDEO = 0x3, >> PP_SMC_POWER_PROFILE_VR = 0x4, >> PP_SMC_POWER_PROFILE_COMPUTE = 0x5, >> PP_SMC_POWER_PROFILE_CUSTOM = 0x6, >> PP_SMC_POWER_PROFILE_COUNT, >> }; >> >> vs >> >> static const char *profile_name[] = { >> "BOOTUP_DEFAULT", >> "3D_FULL_SCREEN", >> "POWER_SAVING", > > This line has been added yesterday in commit f727ebeb589d. > So Dan was right when he sent his patch, but some else fixed it. Ah, my bad for not seeing that. :-/ > > CJ > >> "VIDEO", >> "VR", >> "COMPUTE", >> "CUSTOM"}; >> >> >> unless I'm missing something because I've not had enough coffee. >> >> Colin >> >>> >>> regards, >>> dan carpenter >>> >> >> > _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-15 10:10 ` Colin Ian King 0 siblings, 0 replies; 27+ messages in thread From: Colin Ian King @ 2021-01-15 10:10 UTC (permalink / raw) To: Christophe JAILLET, Dan Carpenter Cc: Alex Deucher, Christian König, David Airlie, Daniel Vetter, Xiaojian Du, amd-gfx, dri-devel, kernel-janitors, linux-kernel On 15/01/2021 10:07, Christophe JAILLET wrote: > Le 15/01/2021 à 10:37, Colin Ian King a écrit : >> On 12/01/2021 10:07, Dan Carpenter wrote: >>> On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: >>>> From: Colin Ian King <colin.king@canonical.com> >>>> >>>> A recent change added a new BOOTUP_DEFAULT power profile mode >>>> to the PP_SMC_POWER_PROFILE enum but omitted updating the >>>> corresponding profile_name array. Fix this by adding in the >>>> missing BOOTUP_DEFAULT to profile_name[]. >>>> >>> >>> Still not enough to prevent the array overflow. It needs POWERSAVE as >>> well. >> >> Thanks for checking, but there is a 1-to-1 relation ship now: >> >> enum PP_SMC_POWER_PROFILE { >> PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT = 0x0, >> PP_SMC_POWER_PROFILE_FULLSCREEN3D = 0x1, >> PP_SMC_POWER_PROFILE_POWERSAVING = 0x2, >> PP_SMC_POWER_PROFILE_VIDEO = 0x3, >> PP_SMC_POWER_PROFILE_VR = 0x4, >> PP_SMC_POWER_PROFILE_COMPUTE = 0x5, >> PP_SMC_POWER_PROFILE_CUSTOM = 0x6, >> PP_SMC_POWER_PROFILE_COUNT, >> }; >> >> vs >> >> static const char *profile_name[] = { >> "BOOTUP_DEFAULT", >> "3D_FULL_SCREEN", >> "POWER_SAVING", > > This line has been added yesterday in commit f727ebeb589d. > So Dan was right when he sent his patch, but some else fixed it. Ah, my bad for not seeing that. :-/ > > CJ > >> "VIDEO", >> "VR", >> "COMPUTE", >> "CUSTOM"}; >> >> >> unless I'm missing something because I've not had enough coffee. >> >> Colin >> >>> >>> regards, >>> dan carpenter >>> >> >> > ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-15 10:10 ` Colin Ian King 0 siblings, 0 replies; 27+ messages in thread From: Colin Ian King @ 2021-01-15 10:10 UTC (permalink / raw) To: Christophe JAILLET, Dan Carpenter Cc: Xiaojian Du, David Airlie, kernel-janitors, linux-kernel, amd-gfx, dri-devel, Alex Deucher, Christian König On 15/01/2021 10:07, Christophe JAILLET wrote: > Le 15/01/2021 à 10:37, Colin Ian King a écrit : >> On 12/01/2021 10:07, Dan Carpenter wrote: >>> On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: >>>> From: Colin Ian King <colin.king@canonical.com> >>>> >>>> A recent change added a new BOOTUP_DEFAULT power profile mode >>>> to the PP_SMC_POWER_PROFILE enum but omitted updating the >>>> corresponding profile_name array. Fix this by adding in the >>>> missing BOOTUP_DEFAULT to profile_name[]. >>>> >>> >>> Still not enough to prevent the array overflow. It needs POWERSAVE as >>> well. >> >> Thanks for checking, but there is a 1-to-1 relation ship now: >> >> enum PP_SMC_POWER_PROFILE { >> PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT = 0x0, >> PP_SMC_POWER_PROFILE_FULLSCREEN3D = 0x1, >> PP_SMC_POWER_PROFILE_POWERSAVING = 0x2, >> PP_SMC_POWER_PROFILE_VIDEO = 0x3, >> PP_SMC_POWER_PROFILE_VR = 0x4, >> PP_SMC_POWER_PROFILE_COMPUTE = 0x5, >> PP_SMC_POWER_PROFILE_CUSTOM = 0x6, >> PP_SMC_POWER_PROFILE_COUNT, >> }; >> >> vs >> >> static const char *profile_name[] = { >> "BOOTUP_DEFAULT", >> "3D_FULL_SCREEN", >> "POWER_SAVING", > > This line has been added yesterday in commit f727ebeb589d. > So Dan was right when he sent his patch, but some else fixed it. Ah, my bad for not seeing that. :-/ > > CJ > >> "VIDEO", >> "VR", >> "COMPUTE", >> "CUSTOM"}; >> >> >> unless I'm missing something because I've not had enough coffee. >> >> Colin >> >>> >>> regards, >>> dan carpenter >>> >> >> > _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-15 10:10 ` Colin Ian King 0 siblings, 0 replies; 27+ messages in thread From: Colin Ian King @ 2021-01-15 10:10 UTC (permalink / raw) To: Christophe JAILLET, Dan Carpenter Cc: Xiaojian Du, David Airlie, kernel-janitors, linux-kernel, amd-gfx, dri-devel, Daniel Vetter, Alex Deucher, Christian König On 15/01/2021 10:07, Christophe JAILLET wrote: > Le 15/01/2021 à 10:37, Colin Ian King a écrit : >> On 12/01/2021 10:07, Dan Carpenter wrote: >>> On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: >>>> From: Colin Ian King <colin.king@canonical.com> >>>> >>>> A recent change added a new BOOTUP_DEFAULT power profile mode >>>> to the PP_SMC_POWER_PROFILE enum but omitted updating the >>>> corresponding profile_name array. Fix this by adding in the >>>> missing BOOTUP_DEFAULT to profile_name[]. >>>> >>> >>> Still not enough to prevent the array overflow. It needs POWERSAVE as >>> well. >> >> Thanks for checking, but there is a 1-to-1 relation ship now: >> >> enum PP_SMC_POWER_PROFILE { >> PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT = 0x0, >> PP_SMC_POWER_PROFILE_FULLSCREEN3D = 0x1, >> PP_SMC_POWER_PROFILE_POWERSAVING = 0x2, >> PP_SMC_POWER_PROFILE_VIDEO = 0x3, >> PP_SMC_POWER_PROFILE_VR = 0x4, >> PP_SMC_POWER_PROFILE_COMPUTE = 0x5, >> PP_SMC_POWER_PROFILE_CUSTOM = 0x6, >> PP_SMC_POWER_PROFILE_COUNT, >> }; >> >> vs >> >> static const char *profile_name[] = { >> "BOOTUP_DEFAULT", >> "3D_FULL_SCREEN", >> "POWER_SAVING", > > This line has been added yesterday in commit f727ebeb589d. > So Dan was right when he sent his patch, but some else fixed it. Ah, my bad for not seeing that. :-/ > > CJ > >> "VIDEO", >> "VR", >> "COMPUTE", >> "CUSTOM"}; >> >> >> unless I'm missing something because I've not had enough coffee. >> >> Colin >> >>> >>> regards, >>> dan carpenter >>> >> >> > ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] 2021-01-15 10:10 ` Colin Ian King (?) (?) @ 2021-01-15 10:16 ` Christophe JAILLET -1 siblings, 0 replies; 27+ messages in thread From: Christophe JAILLET @ 2021-01-15 10:16 UTC (permalink / raw) To: Colin Ian King, Dan Carpenter Cc: Xiaojian Du, David Airlie, kernel-janitors, linux-kernel, amd-gfx, dri-devel, Daniel Vetter, Alex Deucher, Christian König Le 15/01/2021 à 11:10, Colin Ian King a écrit : > On 15/01/2021 10:07, Christophe JAILLET wrote: >> Le 15/01/2021 à 10:37, Colin Ian King a écrit : >>> On 12/01/2021 10:07, Dan Carpenter wrote: >>>> On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: >>>>> From: Colin Ian King <colin.king@canonical.com> >>>>> >>>>> A recent change added a new BOOTUP_DEFAULT power profile mode >>>>> to the PP_SMC_POWER_PROFILE enum but omitted updating the >>>>> corresponding profile_name array. Fix this by adding in the >>>>> missing BOOTUP_DEFAULT to profile_name[]. >>>>> >>>> >>>> Still not enough to prevent the array overflow. It needs POWERSAVE as >>>> well. >>> >>> Thanks for checking, but there is a 1-to-1 relation ship now: >>> >>> enum PP_SMC_POWER_PROFILE { >>> PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT = 0x0, >>> PP_SMC_POWER_PROFILE_FULLSCREEN3D = 0x1, >>> PP_SMC_POWER_PROFILE_POWERSAVING = 0x2, >>> PP_SMC_POWER_PROFILE_VIDEO = 0x3, >>> PP_SMC_POWER_PROFILE_VR = 0x4, >>> PP_SMC_POWER_PROFILE_COMPUTE = 0x5, >>> PP_SMC_POWER_PROFILE_CUSTOM = 0x6, >>> PP_SMC_POWER_PROFILE_COUNT, >>> }; >>> >>> vs >>> >>> static const char *profile_name[] = { >>> "BOOTUP_DEFAULT", >>> "3D_FULL_SCREEN", >>> "POWER_SAVING", >> >> This line has been added yesterday in commit f727ebeb589d. >> So Dan was right when he sent his patch, but some else fixed it. > > Ah, my bad for not seeing that. :-/ However, I wonder if this commit is complete. The description of the commit is about 5 modes, but 6 are listed in PP_SMC_POWER_PROFILE. In the hunk: +static struct cmn2asic_mapping vangogh_workload_map[PP_SMC_POWER_PROFILE_COUNT] = { + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_FULLSCREEN3D, WORKLOAD_PPLIB_FULL_SCREEN_3D_BIT), + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_VIDEO, WORKLOAD_PPLIB_VIDEO_BIT), + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_VR, WORKLOAD_PPLIB_VR_BIT), + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_COMPUTE, WORKLOAD_PPLIB_COMPUTE_BIT), + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_CUSTOM, WORKLOAD_PPLIB_CUSTOM_BIT), +}; It would look logical to have something like: + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_POWERSAVING, WORKLOAD_PPLIB_POWER_SAVING_BIT), Not sure at all if correct. Just my 2c, CJ > >> >> CJ >> >>> "VIDEO", >>> "VR", >>> "COMPUTE", >>> "CUSTOM"}; >>> >>> >>> unless I'm missing something because I've not had enough coffee. >>> >>> Colin >>> >>>> >>>> regards, >>>> dan carpenter >>>> >>> >>> >> > > _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-15 10:16 ` Christophe JAILLET 0 siblings, 0 replies; 27+ messages in thread From: Christophe JAILLET @ 2021-01-15 10:16 UTC (permalink / raw) To: Colin Ian King, Dan Carpenter Cc: Alex Deucher, Christian König, David Airlie, Daniel Vetter, Xiaojian Du, amd-gfx, dri-devel, kernel-janitors, linux-kernel Le 15/01/2021 à 11:10, Colin Ian King a écrit : > On 15/01/2021 10:07, Christophe JAILLET wrote: >> Le 15/01/2021 à 10:37, Colin Ian King a écrit : >>> On 12/01/2021 10:07, Dan Carpenter wrote: >>>> On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: >>>>> From: Colin Ian King <colin.king@canonical.com> >>>>> >>>>> A recent change added a new BOOTUP_DEFAULT power profile mode >>>>> to the PP_SMC_POWER_PROFILE enum but omitted updating the >>>>> corresponding profile_name array. Fix this by adding in the >>>>> missing BOOTUP_DEFAULT to profile_name[]. >>>>> >>>> >>>> Still not enough to prevent the array overflow. It needs POWERSAVE as >>>> well. >>> >>> Thanks for checking, but there is a 1-to-1 relation ship now: >>> >>> enum PP_SMC_POWER_PROFILE { >>> PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT = 0x0, >>> PP_SMC_POWER_PROFILE_FULLSCREEN3D = 0x1, >>> PP_SMC_POWER_PROFILE_POWERSAVING = 0x2, >>> PP_SMC_POWER_PROFILE_VIDEO = 0x3, >>> PP_SMC_POWER_PROFILE_VR = 0x4, >>> PP_SMC_POWER_PROFILE_COMPUTE = 0x5, >>> PP_SMC_POWER_PROFILE_CUSTOM = 0x6, >>> PP_SMC_POWER_PROFILE_COUNT, >>> }; >>> >>> vs >>> >>> static const char *profile_name[] = { >>> "BOOTUP_DEFAULT", >>> "3D_FULL_SCREEN", >>> "POWER_SAVING", >> >> This line has been added yesterday in commit f727ebeb589d. >> So Dan was right when he sent his patch, but some else fixed it. > > Ah, my bad for not seeing that. :-/ However, I wonder if this commit is complete. The description of the commit is about 5 modes, but 6 are listed in PP_SMC_POWER_PROFILE. In the hunk: +static struct cmn2asic_mapping vangogh_workload_map[PP_SMC_POWER_PROFILE_COUNT] = { + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_FULLSCREEN3D, WORKLOAD_PPLIB_FULL_SCREEN_3D_BIT), + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_VIDEO, WORKLOAD_PPLIB_VIDEO_BIT), + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_VR, WORKLOAD_PPLIB_VR_BIT), + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_COMPUTE, WORKLOAD_PPLIB_COMPUTE_BIT), + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_CUSTOM, WORKLOAD_PPLIB_CUSTOM_BIT), +}; It would look logical to have something like: + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_POWERSAVING, WORKLOAD_PPLIB_POWER_SAVING_BIT), Not sure at all if correct. Just my 2c, CJ > >> >> CJ >> >>> "VIDEO", >>> "VR", >>> "COMPUTE", >>> "CUSTOM"}; >>> >>> >>> unless I'm missing something because I've not had enough coffee. >>> >>> Colin >>> >>>> >>>> regards, >>>> dan carpenter >>>> >>> >>> >> > > ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-15 10:16 ` Christophe JAILLET 0 siblings, 0 replies; 27+ messages in thread From: Christophe JAILLET @ 2021-01-15 10:16 UTC (permalink / raw) To: Colin Ian King, Dan Carpenter Cc: Xiaojian Du, David Airlie, kernel-janitors, linux-kernel, amd-gfx, dri-devel, Alex Deucher, Christian König Le 15/01/2021 à 11:10, Colin Ian King a écrit : > On 15/01/2021 10:07, Christophe JAILLET wrote: >> Le 15/01/2021 à 10:37, Colin Ian King a écrit : >>> On 12/01/2021 10:07, Dan Carpenter wrote: >>>> On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: >>>>> From: Colin Ian King <colin.king@canonical.com> >>>>> >>>>> A recent change added a new BOOTUP_DEFAULT power profile mode >>>>> to the PP_SMC_POWER_PROFILE enum but omitted updating the >>>>> corresponding profile_name array. Fix this by adding in the >>>>> missing BOOTUP_DEFAULT to profile_name[]. >>>>> >>>> >>>> Still not enough to prevent the array overflow. It needs POWERSAVE as >>>> well. >>> >>> Thanks for checking, but there is a 1-to-1 relation ship now: >>> >>> enum PP_SMC_POWER_PROFILE { >>> PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT = 0x0, >>> PP_SMC_POWER_PROFILE_FULLSCREEN3D = 0x1, >>> PP_SMC_POWER_PROFILE_POWERSAVING = 0x2, >>> PP_SMC_POWER_PROFILE_VIDEO = 0x3, >>> PP_SMC_POWER_PROFILE_VR = 0x4, >>> PP_SMC_POWER_PROFILE_COMPUTE = 0x5, >>> PP_SMC_POWER_PROFILE_CUSTOM = 0x6, >>> PP_SMC_POWER_PROFILE_COUNT, >>> }; >>> >>> vs >>> >>> static const char *profile_name[] = { >>> "BOOTUP_DEFAULT", >>> "3D_FULL_SCREEN", >>> "POWER_SAVING", >> >> This line has been added yesterday in commit f727ebeb589d. >> So Dan was right when he sent his patch, but some else fixed it. > > Ah, my bad for not seeing that. :-/ However, I wonder if this commit is complete. The description of the commit is about 5 modes, but 6 are listed in PP_SMC_POWER_PROFILE. In the hunk: +static struct cmn2asic_mapping vangogh_workload_map[PP_SMC_POWER_PROFILE_COUNT] = { + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_FULLSCREEN3D, WORKLOAD_PPLIB_FULL_SCREEN_3D_BIT), + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_VIDEO, WORKLOAD_PPLIB_VIDEO_BIT), + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_VR, WORKLOAD_PPLIB_VR_BIT), + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_COMPUTE, WORKLOAD_PPLIB_COMPUTE_BIT), + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_CUSTOM, WORKLOAD_PPLIB_CUSTOM_BIT), +}; It would look logical to have something like: + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_POWERSAVING, WORKLOAD_PPLIB_POWER_SAVING_BIT), Not sure at all if correct. Just my 2c, CJ > >> >> CJ >> >>> "VIDEO", >>> "VR", >>> "COMPUTE", >>> "CUSTOM"}; >>> >>> >>> unless I'm missing something because I've not had enough coffee. >>> >>> Colin >>> >>>> >>>> regards, >>>> dan carpenter >>>> >>> >>> >> > > _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] @ 2021-01-15 10:16 ` Christophe JAILLET 0 siblings, 0 replies; 27+ messages in thread From: Christophe JAILLET @ 2021-01-15 10:16 UTC (permalink / raw) To: Colin Ian King, Dan Carpenter Cc: Xiaojian Du, David Airlie, kernel-janitors, linux-kernel, amd-gfx, dri-devel, Daniel Vetter, Alex Deucher, Christian König Le 15/01/2021 à 11:10, Colin Ian King a écrit : > On 15/01/2021 10:07, Christophe JAILLET wrote: >> Le 15/01/2021 à 10:37, Colin Ian King a écrit : >>> On 12/01/2021 10:07, Dan Carpenter wrote: >>>> On Mon, Jan 11, 2021 at 11:46:38AM +0000, Colin King wrote: >>>>> From: Colin Ian King <colin.king@canonical.com> >>>>> >>>>> A recent change added a new BOOTUP_DEFAULT power profile mode >>>>> to the PP_SMC_POWER_PROFILE enum but omitted updating the >>>>> corresponding profile_name array. Fix this by adding in the >>>>> missing BOOTUP_DEFAULT to profile_name[]. >>>>> >>>> >>>> Still not enough to prevent the array overflow. It needs POWERSAVE as >>>> well. >>> >>> Thanks for checking, but there is a 1-to-1 relation ship now: >>> >>> enum PP_SMC_POWER_PROFILE { >>> PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT = 0x0, >>> PP_SMC_POWER_PROFILE_FULLSCREEN3D = 0x1, >>> PP_SMC_POWER_PROFILE_POWERSAVING = 0x2, >>> PP_SMC_POWER_PROFILE_VIDEO = 0x3, >>> PP_SMC_POWER_PROFILE_VR = 0x4, >>> PP_SMC_POWER_PROFILE_COMPUTE = 0x5, >>> PP_SMC_POWER_PROFILE_CUSTOM = 0x6, >>> PP_SMC_POWER_PROFILE_COUNT, >>> }; >>> >>> vs >>> >>> static const char *profile_name[] = { >>> "BOOTUP_DEFAULT", >>> "3D_FULL_SCREEN", >>> "POWER_SAVING", >> >> This line has been added yesterday in commit f727ebeb589d. >> So Dan was right when he sent his patch, but some else fixed it. > > Ah, my bad for not seeing that. :-/ However, I wonder if this commit is complete. The description of the commit is about 5 modes, but 6 are listed in PP_SMC_POWER_PROFILE. In the hunk: +static struct cmn2asic_mapping vangogh_workload_map[PP_SMC_POWER_PROFILE_COUNT] = { + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_FULLSCREEN3D, WORKLOAD_PPLIB_FULL_SCREEN_3D_BIT), + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_VIDEO, WORKLOAD_PPLIB_VIDEO_BIT), + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_VR, WORKLOAD_PPLIB_VR_BIT), + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_COMPUTE, WORKLOAD_PPLIB_COMPUTE_BIT), + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_CUSTOM, WORKLOAD_PPLIB_CUSTOM_BIT), +}; It would look logical to have something like: + WORKLOAD_MAP(PP_SMC_POWER_PROFILE_POWERSAVING, WORKLOAD_PPLIB_POWER_SAVING_BIT), Not sure at all if correct. Just my 2c, CJ > >> >> CJ >> >>> "VIDEO", >>> "VR", >>> "COMPUTE", >>> "CUSTOM"}; >>> >>> >>> unless I'm missing something because I've not had enough coffee. >>> >>> Colin >>> >>>> >>>> regards, >>>> dan carpenter >>>> >>> >>> >> > > ^ permalink raw reply [flat|nested] 27+ messages in thread
end of thread, other threads:[~2021-01-16 10:45 UTC | newest] Thread overview: 27+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-01-11 11:46 [PATCH][next] drm/amdgpu: Add missing BOOTUP_DEFAULT to profile_name[] Colin King 2021-01-11 11:46 ` Colin King 2021-01-11 11:46 ` Colin King 2021-01-11 16:19 ` Alex Deucher 2021-01-11 16:19 ` Alex Deucher 2021-01-11 16:19 ` Alex Deucher 2021-01-11 16:19 ` Alex Deucher 2021-01-12 10:07 ` Dan Carpenter 2021-01-12 10:07 ` Dan Carpenter 2021-01-12 10:07 ` Dan Carpenter 2021-01-12 10:07 ` Dan Carpenter 2021-01-15 9:37 ` Colin Ian King 2021-01-15 9:37 ` Colin Ian King 2021-01-15 9:37 ` Colin Ian King 2021-01-15 9:37 ` Colin Ian King 2021-01-15 10:07 ` Christophe JAILLET 2021-01-15 10:07 ` Christophe JAILLET 2021-01-15 10:07 ` Christophe JAILLET 2021-01-15 10:07 ` Christophe JAILLET 2021-01-15 10:10 ` Colin Ian King 2021-01-15 10:10 ` Colin Ian King 2021-01-15 10:10 ` Colin Ian King 2021-01-15 10:10 ` Colin Ian King 2021-01-15 10:16 ` Christophe JAILLET 2021-01-15 10:16 ` Christophe JAILLET 2021-01-15 10:16 ` Christophe JAILLET 2021-01-15 10:16 ` Christophe JAILLET
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.