OSDN Git Service

drm/amd/amdgpu: Add PCI info to gca_config debugfs
authorTom St Denis <tom.stdenis@amd.com>
Wed, 18 Jan 2017 18:01:25 +0000 (13:01 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 27 Jan 2017 16:13:39 +0000 (11:13 -0500)
So we can determine which device the entry is before connecting
a display.

Signed-off-by: Tom St Denis <tom.stdenis@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c

index 867d7d4..b408a54 100644 (file)
@@ -2892,7 +2892,7 @@ static ssize_t amdgpu_debugfs_gca_config_read(struct file *f, char __user *buf,
                return -ENOMEM;
 
        /* version, increment each time something is added */
-       config[no_regs++] = 2;
+       config[no_regs++] = 3;
        config[no_regs++] = adev->gfx.config.max_shader_engines;
        config[no_regs++] = adev->gfx.config.max_tile_pipes;
        config[no_regs++] = adev->gfx.config.max_cu_per_sh;
@@ -2926,6 +2926,12 @@ static ssize_t amdgpu_debugfs_gca_config_read(struct file *f, char __user *buf,
        config[no_regs++] = adev->family;
        config[no_regs++] = adev->external_rev_id;
 
+       /* rev==3 */
+       config[no_regs++] = adev->pdev->device;
+       config[no_regs++] = adev->pdev->revision;
+       config[no_regs++] = adev->pdev->subsystem_device;
+       config[no_regs++] = adev->pdev->subsystem_vendor;
+
        while (size && (*pos < no_regs * 4)) {
                uint32_t value;