-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'drm-next-4.19' of git://people.freedesktop.org/~agd5f/l…
…inux into drm-next First feature request for 4.19. Highlights: - Add initial amdgpu documentation - Add initial GPU scheduler documention - GPU scheduler fixes for dying processes - Add support for the JPEG engine on VCN - Switch CI to use powerplay by default - EDC support for CZ - More powerplay cleanups - Misc DC fixes Signed-off-by: Dave Airlie <airlied@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20180621161138.3008-1-alexander.deucher@amd.com
- Loading branch information
Showing
100 changed files
with
3,709 additions
and
1,571 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
========================= | ||
drm/amdgpu AMDgpu driver | ||
========================= | ||
|
||
The drm/amdgpu driver supports all AMD Radeon GPUs based on the Graphics Core | ||
Next (GCN) architecture. | ||
|
||
Core Driver Infrastructure | ||
========================== | ||
|
||
This section covers core driver infrastructure. | ||
|
||
.. _amdgpu_memory_domains: | ||
|
||
Memory Domains | ||
-------------- | ||
|
||
.. kernel-doc:: include/uapi/drm/amdgpu_drm.h | ||
:doc: memory domains | ||
|
||
Buffer Objects | ||
-------------- | ||
|
||
.. kernel-doc:: drivers/gpu/drm/amd/amdgpu/amdgpu_object.c | ||
:doc: amdgpu_object | ||
|
||
.. kernel-doc:: drivers/gpu/drm/amd/amdgpu/amdgpu_object.c | ||
:internal: | ||
|
||
PRIME Buffer Sharing | ||
-------------------- | ||
|
||
.. kernel-doc:: drivers/gpu/drm/amd/amdgpu/amdgpu_prime.c | ||
:doc: PRIME Buffer Sharing | ||
|
||
.. kernel-doc:: drivers/gpu/drm/amd/amdgpu/amdgpu_prime.c | ||
:internal: | ||
|
||
MMU Notifier | ||
------------ | ||
|
||
.. kernel-doc:: drivers/gpu/drm/amd/amdgpu/amdgpu_mn.c | ||
:doc: MMU Notifier | ||
|
||
.. kernel-doc:: drivers/gpu/drm/amd/amdgpu/amdgpu_mn.c | ||
:internal: | ||
|
||
AMDGPU Virtual Memory | ||
--------------------- | ||
|
||
.. kernel-doc:: drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c | ||
:doc: GPUVM | ||
|
||
.. kernel-doc:: drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c | ||
:internal: | ||
|
||
Interrupt Handling | ||
------------------ | ||
|
||
.. kernel-doc:: drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c | ||
:doc: Interrupt Handling | ||
|
||
.. kernel-doc:: drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c | ||
:internal: | ||
|
||
GPU Power/Thermal Controls and Monitoring | ||
========================================= | ||
|
||
This section covers hwmon and power/thermal controls. | ||
|
||
HWMON Interfaces | ||
---------------- | ||
|
||
.. kernel-doc:: drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c | ||
:doc: hwmon | ||
|
||
GPU sysfs Power State Interfaces | ||
-------------------------------- | ||
|
||
GPU power controls are exposed via sysfs files. | ||
|
||
power_dpm_state | ||
~~~~~~~~~~~~~~~ | ||
|
||
.. kernel-doc:: drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c | ||
:doc: power_dpm_state | ||
|
||
power_dpm_force_performance_level | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
.. kernel-doc:: drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c | ||
:doc: power_dpm_force_performance_level | ||
|
||
pp_table | ||
~~~~~~~~ | ||
|
||
.. kernel-doc:: drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c | ||
:doc: pp_table | ||
|
||
pp_od_clk_voltage | ||
~~~~~~~~~~~~~~~~~ | ||
|
||
.. kernel-doc:: drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c | ||
:doc: pp_od_clk_voltage | ||
|
||
pp_dpm_sclk pp_dpm_mclk pp_dpm_pcie | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
.. kernel-doc:: drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c | ||
:doc: pp_dpm_sclk pp_dpm_mclk pp_dpm_pcie | ||
|
||
pp_power_profile_mode | ||
~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
.. kernel-doc:: drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c | ||
:doc: pp_power_profile_mode | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ GPU Driver Documentation | |
|
||
.. toctree:: | ||
|
||
amdgpu | ||
i915 | ||
meson | ||
pl111 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.