<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;background-color:#FFFFFF;font-family:Calibri,Arial,Helvetica,sans-serif;">
<p>Hi all,</p>
<p><br>
</p>
<p>If I could get an ACK/NAK that would be appreciated.  I have a commit pending on the debug tool (that reads these) that I'd like to get out.</p>
<p><br>
</p>
<p>Thanks,</p>
<p>Tom</p>
<br>
<br>
<div style="color: rgb(0, 0, 0);">
<div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="x_divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><b>From:</b> Tom St Denis <tstdenis82@gmail.com><br>
<b>Sent:</b> Friday, August 12, 2016 15:28<br>
<b>To:</b> amd-gfx@lists.freedesktop.org<br>
<b>Cc:</b> StDenis, Tom<br>
<b>Subject:</b> [PATCH] drm/amd/amdgpu: Add more config data for debugfs</font>
<div> </div>
</div>
</div>
<font size="2"><span style="font-size:10pt;">
<div class="PlainText">Adds rev_id as well as cg/pg flags to help debug runtime.<br>
<br>
Signed-off-by: Tom St Denis <tom.stdenis@amd.com><br>
---<br>
 drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 7 ++++++-<br>
 1 file changed, 6 insertions(+), 1 deletion(-)<br>
<br>
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c<br>
index 53763614c6e0..bbd3173cc5ea 100644<br>
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c<br>
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c<br>
@@ -2653,7 +2653,7 @@ static ssize_t amdgpu_debugfs_gca_config_read(struct file *f, char __user *buf,<br>
                 return -ENOMEM;<br>
 <br>
         /* version, increment each time something is added */<br>
-       config[no_regs++] = 0;<br>
+       config[no_regs++] = 1;<br>
         config[no_regs++] = adev->gfx.config.max_shader_engines;<br>
         config[no_regs++] = adev->gfx.config.max_tile_pipes;<br>
         config[no_regs++] = adev->gfx.config.max_cu_per_sh;<br>
@@ -2678,6 +2678,11 @@ static ssize_t amdgpu_debugfs_gca_config_read(struct file *f, char __user *buf,<br>
         config[no_regs++] = adev->gfx.config.gb_addr_config;<br>
         config[no_regs++] = adev->gfx.config.num_rbs;<br>
 <br>
+       /* rev==1 */<br>
+       config[no_regs++] = adev->rev_id;<br>
+       config[no_regs++] = adev->pg_flags;<br>
+       config[no_regs++] = adev->cg_flags;<br>
+<br>
         while (size && (*pos < no_regs * 4)) {<br>
                 uint32_t value;<br>
 <br>
-- <br>
2.9.2<br>
<br>
</div>
</span></font></div>
</div>
</body>
</html>