dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/3] drm/radeon: Add new callback that exposes vddc
@ 2020-10-09  7:43 Sandeep Raghuraman
  2020-10-24 17:47 ` Sandeep
  0 siblings, 1 reply; 5+ messages in thread
From: Sandeep Raghuraman @ 2020-10-09  7:43 UTC (permalink / raw)
  To: Deucher, Alexander, Maling list - DRI developers

This patch adds a callback for reporting vddc, to the dpm field of the radeon_asic structure.

Signed-off-by: Sandeep Raghuraman <sandy.8925@gmail.com>

---
 drivers/gpu/drm/radeon/radeon.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h
index cc4f58d16589..85a1cafdf303 100644
--- a/drivers/gpu/drm/radeon/radeon.h
+++ b/drivers/gpu/drm/radeon/radeon.h
@@ -1992,6 +1992,7 @@ struct radeon_asic {
 		int (*get_fan_speed_percent)(struct radeon_device *rdev, u32 *speed);
 		u32 (*get_current_sclk)(struct radeon_device *rdev);
 		u32 (*get_current_mclk)(struct radeon_device *rdev);
+		u16 (*get_current_vddc)(struct radeon_device *rdev);
 	} dpm;
 	/* pageflipping */
 	struct {
--
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v2 1/3] drm/radeon: Add new callback that exposes vddc
  2020-10-09  7:43 [PATCH v2 1/3] drm/radeon: Add new callback that exposes vddc Sandeep Raghuraman
@ 2020-10-24 17:47 ` Sandeep
  2020-10-26 18:23   ` Alex Deucher
  0 siblings, 1 reply; 5+ messages in thread
From: Sandeep @ 2020-10-24 17:47 UTC (permalink / raw)
  To: Deucher, Alexander, Maling list - DRI developers

Hello,

I've resent the patches in the correct format. Please review.

- Sandeep

On Fri, 9 Oct 2020 at 13:14, Sandeep Raghuraman <sandy.8925@gmail.com> wrote:
>
> This patch adds a callback for reporting vddc, to the dpm field of the radeon_asic structure.
>
> Signed-off-by: Sandeep Raghuraman <sandy.8925@gmail.com>
>
> ---
>  drivers/gpu/drm/radeon/radeon.h | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h
> index cc4f58d16589..85a1cafdf303 100644
> --- a/drivers/gpu/drm/radeon/radeon.h
> +++ b/drivers/gpu/drm/radeon/radeon.h
> @@ -1992,6 +1992,7 @@ struct radeon_asic {
>                 int (*get_fan_speed_percent)(struct radeon_device *rdev, u32 *speed);
>                 u32 (*get_current_sclk)(struct radeon_device *rdev);
>                 u32 (*get_current_mclk)(struct radeon_device *rdev);
> +               u16 (*get_current_vddc)(struct radeon_device *rdev);
>         } dpm;
>         /* pageflipping */
>         struct {
> --
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2 1/3] drm/radeon: Add new callback that exposes vddc
  2020-10-24 17:47 ` Sandeep
@ 2020-10-26 18:23   ` Alex Deucher
  2020-10-27 11:53     ` Sandeep
  0 siblings, 1 reply; 5+ messages in thread
From: Alex Deucher @ 2020-10-26 18:23 UTC (permalink / raw)
  To: Sandeep; +Cc: Deucher, Alexander, Maling list - DRI developers

I don't see them on the mailing list.  Are you sure they went out?

Alex

On Sat, Oct 24, 2020 at 1:47 PM Sandeep <sandy.8925@gmail.com> wrote:
>
> Hello,
>
> I've resent the patches in the correct format. Please review.
>
> - Sandeep
>
> On Fri, 9 Oct 2020 at 13:14, Sandeep Raghuraman <sandy.8925@gmail.com> wrote:
> >
> > This patch adds a callback for reporting vddc, to the dpm field of the radeon_asic structure.
> >
> > Signed-off-by: Sandeep Raghuraman <sandy.8925@gmail.com>
> >
> > ---
> >  drivers/gpu/drm/radeon/radeon.h | 1 +
> >  1 file changed, 1 insertion(+)
> >
> > diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h
> > index cc4f58d16589..85a1cafdf303 100644
> > --- a/drivers/gpu/drm/radeon/radeon.h
> > +++ b/drivers/gpu/drm/radeon/radeon.h
> > @@ -1992,6 +1992,7 @@ struct radeon_asic {
> >                 int (*get_fan_speed_percent)(struct radeon_device *rdev, u32 *speed);
> >                 u32 (*get_current_sclk)(struct radeon_device *rdev);
> >                 u32 (*get_current_mclk)(struct radeon_device *rdev);
> > +               u16 (*get_current_vddc)(struct radeon_device *rdev);
> >         } dpm;
> >         /* pageflipping */
> >         struct {
> > --
> _______________________________________________
> 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] 5+ messages in thread

