* [ptxdist] [PATCH] nvtop: version bump 3.0.2 -> 3.1.0
@ 2024-06-07 7:38 Lucas Stach
2024-06-15 14:58 ` [ptxdist] [APPLIED] " Michael Olbrich
0 siblings, 1 reply; 2+ messages in thread
From: Lucas Stach @ 2024-06-07 7:38 UTC (permalink / raw)
To: ptxdist
New version adds support for Mali GPUs with both panfrost and panthor
kernel drivers. Disable Apple and Ascend support, as those are only
available on non-Linux platforms.
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
---
rules/nvtop.in | 8 ++++++++
rules/nvtop.make | 10 +++++++---
2 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/rules/nvtop.in b/rules/nvtop.in
index af42874156aa..5ebaec21056e 100644
--- a/rules/nvtop.in
+++ b/rules/nvtop.in
@@ -31,4 +31,12 @@ config NVTOP_MSM
bool
prompt "build support for Adreno GPUs using the msm driver"
+config NVTOP_PANFROST
+ bool
+ prompt "build support for Mali GPUs using the panfrost driver"
+
+config NVTOP_PANTHOR
+ bool
+ prompt "build support for Mali GPUs using the panthor driver"
+
endif
diff --git a/rules/nvtop.make b/rules/nvtop.make
index 738b7a013032..0f6747e7ce21 100644
--- a/rules/nvtop.make
+++ b/rules/nvtop.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_NVTOP) += nvtop
#
# Paths and names
#
-NVTOP_VERSION := 3.0.2
-NVTOP_MD5 := fdf9bc33c2240ba99cee0d726d267427
+NVTOP_VERSION := 3.1.0
+NVTOP_MD5 := bdf8217412aa12f54448f14bb49bb164
NVTOP := nvtop-$(NVTOP_VERSION)
NVTOP_SUFFIX := tar.gz
NVTOP_URL := https://github.com/Syllo/nvtop/archive/refs/tags/$(NVTOP_VERSION).$(NVTOP_SUFFIX)
@@ -38,7 +38,11 @@ NVTOP_CONF_OPT := \
-DNVIDIA_SUPPORT=$(call ptx/onoff, PTXCONF_NVTOP_NVIDIA) \
-DAMDGPU_SUPPORT=$(call ptx/onoff, PTXCONF_NVTOP_AMDGPU) \
-DINTEL_SUPPORT=$(call ptx/onoff, PTXCONF_NVTOP_INTEL) \
- -DMSM_SUPPORT=$(call ptx/onoff, PTXCONF_NVTOP_MSM)
+ -DMSM_SUPPORT=$(call ptx/onoff, PTXCONF_NVTOP_MSM) \
+ -DAPPLE_SUPPORT=off \
+ -DPANFROST_SUPPORT=$(call ptx/onoff, PTXCONF_NVTOP_PANFROST) \
+ -DPANTHOR_SUPPORT=$(call ptx/onoff, PTXCONF_NVTOP_PANTHOR) \
+ -DASCEND_SUPPORT=off
# ----------------------------------------------------------------------------
# Target-Install
--
2.39.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [ptxdist] [APPLIED] nvtop: version bump 3.0.2 -> 3.1.0
2024-06-07 7:38 [ptxdist] [PATCH] nvtop: version bump 3.0.2 -> 3.1.0 Lucas Stach
@ 2024-06-15 14:58 ` Michael Olbrich
0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2024-06-15 14:58 UTC (permalink / raw)
To: ptxdist; +Cc: Lucas Stach
Thanks, applied as 1a6072b8d7048d014ffb55a21b903c00c03837a4.
Michael
[sent from post-receive hook]
On Sat, 15 Jun 2024 16:58:42 +0200, Lucas Stach <l.stach@pengutronix.de> wrote:
> New version adds support for Mali GPUs with both panfrost and panthor
> kernel drivers. Disable Apple and Ascend support, as those are only
> available on non-Linux platforms.
>
> Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
> Message-Id: <20240607073802.3551158-1-l.stach@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/nvtop.in b/rules/nvtop.in
> index af42874156aa..5ebaec21056e 100644
> --- a/rules/nvtop.in
> +++ b/rules/nvtop.in
> @@ -31,4 +31,12 @@ config NVTOP_MSM
> bool
> prompt "build support for Adreno GPUs using the msm driver"
>
> +config NVTOP_PANFROST
> + bool
> + prompt "build support for Mali GPUs using the panfrost driver"
> +
> +config NVTOP_PANTHOR
> + bool
> + prompt "build support for Mali GPUs using the panthor driver"
> +
> endif
> diff --git a/rules/nvtop.make b/rules/nvtop.make
> index 738b7a013032..0f6747e7ce21 100644
> --- a/rules/nvtop.make
> +++ b/rules/nvtop.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_NVTOP) += nvtop
> #
> # Paths and names
> #
> -NVTOP_VERSION := 3.0.2
> -NVTOP_MD5 := fdf9bc33c2240ba99cee0d726d267427
> +NVTOP_VERSION := 3.1.0
> +NVTOP_MD5 := bdf8217412aa12f54448f14bb49bb164
> NVTOP := nvtop-$(NVTOP_VERSION)
> NVTOP_SUFFIX := tar.gz
> NVTOP_URL := https://github.com/Syllo/nvtop/archive/refs/tags/$(NVTOP_VERSION).$(NVTOP_SUFFIX)
> @@ -38,7 +38,11 @@ NVTOP_CONF_OPT := \
> -DNVIDIA_SUPPORT=$(call ptx/onoff, PTXCONF_NVTOP_NVIDIA) \
> -DAMDGPU_SUPPORT=$(call ptx/onoff, PTXCONF_NVTOP_AMDGPU) \
> -DINTEL_SUPPORT=$(call ptx/onoff, PTXCONF_NVTOP_INTEL) \
> - -DMSM_SUPPORT=$(call ptx/onoff, PTXCONF_NVTOP_MSM)
> + -DMSM_SUPPORT=$(call ptx/onoff, PTXCONF_NVTOP_MSM) \
> + -DAPPLE_SUPPORT=off \
> + -DPANFROST_SUPPORT=$(call ptx/onoff, PTXCONF_NVTOP_PANFROST) \
> + -DPANTHOR_SUPPORT=$(call ptx/onoff, PTXCONF_NVTOP_PANTHOR) \
> + -DASCEND_SUPPORT=off
>
> # ----------------------------------------------------------------------------
> # Target-Install
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-06-15 14:59 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-07 7:38 [ptxdist] [PATCH] nvtop: version bump 3.0.2 -> 3.1.0 Lucas Stach
2024-06-15 14:58 ` [ptxdist] [APPLIED] " Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox