Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'drm-xe-next-fixes-2025-05-28' of https://gitlab.freedesktop.org/drm/xe/kernel into drm-next

Driver Changes:
- Two documentation fixes (Rodrigo)

Signed-off-by: Dave Airlie <airlied@redhat.com>

From: Thomas Hellstrom <thomas.hellstrom@linux.intel.com>
Link: https://lore.kernel.org/r/aDc4Is-sQb3DPGO5@fedora

Dave Airlie 84e2f918 58ce2aec

+20
+1
Documentation/gpu/xe/index.rst
··· 16 16 xe_migrate 17 17 xe_cs 18 18 xe_pm 19 + xe_gt_freq 19 20 xe_pcode 20 21 xe_gt_mcr 21 22 xe_wa
+14
Documentation/gpu/xe/xe_gt_freq.rst
··· 1 + .. SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 + 3 + ========================== 4 + Xe GT Frequency Management 5 + ========================== 6 + 7 + .. kernel-doc:: drivers/gpu/drm/xe/xe_gt_freq.c 8 + :doc: Xe GT Frequency Management 9 + 10 + Internal API 11 + ============ 12 + 13 + .. kernel-doc:: drivers/gpu/drm/xe/xe_gt_freq.c 14 + :internal:
+5
drivers/gpu/drm/xe/xe_gt_freq.c
··· 32 32 * Xe's Freq provides a sysfs API for frequency management: 33 33 * 34 34 * device/tile#/gt#/freq0/<item>_freq *read-only* files: 35 + * 35 36 * - act_freq: The actual resolved frequency decided by PCODE. 36 37 * - cur_freq: The current one requested by GuC PC to the PCODE. 37 38 * - rpn_freq: The Render Performance (RP) N level, which is the minimal one. 39 + * - rpa_freq: The Render Performance (RP) A level, which is the achiveable one. 40 + * Calculated by PCODE at runtime based on multiple running conditions 38 41 * - rpe_freq: The Render Performance (RP) E level, which is the efficient one. 42 + * Calculated by PCODE at runtime based on multiple running conditions 39 43 * - rp0_freq: The Render Performance (RP) 0 level, which is the maximum one. 40 44 * 41 45 * device/tile#/gt#/freq0/<item>_freq *read-write* files: 46 + * 42 47 * - min_freq: Min frequency request. 43 48 * - max_freq: Max frequency request. 44 49 * If max <= min, then freq_min becomes a fixed frequency request.