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

Configure Feed

Select the types of activity you want to include in your feed.

drm/amdgpu: Add smu v15_0_8 ip block

Add smu v15_0_8 ip block

Signed-off-by: Hawking Zhang <Hawking.Zhang@amd.com>
Reviewed-by: Likun Gao <Likun.Gao@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Hawking Zhang and committed by
Alex Deucher
df4929d7 6a609b80

+4
+1
drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c
··· 2341 2341 amdgpu_device_ip_block_add(adev, &smu_v14_0_ip_block); 2342 2342 break; 2343 2343 case IP_VERSION(15, 0, 0): 2344 + case IP_VERSION(15, 0, 8): 2344 2345 amdgpu_device_ip_block_add(adev, &smu_v15_0_ip_block); 2345 2346 break; 2346 2347 default:
+3
drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c
··· 803 803 case IP_VERSION(15, 0, 0): 804 804 smu_v15_0_0_set_ppt_funcs(smu); 805 805 break; 806 + case IP_VERSION(15, 0, 8): 807 + smu_v15_0_8_set_ppt_funcs(smu); 808 + break; 806 809 default: 807 810 return -EINVAL; 808 811 }