All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/22] Volting/Clocking improvements for Fermi and newer
@ 2016-03-21 16:16 Karol Herbst
       [not found] ` <1458577000-6615-1-git-send-email-nouveau-lIBOoy2+GI7scQ4cX5LuPg@public.gmane.org>
  0 siblings, 1 reply; 31+ messages in thread
From: Karol Herbst @ 2016-03-21 16:16 UTC (permalink / raw)
  To: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

This series fixes most of the issues regarding volting on GPUs with any form
of GPU Boost inside their vbios, which is mainly Kepler and newer, but we find
some boosting related tables in Fermi vbios' already

In the end reclocking should work on most Kepler cards without any issues

v2: boost_mode can now be changed at runtime
    minor fixups

Karol Herbst (22):
  bios/volt: handle voltage table version 0x50 with 0ed header
  volt: properly detect entry based voltage tables
  volt: save the voltage range we are able to set
  volt: add nvkm_volt_map_min function
  clk: don't create cstates which voltage is higher than what the gpu
    can do
  volt: parse the both max voltage entries
  volt: add min_id parameter to nvkm_volt_set_id
  clk: export nvkm_volt_map
  clk: add index field to nvkm_cstate
  add daemon to compare nouveau with blob voltage
  volt: add temperature parameter to nvkm_volt_map
  clk: fixup cstate selection
  clk: respect voltage limits in nvkm_cstate_prog with cstate = -1
  bios: add parsing of BASE CLOCK table
  clk: allow boosting only when NvBoost is set
  volt: don't require perfect fit
  bios/vmap: unk0 field is the mode
  volt: add coefficients I found on my gpu
  clk: save the max clock we can set
  clk: add nvkm_clk_reclock function
  nvif: add boost info and set operations
  debugfs: add boost interface to change the boost_mode

 bin/nv_cmp_volt.c                                | 130 +++++++++++++++++++++
 drm/nouveau/include/nvif/if0001.h                |  15 +++
 drm/nouveau/include/nvkm/subdev/bios/baseclock.h |  24 ++++
 drm/nouveau/include/nvkm/subdev/bios/vmap.h      |   4 +-
 drm/nouveau/include/nvkm/subdev/bios/volt.h      |   5 +-
 drm/nouveau/include/nvkm/subdev/clk.h            |  12 +-
 drm/nouveau/include/nvkm/subdev/volt.h           |   9 +-
 drm/nouveau/nouveau_debugfs.c                    |  76 ++++++++++++
 drm/nouveau/nvkm/engine/device/ctrl.c            |  59 ++++++++++
 drm/nouveau/nvkm/subdev/bios/Kbuild              |   1 +
 drm/nouveau/nvkm/subdev/bios/baseclock.c         |  82 +++++++++++++
 drm/nouveau/nvkm/subdev/bios/vmap.c              |   7 +-
 drm/nouveau/nvkm/subdev/bios/volt.c              |  45 +++++---
 drm/nouveau/nvkm/subdev/clk/base.c               | 131 +++++++++++++++++++--
 drm/nouveau/nvkm/subdev/clk/gf100.c              |   2 +-
 drm/nouveau/nvkm/subdev/clk/gk104.c              |   2 +-
 drm/nouveau/nvkm/subdev/volt/base.c              | 141 +++++++++++++++++++++--
 17 files changed, 696 insertions(+), 49 deletions(-)
 create mode 100644 bin/nv_cmp_volt.c
 create mode 100644 drm/nouveau/include/nvkm/subdev/bios/baseclock.h
 create mode 100644 drm/nouveau/nvkm/subdev/bios/baseclock.c

-- 
2.7.4

_______________________________________________
Nouveau mailing list
Nouveau@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/nouveau

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

end of thread, other threads:[~2016-03-28 22:55 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-21 16:16 [PATCH v2 00/22] Volting/Clocking improvements for Fermi and newer Karol Herbst
     [not found] ` <1458577000-6615-1-git-send-email-nouveau-lIBOoy2+GI7scQ4cX5LuPg@public.gmane.org>
