Rhys Kidd
2017-Aug-11 10:56 UTC
[Nouveau] [PATCH] drm/nouveau: Document nouveau support for Tegra in DRIVER_DESC
nouveau supports the Tegra K1 and higher after the SoC-based GPUs converged with the main GeForce GPU families. Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> --- drivers/gpu/drm/nouveau/nouveau_drv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h index 822fe1d4d35e..fbe42ec0a5f1 100644 --- a/drivers/gpu/drm/nouveau/nouveau_drv.h +++ b/drivers/gpu/drm/nouveau/nouveau_drv.h @@ -5,7 +5,7 @@ #define DRIVER_EMAIL "nouveau at lists.freedesktop.org" #define DRIVER_NAME "nouveau" -#define DRIVER_DESC "nVidia Riva/TNT/GeForce/Quadro/Tesla" +#define DRIVER_DESC "nVidia Riva/TNT/GeForce/Quadro/Tesla/Tegra" #define DRIVER_DATE "20120801" #define DRIVER_MAJOR 1 -- 2.11.0
Martin Peres
2017-Oct-01 13:36 UTC
[Nouveau] [PATCH] drm/nouveau: Document nouveau support for Tegra in DRIVER_DESC
On 11/08/17 13:56, Rhys Kidd wrote:> nouveau supports the Tegra K1 and higher after the SoC-based GPUs converged > with the main GeForce GPU families. > > Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> > --- > drivers/gpu/drm/nouveau/nouveau_drv.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h > index 822fe1d4d35e..fbe42ec0a5f1 100644 > --- a/drivers/gpu/drm/nouveau/nouveau_drv.h > +++ b/drivers/gpu/drm/nouveau/nouveau_drv.h > @@ -5,7 +5,7 @@ > #define DRIVER_EMAIL "nouveau at lists.freedesktop.org" > > #define DRIVER_NAME "nouveau" > -#define DRIVER_DESC "nVidia Riva/TNT/GeForce/Quadro/Tesla" > +#define DRIVER_DESC "nVidia Riva/TNT/GeForce/Quadro/Tesla/Tegra"The problem is that we do not support all Tegras. How about Tegra TK1+? I really do not care much about this string, but I guess I probably should a bit. With the TK1 added, this is: Reviewed-by" Martin Peres <martin.peres at free.fr>> #define DRIVER_DATE "20120801" > > #define DRIVER_MAJOR 1 >
Pierre Moreau
2017-Oct-01 13:39 UTC
[Nouveau] [PATCH] drm/nouveau: Document nouveau support for Tegra in DRIVER_DESC
You are right, Tegra should probably be part of the description, even if we do not support pre-K1 Tegras. Acked-by: Pierre Moreau <pierre.morrow at free.fr> On 2017-08-11 — 10:56, Rhys Kidd wrote:> nouveau supports the Tegra K1 and higher after the SoC-based GPUs converged > with the main GeForce GPU families. > > Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> > --- > drivers/gpu/drm/nouveau/nouveau_drv.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h > index 822fe1d4d35e..fbe42ec0a5f1 100644 > --- a/drivers/gpu/drm/nouveau/nouveau_drv.h > +++ b/drivers/gpu/drm/nouveau/nouveau_drv.h > @@ -5,7 +5,7 @@ > #define DRIVER_EMAIL "nouveau at lists.freedesktop.org" > > #define DRIVER_NAME "nouveau" > -#define DRIVER_DESC "nVidia Riva/TNT/GeForce/Quadro/Tesla" > +#define DRIVER_DESC "nVidia Riva/TNT/GeForce/Quadro/Tesla/Tegra" > #define DRIVER_DATE "20120801" > > #define DRIVER_MAJOR 1 > -- > 2.11.0 > > _______________________________________________ > Nouveau mailing list > Nouveau at lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/nouveau-------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: <https://lists.freedesktop.org/archives/nouveau/attachments/20171001/49fbc3bf/attachment.sig>
Rhys Kidd
2017-Oct-01 14:13 UTC
[Nouveau] [PATCH v2] drm/nouveau: Document nouveau support for Tegra in DRIVER_DESC
nouveau supports the Tegra K1 and higher after the SoC-based GPUs converged with the main GeForce GPU families. v2: - Qualify that support is Tegra K1+ (Martin Peres) Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> Reviewed-by: Martin Peres <martin.peres at free.fr> Acked-by: Pierre Moreau <pierre.morrow at free.fr> --- drivers/gpu/drm/nouveau/nouveau_drv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h index 822fe1d4d35e..ec60d52790e3 100644 --- a/drivers/gpu/drm/nouveau/nouveau_drv.h +++ b/drivers/gpu/drm/nouveau/nouveau_drv.h @@ -5,7 +5,7 @@ #define DRIVER_EMAIL "nouveau at lists.freedesktop.org" #define DRIVER_NAME "nouveau" -#define DRIVER_DESC "nVidia Riva/TNT/GeForce/Quadro/Tesla" +#define DRIVER_DESC "nVidia Riva/TNT/GeForce/Quadro/Tesla/Tegra K1+" #define DRIVER_DATE "20120801" #define DRIVER_MAJOR 1 -- 2.11.0
Thierry Reding
2017-Oct-12 11:41 UTC
[Nouveau] [PATCH v2] drm/nouveau: Document nouveau support for Tegra in DRIVER_DESC
On Sun, Oct 01, 2017 at 10:13:53AM -0400, Rhys Kidd wrote:> nouveau supports the Tegra K1 and higher after the SoC-based GPUs converged > with the main GeForce GPU families. > > v2: > - Qualify that support is Tegra K1+ (Martin Peres) > > Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> > Reviewed-by: Martin Peres <martin.peres at free.fr> > Acked-by: Pierre Moreau <pierre.morrow at free.fr> > --- > drivers/gpu/drm/nouveau/nouveau_drv.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-)Ben's probably picked this up already, but FWIW: Acked-by: Thierry Reding <treding at nvidia.com> -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: <https://lists.freedesktop.org/archives/nouveau/attachments/20171012/df9b4c28/attachment.sig>
Apparently Analagous Threads
- [PATCH v2] drm/nouveau: Document nouveau support for Tegra in DRIVER_DESC
- [PATCH v2] drm/nouveau: Document nouveau support for Tegra in DRIVER_DESC
- [PATCH xf86-video-nouveau 00/17] autotools configuration cleanups
- [Bug 100228] New: [NV137] unknown chipset (137000a1)
- [PATCH xf86-video-nouveau 0/4] Compiler warnings series