* Re: [PATCH v2 1/3] drm/radeon: Add new callback that exposes vddc
  2020-10-26 18:23   ` Alex Deucher
@ 2020-10-27 11:53     ` Sandeep
  2020-10-27 15:24       ` Alex Deucher
  0 siblings, 1 reply; 5+ messages in thread
From: Sandeep @ 2020-10-27 11:53 UTC (permalink / raw)
  To: Alex Deucher; +Cc: Deucher, Alexander, Maling list - DRI developers

On Mon, 26 Oct 2020 at 23:53, Alex Deucher <alexdeucher@gmail.com> wrote:
>
> I don't see them on the mailing list.  Are you sure they went out?
>
> Alex

The original email in this chain is the v2, sent in the correct form.

>
> On Sat, Oct 24, 2020 at 1:47 PM Sandeep <sandy.8925@gmail.com> wrote:
> >
> > Hello,
> >
> > I've resent the patches in the correct format. Please review.
> >
> > - Sandeep
> >
> > On Fri, 9 Oct 2020 at 13:14, Sandeep Raghuraman <sandy.8925@gmail.com> wrote:
> > >
> > > This patch adds a callback for reporting vddc, to the dpm field of the radeon_asic structure.
> > >
> > > Signed-off-by: Sandeep Raghuraman <sandy.8925@gmail.com>
> > >
> > > ---
> > >  drivers/gpu/drm/radeon/radeon.h | 1 +
> > >  1 file changed, 1 insertion(+)
> > >
> > > diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h
> > > index cc4f58d16589..85a1cafdf303 100644
> > > --- a/drivers/gpu/drm/radeon/radeon.h
> > > +++ b/drivers/gpu/drm/radeon/radeon.h
> > > @@ -1992,6 +1992,7 @@ struct radeon_asic {
> > >                 int (*get_fan_speed_percent)(struct radeon_device *rdev, u32 *speed);
> > >                 u32 (*get_current_sclk)(struct radeon_device *rdev);
> > >                 u32 (*get_current_mclk)(struct radeon_device *rdev);
> > > +               u16 (*get_current_vddc)(struct radeon_device *rdev);
> > >         } dpm;
> > >         /* pageflipping */
> > >         struct {
> > > --
> > _______________________________________________
> > 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] 5+ messages in thread

* Re: [PATCH v2 1/3] drm/radeon: Add new callback that exposes vddc
  2020-10-27 11:53     ` Sandeep
@ 2020-10-27 15:24       ` Alex Deucher
  0 siblings, 0 replies; 5+ messages in thread
From: Alex Deucher @ 2020-10-27 15:24 UTC (permalink / raw)
  To: Sandeep; +Cc: Deucher, Alexander, Maling list - DRI developers

Applied.  Thanks!

Alex

On Tue, Oct 27, 2020 at 7:53 AM Sandeep <sandy.8925@gmail.com> wrote:
>
> On Mon, 26 Oct 2020 at 23:53, Alex Deucher <alexdeucher@gmail.com> wrote:
> >
> > I don't see them on the mailing list.  Are you sure they went out?
> >
> > Alex
>
> The original email in this chain is the v2, sent in the correct form.
>
> >
> > On Sat, Oct 24, 2020 at 1:47 PM Sandeep <sandy.8925@gmail.com> wrote:
> > >
> > > Hello,
> > >
> > > I've resent the patches in the correct format. Please review.
> > >
> > > - Sandeep
> > >
> > > On Fri, 9 Oct 2020 at 13:14, Sandeep Raghuraman <sandy.8925@gmail.com> wrote:
> > > >
> > > > This patch adds a callback for reporting vddc, to the dpm field of the radeon_asic structure.
> > > >
> > > > Signed-off-by: Sandeep Raghuraman <sandy.8925@gmail.com>
> > > >
> > > > ---
> > > >  drivers/gpu/drm/radeon/radeon.h | 1 +
> > > >  1 file changed, 1 insertion(+)
> > > >
> > > > diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h
> > > > index cc4f58d16589..85a1cafdf303 100644
> > > > --- a/drivers/gpu/drm/radeon/radeon.h
> > > > +++ b/drivers/gpu/drm/radeon/radeon.h
> > > > @@ -1992,6 +1992,7 @@ struct radeon_asic {
> > > >                 int (*get_fan_speed_percent)(struct radeon_device *rdev, u32 *speed);
> > > >                 u32 (*get_current_sclk)(struct radeon_device *rdev);
> > > >                 u32 (*get_current_mclk)(struct radeon_device *rdev);
> > > > +               u16 (*get_current_vddc)(struct radeon_device *rdev);
> > > >         } dpm;
> > > >         /* pageflipping */
> > > >         struct {
> > > > --
> > > _______________________________________________
> > > 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] 5+ messages in thread

end of thread, other threads:[~2020-10-27 15:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-09  7:43 [PATCH v2 1/3] drm/radeon: Add new callback that exposes vddc Sandeep Raghuraman
2020-10-24 17:47 ` Sandeep
2020-10-26 18:23   ` Alex Deucher
2020-10-27 11:53     ` Sandeep
2020-10-27 15:24       ` Alex Deucher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).