2016-03-21 16:16   ` [PATCH v2 01/22] bios/volt: handle voltage table version 0x50 with 0ed header Karol Herbst
2016-03-21 16:16   ` [PATCH v2 02/22] volt: properly detect entry based voltage tables Karol Herbst
2016-03-21 16:16   ` [PATCH v2 03/22] volt: save the voltage range we are able to set Karol Herbst
2016-03-21 16:16   ` [PATCH v2 04/22] volt: add nvkm_volt_map_min function Karol Herbst
2016-03-21 16:16   ` [PATCH v2 05/22] clk: don't create cstates which voltage is higher than what the gpu can do Karol Herbst
2016-03-21 16:16   ` [PATCH v2 06/22] volt: parse the both max voltage entries Karol Herbst
     [not found]     ` <1458577000-6615-7-git-send-email-nouveau-lIBOoy2+GI7scQ4cX5LuPg@public.gmane.org>
2016-03-28 20:49       ` Martin Peres
     [not found]         ` <56F998CF.4080704-GANU6spQydw@public.gmane.org>
2016-03-28 22:30           ` Martin Peres
2016-03-21 16:16   ` [PATCH v2 07/22] volt: add min_id parameter to nvkm_volt_set_id Karol Herbst
     [not found]     ` <1458577000-6615-8-git-send-email-nouveau-lIBOoy2+GI7scQ4cX5LuPg@public.gmane.org>
2016-03-28 20:52       ` Martin Peres
     [not found]         ` <56F999A1.6090505-GANU6spQydw@public.gmane.org>
2016-03-28 21:41           ` Martin Peres
2016-03-21 16:16   ` [PATCH v2 08/22] clk: export nvkm_volt_map Karol Herbst
2016-03-21 16:16   ` [PATCH v2 09/22] clk: add index field to nvkm_cstate Karol Herbst
2016-03-21 16:16   ` [PATCH v2 10/22] add daemon to compare nouveau with blob voltage Karol Herbst
2016-03-21 16:16   ` [PATCH v2 11/22] volt: add temperature parameter to nvkm_volt_map Karol Herbst
2016-03-21 16:16   ` [PATCH v2 12/22] clk: fixup cstate selection Karol Herbst
2016-03-21 16:16   ` [PATCH v2 13/22] clk: respect voltage limits in nvkm_cstate_prog with cstate = -1 Karol Herbst
2016-03-21 16:16   ` [PATCH v2 14/22] bios: add parsing of BASE CLOCK table Karol Herbst
2016-03-21 16:16   ` [PATCH v2 15/22] clk: allow boosting only when NvBoost is set Karol Herbst
2016-03-21 16:16   ` [PATCH v2 16/22] volt: don't require perfect fit Karol Herbst
     [not found]     ` <1458577000-6615-17-git-send-email-nouveau-lIBOoy2+GI7scQ4cX5LuPg@public.gmane.org>
2016-03-28 22:55       ` Martin Peres
2016-03-21 16:16   ` [PATCH v2 17/22] bios/vmap: unk0 field is the mode Karol Herbst
2016-03-21 16:16   ` [PATCH v2 18/22] volt: add coefficients I found on my gpu Karol Herbst
     [not found]     ` <1458577000-6615-19-git-send-email-nouveau-lIBOoy2+GI7scQ4cX5LuPg@public.gmane.org>
2016-03-28 22:38       ` Martin Peres
2016-03-21 16:16   ` [PATCH v2 19/22] clk: save the max clock we can set Karol Herbst
2016-03-21 16:16   ` [PATCH v2 20/22] clk: add nvkm_clk_reclock function Karol Herbst
     [not found]     ` <1458577000-6615-21-git-send-email-nouveau-lIBOoy2+GI7scQ4cX5LuPg@public.gmane.org>
2016-03-28 22:34       ` Martin Peres
2016-03-21 16:16   ` [PATCH v2 21/22] nvif: add boost info and set operations Karol Herbst
2016-03-21 16:16   ` [PATCH v2 22/22] debugfs: add boost interface to change the boost_mode Karol Herbst
     [not found]     ` <1458577000-6615-23-git-send-email-nouveau-lIBOoy2+GI7scQ4cX5LuPg@public.gmane.org>
2016-03-28 22:17       ` Martin Peres

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.