Commit 53d8e3be authored by Aurabindo Pillai's avatar Aurabindo Pillai Committed by Alex Deucher

drm/amd/display: Expose mall capability

[Why&How]
Export a debugfs file to report whether MALL cache is supported by the
asic or not.
Reviewed-by: default avatarHersen Wu <hersenxs.wu@amd.com>
Acked-by: default avatarWayne Lin <wayne.lin@amd.com>
Signed-off-by: default avatarAurabindo Pillai <aurabindo.pillai@amd.com>
Tested-by: default avatarDaniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent c1830600
...@@ -3605,6 +3605,23 @@ static int disable_hpd_get(void *data, u64 *val) ...@@ -3605,6 +3605,23 @@ static int disable_hpd_get(void *data, u64 *val)
DEFINE_DEBUGFS_ATTRIBUTE(disable_hpd_ops, disable_hpd_get, DEFINE_DEBUGFS_ATTRIBUTE(disable_hpd_ops, disable_hpd_get,
disable_hpd_set, "%llu\n"); disable_hpd_set, "%llu\n");
/*
* Returns 1 if hardware supports MALL cache
* 0 otherwise.
*/
static int capabilities_show(struct seq_file *m, void *unused)
{
struct amdgpu_device *adev = (struct amdgpu_device *)m->private;
struct dc_caps caps = adev->dm.dc->caps;
bool mall_supported = caps.mall_size_total;
seq_printf(m, "mall: %s\n", mall_supported ? "yes" : "no");
return 0;
}
DEFINE_SHOW_ATTRIBUTE(capabilities);
/* /*
* Temporary w/a to force sst sequence in M42D DP2 mst receiver * Temporary w/a to force sst sequence in M42D DP2 mst receiver
* Example usage: echo 1 > /sys/kernel/debug/dri/0/amdgpu_dm_dp_set_mst_en_for_sst * Example usage: echo 1 > /sys/kernel/debug/dri/0/amdgpu_dm_dp_set_mst_en_for_sst
...@@ -3798,6 +3815,8 @@ void dtn_debugfs_init(struct amdgpu_device *adev) ...@@ -3798,6 +3815,8 @@ void dtn_debugfs_init(struct amdgpu_device *adev)
debugfs_create_file("amdgpu_mst_topology", 0444, root, debugfs_create_file("amdgpu_mst_topology", 0444, root,
adev, &mst_topo_fops); adev, &mst_topo_fops);
debugfs_create_file("amdgpu_dm_capabilities", 0444, root,
adev, &capabilities_fops);
debugfs_create_file("amdgpu_dm_dtn_log", 0644, root, adev, debugfs_create_file("amdgpu_dm_dtn_log", 0644, root, adev,
&dtn_log_fops); &dtn_log_fops);
debugfs_create_file("amdgpu_dm_dp_set_mst_en_for_sst", 0644, root, adev, debugfs_create_file("amdgpu_dm_dp_set_mst_en_for_sst", 0644, root, adev,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment